diff --git a/defaults/yacy.init b/defaults/yacy.init index 040333efe..304b064fa 100644 --- a/defaults/yacy.init +++ b/defaults/yacy.init @@ -1165,7 +1165,6 @@ core.service.webgraph.tmp = false # Augmentation settings parserAugmentation = false parserAugmentation.RDFa = false -proxyAugmentation = false # Content control settings contentcontrol.enabled = false diff --git a/htroot/AugmentedBrowsing_p.html b/htroot/AugmentedBrowsing_p.html index 367418ae7..34c399181 100644 --- a/htroot/AugmentedBrowsing_p.html +++ b/htroot/AugmentedBrowsing_p.html @@ -56,35 +56,6 @@ - - - -
- -
Augmented Browsing Settings -

- With this settings you can activate or deactivate augmented browsing which happens usually via the URL proxy. -

- - -
- -
-
- Enabled
-

- Enables or disables augmented browsing. If enabled, all websites will be modified during loading. -

-
- - - -
- - - -
-
#%env/templates/footer.template%# diff --git a/htroot/AugmentedBrowsing_p.java b/htroot/AugmentedBrowsing_p.java index 0f8772d6b..1361a8a68 100644 --- a/htroot/AugmentedBrowsing_p.java +++ b/htroot/AugmentedBrowsing_p.java @@ -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; }