init commit

This commit is contained in:
gine 2015-06-15 17:48:37 +02:00
commit 1dde72d2c6
511 changed files with 12884 additions and 0 deletions

14
.classpath Executable file
View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry exported="true" kind="lib" path="/home/gine/Code/lib-java/android/vitamio/vitamio.jar">
<attributes>
<attribute name="javadoc_location" value="file:/home/gine/Code/lib-java/android/vitamio/doc/"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>

58
AndroidManifest.xml Executable file
View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="org.arkiwi.app"
android:versionCode="3"
android:versionName="CRUSCA" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="10"
android:maxSdkVersion="18"
/>
<!-- check per la rete -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<!-- accedere alla rete -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- scrivere su sd (download) -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- vitamio (player) -->
<!-- <uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission> -->
<!-- notification -->
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:label="@string/app_name"
android:allowClearUserData="true"
android:allowBackup="false"
android:icon="@drawable/ic_launcher_arkiwi">
<activity
android:name=".activity.ATab"
android:windowSoftInputMode="stateHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".service.FeedBurnIndeterminato" />
<service android:name=".service.FeedBurnPrecario" />
<service android:name=".service.Downloader" />
<service android:name=".service.CheckUpdate" />
<activity android:name="com.androidhive.musicplayer.PlayListActivity" />
<activity android:name="com.androidhive.musicplayer.ZZZTestMusicPlay"/>
<activity
android:name="com.androidhive.musicplayer.MusicPlayerActivity"
android:configChanges="keyboardHidden|orientation"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
<!-- abilitare la gestione di alcuni eventi: android:configChanges="keyboardHidden|orientation" -->
<!-- disabilitare il cambio di orientamento: android:screenOrientation="portrait" -->
<activity
android:name=".activity.Vitamio"
android:configChanges="orientation|keyboard|keyboardHidden|navigation"
/>
<activity android:name=".activity.Viewer" />
<activity android:name=".activity.Archive" />
<activity android:name=".activity.Search" />
<activity android:name=".activity.SearchAdv" />
<activity android:name=".activity.PrefScreen" />
</application>
</manifest>

32
ChangeLog Normal file
View file

@ -0,0 +1,32 @@
@3.0alpha2
- Fix Nullpointer exception sulle preferenze
- Fix di alcuni warning
- Checkupdate disabilitato per default per seguire le regole di FDroid
@3.0alpha1
- Aggiunta possibilità di internazionalizzazione, aiutaci su: http://babele.indivia.net
- Aggiustata l'Activity di search:
+ cambiate le denominazioni delle listview a scomparsa
+ aggiunti alcune ricerche consigliate
+ la ricerca avanzata è ora un bottone non più una Expandable List View
- Migliorati comprensione e funzionalità del dialog in mancanza di connessione
- Aggiunto un player audio integrato per non usare vitamio, gestisce anche playlist
- Aggiunta al menù di ogni query, nella Activity Viewer, l'opzione per ascoltare la playlist i podcast
- ScreenKeep on quando si guarda un video.
- Testato fino API18
- Il pulsante back del telefono sulla Activity Viewer torna indietro fino alla radice, a questa
ti informa che se ripremuto ulteriormente l'applicazione esce
- Aggiunta l'Activity di Ricerca Avanzata che fornire un aiuto agli utenti
per affrontare la complessità disponibile per la ricerca sui metadati
- Aggiunta nelle preferenze la possibilità di scaricare le apk utili, necessarie o comode per il funzionamento di AArkiwi
- Refactoring di innumerevoli parti di codice
- Eliminazione dellal maggiorparte dei warning
- Fix del ritorno dall'intent per attivare il network
- Fix per lo svuotamento della griglia per i pulsanti del telefono Back e Home
- Fix delle funzioni torrent e qrcode del menù contestuale di un item
- Fix della cache di pagine errate
- Fix di alcune ricerche consigliate
- Fix dello spostamento delle icone sullo scorrimento nella GridView
- Fix della copertura parziale del testo di alcuni item nella GridView
- Fix del lampeggiamento del testo nei dialog causato da longclick in TextView

6
META-INF/MANIFEST.MF Executable file
View file

@ -0,0 +1,6 @@
Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Created-By: Apache Maven
Built-By: onacit
Build-Jdk: 1.7.0_02

View file

