rename clients/android/uploader to clients/android

also change package from com.danga.camli to org.camlistore
This commit is contained in:
Daniel Erat 2011-03-13 13:01:50 -07:00
parent bd9f5f9331
commit 43f113183c
42 changed files with 25 additions and 25 deletions

View File

@ -328,7 +328,7 @@ TARGET: lib/go/blobserver/localdisk
TARGET: lib/go/httprange
TARGET: clients/android/uploader
TARGET: clients/android
=not_in_all # too slow
TARGET: lib/go/mysqlindexer

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.danga.camli"
package="org.camlistore"
android:versionCode="1"
android:versionName="1.0">

View File

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import android.app.Activity;
import android.content.ComponentName;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import java.io.File;
@ -23,7 +23,7 @@ import android.os.FileObserver;
import android.os.RemoteException;
import android.util.Log;
import com.danga.camli.IUploadService.Stub;
import org.camlistore.IUploadService.Stub;
public class CamliFileObserver extends FileObserver {
private static final String TAG = "CamliFileObserver";

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import android.os.RemoteException;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
public class HostPort {
private final boolean mValid;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
oneway interface IStatusCallback {
void logToClient(String stuff);

View File

@ -14,9 +14,9 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import com.danga.camli.IStatusCallback;
import org.camlistore.IStatusCallback;
import android.os.ParcelFileDescriptor;
import android.net.Uri;
import java.util.List;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import android.content.BroadcastReceiver;
import android.content.Context;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import android.app.AlarmManager;
import android.app.PendingIntent;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import android.content.SharedPreferences;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import android.net.Uri;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import android.content.ComponentName;
import android.content.Context;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import android.app.Application;
import android.util.Config;
@ -48,4 +48,4 @@ public class UploadApplication extends Application {
}
}
}
}

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import java.io.File;
import java.io.FileNotFoundException;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import java.io.BufferedOutputStream;
import java.io.FileInputStream;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import java.io.BufferedInputStream;
import java.io.FileDescriptor;

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import android.content.BroadcastReceiver;
import android.content.Context;

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.danga.camli.test"
package="org.camlistore.test"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
@ -8,5 +8,5 @@
<uses-library android:name="android.test.runner" />
</application>
<instrumentation android:targetPackage="com.danga.camli" android:name="android.test.InstrumentationTestRunner" />
</manifest>
<instrumentation android:targetPackage="org.camlistore" android:name="android.test.InstrumentationTestRunner" />
</manifest>

View File

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package com.danga.camli;
package org.camlistore;
import android.test.ActivityInstrumentationTestCase2;