remove AugmentedBrowsing_p.html augmented browsing switch

(has no function in code, previously used in conjuction with http://reflect.ws)
pull/1/head
reger 11 years ago
parent 381781613b
commit 1fe26550a0

@ -1165,7 +1165,6 @@ core.service.webgraph.tmp = false
# Augmentation settings
parserAugmentation = false
parserAugmentation.RDFa = false
proxyAugmentation = false
# Content control settings
contentcontrol.enabled = false

@ -56,35 +56,6 @@
<input type="submit" name="urlproxySettings" value="Submit"/>
</fieldset>
</form>
<form id="parsersettings" action="AugmentedBrowsing_p.html" method="post" enctype="multipart/form-data">
<fieldset><legend id="augmentation">Augmented Browsing Settings</legend>
<p>
With this settings you can activate or deactivate augmented browsing which happens usually via the URL proxy.
</p>
<dl>
<dt><label for="content">Augmented Browsing:</label></dt>
<dd>
<input type="checkbox" name="augmentationenabled" id="augmentationenabled" #(augmentationenabled_checked)#:: checked="checked"#(/augmentationenabled_checked)# />Enabled<br/>
<p class="help">
Enables or disables augmented browsing. If enabled, all websites will be modified during loading.
</p>
</dd>
</dl>
<input type="submit" name="augmentationSettings" value="Submit"/>
</fieldset>
</form>
#%env/templates/footer.template%#
</body>

@ -26,13 +26,6 @@ public final class AugmentedBrowsing_p {
}
if (post.containsKey("augmentationSettings")) {
env.setConfig("proxyAugmentation", "on".equals(post
.get("augmentationenabled")) ? true : false);
}
}
prop.putHTML("urlproxyfilter",
@ -47,9 +40,6 @@ public final class AugmentedBrowsing_p {
prop.put("urlproxyuseforresults_checked",
env.getConfigBool("proxyURL.useforresults", false) ? "1" : "0");
prop.put("augmentationenabled_checked",
env.getConfigBool("proxyAugmentation", false) ? "1" : "0");
// return rewrite properties
return prop;
}

Loading…
Cancel
Save