@ -0,0 +1,5 @@
#Generated by Maven
#Fri Feb 03 15:12:41 KST 2012
version=1.0-alpha-4
groupId=com.googlecode.jinahya
artifactId=rfc-4648

View file

@ -0,0 +1,286 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.googlecode.jinahya</groupId>
<artifactId>rfc-4648</artifactId>
<version>1.0-alpha-4</version>
<packaging>jar</packaging>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>com.googlecode.jinahya</groupId>
<artifactId>bit-io</artifactId>
<version>1.0-alpha-11</version>
</dependency>
<dependency>
<groupId>org.apache.shindig</groupId>
<artifactId>shindig-common</artifactId>
<version>3.0.0-beta4</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.3.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.jinahya</groupId>
<artifactId>bit-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.shindig</groupId>
<artifactId>shindig-common</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<extensions>
<extension>
<groupId>com.google.code.maven-svn-wagon</groupId>
<artifactId>maven-svn-wagon</artifactId>
<version>1.4</version>
</extension>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>2.2</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.4.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>compile-1.1</id>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<source>1.3</source>
<target>1.1</target>
</configuration>
</execution>
<execution>
<id>testCompile-1.5</id>
<phase>process-test-sources</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<goals>deploy</goals>
<tagBase>https://jinahya.googlecode.com/svn/tags/${project.groupId}</tagBase>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
<reporting />
<name>rfc-4648</name>
<url>http://www.jinahya.com/mvn/site/${project.groupId}/${project.artifactId}/${project.version}</url>
<inceptionYear>2011</inceptionYear>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<organization />
<developers>
<developer>
<id>jinahya</id>
<name>Jin Kwon</name>
<email>jinahya@gmail.com</email>
</developer>
</developers>
<contributors />
<issueManagement />
<ciManagement />
<mailingLists />
<scm>
<connection>scm:svn:http://jinahya.googlecode.com/svn/tags/com.googlecode.jinahya/rfc-4648-1.0-alpha-4</connection>
<developerConnection>scm:svn:https://jinahya.googlecode.com/svn/tags/com.googlecode.jinahya/rfc-4648-1.0-alpha-4</developerConnection>
<url>http://code.google.com/p/jinahya/source/browse/tags/com.googlecode.jinahya/rfc-4648-1.0-alpha-4</url>
</scm>
<prerequisites />
<repositories />
<pluginRepositories />
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<!--
<site>
<id>googlecode</id>
<url>svn:https://jinahya.googlecode.com/svn/site/${project.groupId}/${project.artifactId}/${project.version}</url>
</site>
-->
<site>
<id>jinahya.com</id>
<url>dav:${project.url}</url>
</site>
</distributionManagement>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0
README.md Normal file
View file

BIN
bin/AArkiwi.apk Normal file

Binary file not shown.

58
bin/AndroidManifest.xml Normal file
View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="org.arkiwi.app"
android:versionCode="3"
android:versionName="CRUSCA" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="10"
android:maxSdkVersion="18"
/>
<!-- check per la rete -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<!-- accedere alla rete -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- scrivere su sd (download) -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- vitamio (player) -->
<!-- <uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission> -->
<!-- notification -->
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:label="@string/app_name"
android:allowClearUserData="true"
android:allowBackup="false"
android:icon="@drawable/ic_launcher_arkiwi">
<activity
android:name=".activity.ATab"
android:windowSoftInputMode="stateHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".service.FeedBurnIndeterminato" />
<service android:name=".service.FeedBurnPrecario" />
<service android:name=".service.Downloader" />
<service android:name=".service.CheckUpdate" />
<activity android:name="com.androidhive.musicplayer.PlayListActivity" />
<activity android:name="com.androidhive.musicplayer.ZZZTestMusicPlay"/>
<activity
android:name="com.androidhive.musicplayer.MusicPlayerActivity"
android:configChanges="keyboardHidden|orientation"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
<!-- abilitare la gestione di alcuni eventi: android:configChanges="keyboardHidden|orientation" -->
<!-- disabilitare il cambio di orientamento: android:screenOrientation="portrait" -->
<activity
android:name=".activity.Vitamio"
android:configChanges="orientation|keyboard|keyboardHidden|navigation"
/>
<activity android:name=".activity.Viewer" />
<activity android:name=".activity.Archive" />
<activity android:name=".activity.Search" />
<activity android:name=".activity.SearchAdv" />
<activity android:name=".activity.PrefScreen" />
</application>
</manifest>

BIN
bin/classes.dex Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more