summaryrefslogtreecommitdiff
path: root/htroot/Settings_p.html
diff options
context:
space:
mode:
authorauron_x <auron_x@6c8d7289-2bf4-0310-a012-ef5d649a1542>2006-03-05 15:28:31 +0000
committerauron_x <auron_x@6c8d7289-2bf4-0310-a012-ef5d649a1542>2006-03-05 15:28:31 +0000
commit6f1d45aaa39c3460f7812a24be277fbafe8a2255 (patch)
tree27b16a886374e7a40ac169ee5c70ba902937a761 /htroot/Settings_p.html
parentae536c46087f8b23358d4a342f71cb0999975797 (diff)
*) re-added possibility to de-/select all parsers at one time (JS-only)
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1828 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/Settings_p.html')
-rw-r--r--htroot/Settings_p.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/htroot/Settings_p.html b/htroot/Settings_p.html
index d09e3bf91..1d85607d6 100644
--- a/htroot/Settings_p.html
+++ b/htroot/Settings_p.html
@@ -3,6 +3,21 @@
<head>
<title>YaCy '#[clientname]#': Settings</title>
#%env/templates/metas.template%#
+
+<script language="JavaScript">
+
+function ParserCheckboxes(reference)
+{
+ var mode = reference.name.substring(0,reference.name.indexOf("."));
+ for(i=0; i<document.parsersettings.elements.length; i++)
+ {
+ if(document.parsersettings.elements[i].type=="checkbox" && document.parsersettings.elements[i].name.indexOf(mode) >= 0)
+ {
+ document.parsersettings.elements[i].checked=reference.checked;
+ }
+ }
+}
+</script>
</head>
<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
#%env/templates/header.template%#