Revert "DataResource bugfix WebviewClient logs error for http urls."

This reverts commit 8f91ebf194.
Reverting all DataResource changes for the 2.8.0 release.
This commit is contained in:
Andrew Grieve 2013-05-27 22:21:50 -04:00
parent 338216beca
commit fbeba54740
2 changed files with 2 additions and 10 deletions

View File

@ -98,10 +98,8 @@ public class FileHelper {
Uri uri = Uri.parse(uriString);
String relativePath = uri.getPath().substring(15);
return cordova.getActivity().getAssets().open(relativePath);
} else if (uriString.startsWith("file://")) {
return new FileInputStream(getRealPath(uriString, cordova));
} else {
return null;
return new FileInputStream(getRealPath(uriString, cordova));
}
}

View File

@ -19,7 +19,6 @@
package org.apache.cordova;
import java.io.IOException;
import java.io.InputStream;
import org.apache.cordova.api.CordovaInterface;
import org.apache.cordova.api.DataResource;
@ -56,12 +55,7 @@ public class IceCreamCordovaWebViewClient extends CordovaWebViewClient {
if(ret == null) {
try {
InputStream is;
String mimeType;
if((is = dataResource.getInputStream()) != null && (mimeType = dataResource.getMimeType()) != null) {
// If we don't know how to open this file, let the browser continue loading
ret = new WebResourceResponse(mimeType, "UTF-8", is);
}
ret = new WebResourceResponse(dataResource.getMimeType(), "UTF-8", dataResource.getInputStream());
} catch(IOException e) {
LOG.e("IceCreamCordovaWebViewClient", "Error occurred while loading a file.", e);
}