summaryrefslogtreecommitdiffstats
path: root/usr/local/www/javascript
diff options
context:
space:
mode:
authorMatthew Grooms <mgrooms@pfsense.org>2008-09-04 15:40:54 +0000
committerMatthew Grooms <mgrooms@pfsense.org>2008-09-04 15:40:54 +0000
commitdf81417f554e786f9610d55228d1ed8b7c1394d7 (patch)
tree1dab1c0fca9f7ae21c666b26fcb984a9e450a908 /usr/local/www/javascript
parente65c9c120e9eb2c0afe6f28df9386909546982c2 (diff)
downloadpfsense-df81417f554e786f9610d55228d1ed8b7c1394d7.zip
pfsense-df81417f554e786f9610d55228d1ed8b7c1394d7.tar.gz
Break out the advanced system options page into tabs group by categories.
Fold the sysctl tunables page into a tab under the advanced options page. This reduces the top level menu options by one. There should be no functional changes.
Diffstat (limited to 'usr/local/www/javascript')
-rw-r--r--usr/local/www/javascript/system_advanced/system_advanced.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/usr/local/www/javascript/system_advanced/system_advanced.js b/usr/local/www/javascript/system_advanced/system_advanced.js
deleted file mode 100644
index a7e69ad..0000000
--- a/usr/local/www/javascript/system_advanced/system_advanced.js
+++ /dev/null
@@ -1,27 +0,0 @@
-function enable_change(enable_over) {
- if (document.iform.ipv6nat_enable.checked || enable_over) {
- document.iform.ipv6nat_ipaddr.disabled = 0;
- } else {
- document.iform.ipv6nat_ipaddr.disabled = 1;
- }
-}
-
-var descs=new Array(5);
-descs[0]="as the name says, it's the normal optimization algorithm";
-descs[1]="used for high latency links, such as satellite links. Expires idle connections later than default";
-descs[2]="expires idle connections quicker. More efficient use of CPU and memory but can drop legitimate connections";
-descs[3]="tries to avoid dropping any legitimate connections at the expense of increased memory usage and CPU utilization.";
-
-function update_description(itemnum) {
- document.forms[0].info.value=descs[itemnum];
-
-}
-
-function openwindow(url) {
- var oWin = window.open(url,"pfSensePop","width=620,height=400,top=150,left=150");
- if (oWin==null || typeof(oWin)=="undefined") {
- return false;
- } else {
- return true;
- }
-}
OpenPOWER on IntegriCloud