Merge commit of changes on 1.8

This commit is contained in:
Joe Bowser 2012-05-30 14:45:45 -07:00
commit e7411e8260
2 changed files with 19 additions and 15 deletions

View File

@ -360,8 +360,7 @@ public class Capture extends Plugin {
try {
// File properties
obj.put("name", fp.getName());
obj.put("fullPath", fp.getAbsolutePath());
obj.put("fullPath", "file://" + fp.getAbsolutePath());
// Because of an issue with MimeTypeMap.getMimeTypeFromExtension() all .3gpp files
// are reported as video/3gpp. I'm doing this hacky check of the URI to see if it
// is stored in the audio or video content store.

View File

@ -437,7 +437,7 @@ public class ContactAccessorSdk5 extends ContactAccessor {
contact.put("ims", ims);
}
if (websites.length() > 0) {
contact.put("websites", websites);
contact.put("urls", websites);
}
if (photos.length() > 0) {
contact.put("photos", photos);
@ -447,20 +447,25 @@ public class ContactAccessorSdk5 extends ContactAccessor {
}
return contact;
}
catch (JSONException e) {
Log.e(LOG_TAG,e.getMessage(),e);
}
return contact;
}
/**
* Take the search criteria passed into the method and create a SQL WHERE clause.
* @param fields the properties to search against
* @param searchTerm the string to search for
* @return an object containing the selection and selection args
*/
private WhereOptions buildWhereClause(JSONArray fields, String searchTerm) {
ArrayList<String> where = new ArrayList<String>();
ArrayList<String> whereArgs = new ArrayList<String>();
WhereOptions options = new WhereOptions();
/**
* Take the search criteria passed into the method and create a SQL WHERE clause.
* @param fields the properties to search against
* @param searchTerm the string to search for
* @return an object containing the selection and selection args
*/
private WhereOptions buildWhereClause(JSONArray fields, String searchTerm) {
ArrayList<String> where = new ArrayList<String>();
ArrayList<String> whereArgs = new ArrayList<String>();
WhereOptions options = new WhereOptions();
/*
* Special case where the user wants all fields returned
*/