You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package org.sandrop.webscarab.plugin.proxy;
import java.io.IOException;
import org.sandrop.webscarab.httpclient.HTTPClient;
import org.sandrop.webscarab.model.Preferences;
import org.sandrop.webscarab.model.Request;
import org.sandrop.webscarab.model.Response;
public class BrowserCache extends ProxyPlugin {
private boolean _enabled = false;
public BrowserCache() {
parseProperties();
}
public void parseProperties() {
String prop = "BrowserCache.enabled";
_enabled = Preferences.getPreferenceBoolean(prop, false);
}
public String getPluginName() {
return new String("Browser Cache");
}
public void setEnabled(boolean bool) {
_enabled = bool;
String prop = "BrowserCache.enabled";
Preferences.setPreference(prop,Boolean.toString(bool));
}
public boolean getEnabled() {
return _enabled;
}
public HTTPClient getProxyPlugin(HTTPClient in) {
return new Plugin(in);
}
private class Plugin implements HTTPClient {
private HTTPClient _in;
public Plugin(HTTPClient in) {
_in = in;
}
public Response fetchResponse(Request request) throws IOException {
if (_enabled) {
// we could be smarter about this, and keep a record of the pages that we
// have seen so far, and only remove headers for those that we have not?
request.deleteHeader("ETag");
request.deleteHeader("If-Modified-Since");
request.deleteHeader("If-None-Match");
}
return _in.fetchResponse(request);
}
}
}
Original issue reported on code.google.com by supp.san...@gmail.com on 4 Jul 2012 at 6:22
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
supp.san...@gmail.com
on 4 Jul 2012 at 6:22The text was updated successfully, but these errors were encountered: