]> git.wh0rd.org - tt-rss.git/blobdiff - prefs.js
display help_text in prefs editor
[tt-rss.git] / prefs.js
index e55f7d4f45d12f2995682fc5a4673d7cb9d1fe23..3e8b6b18102b0fc15f3b72e3dc14531788f4414f 100644 (file)
--- a/prefs.js
+++ b/prefs.js
@@ -7,7 +7,9 @@ var xmlhttp = false;
 
 var active_feed = false;
 var active_filter = false;
-var active_pane = false;
+var active_label = false;
+
+var active_tab = false;
 
 /*@cc_on @*/
 /*@if (@_jscript_version >= 5)
@@ -29,10 +31,9 @@ if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
 }
 
 function feedlist_callback() {
-       var container = document.getElementById('feedConfPane');
+       var container = document.getElementById('prefContent');
        if (xmlhttp.readyState == 4) {
                container.innerHTML=xmlhttp.responseText;
-
                if (active_feed) {
                        var row = document.getElementById("FEEDR-" + active_feed);
                        if (row) {
@@ -45,12 +46,14 @@ function feedlist_callback() {
                                checkbox.checked = true;
                        }
                }
+               p_notify("");
        }
 }
 
 function filterlist_callback() {
-       var container = document.getElementById('filterConfPane');
+       var container = document.getElementById('prefContent');
        if (xmlhttp.readyState == 4) {
+
                container.innerHTML=xmlhttp.responseText;
 
                if (active_filter) {
@@ -66,9 +69,53 @@ function filterlist_callback() {
                                checkbox.checked = true;
                        }
                }
+               p_notify("");
+       }
+}
+
+function labellist_callback() {
+       var container = document.getElementById('prefContent');
+       if (xmlhttp.readyState == 4) {
+               container.innerHTML=xmlhttp.responseText;
+
+               if (active_filter) {
+                       var row = document.getElementById("LILRR-" + active_label);
+                       if (row) {
+                               if (!row.className.match("Selected")) {
+                                       row.className = row.className + "Selected";
+                               }               
+                       }
+                       var checkbox = document.getElementById("LICHK-" + active_label);
+                       
+                       if (checkbox) {
+                               checkbox.checked = true;
+                       }
+               }
+               p_notify("");
+       }
+}
+
+function prefslist_callback() {
+       var container = document.getElementById('prefContent');
+       if (xmlhttp.readyState == 4) {
+
+               container.innerHTML=xmlhttp.responseText;
+
+               p_notify("");
+       }
+}
+
+function gethelp_callback() {
+       var container = document.getElementById('prefHelpBox');
+       if (xmlhttp.readyState == 4) {
+
+               container.innerHTML = xmlhttp.responseText;
+               container.style.display = "block";
+
        }
 }
 
+
 function notify_callback() {
        var container = document.getElementById('notify');
        if (xmlhttp.readyState == 4) {
@@ -84,7 +131,9 @@ function updateFeedList() {
                return
        }
 
-       document.getElementById("feedConfPane").innerHTML = "Loading feeds, please wait...";
+//     document.getElementById("prefContent").innerHTML = "Loading feeds, please wait...";
+
+       p_notify("Loading, please wait...");
 
        xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
        xmlhttp.onreadystatechange=feedlist_callback;
@@ -106,6 +155,31 @@ function toggleSelectRow(sender) {
        }
 }
 
+function addLabel() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var sqlexp = document.getElementById("ladd_expr");
+
+       if (sqlexp.value.length == 0) {
+               notify("Missing SQL expression.");
+       } else {
+               notify("Adding label...");
+
+               xmlhttp.open("GET", "backend.php?op=pref-labels&subop=add&exp=" +
+                       param_escape(sqlexp.value), true);                      
+                       
+               xmlhttp.onreadystatechange=labellist_callback;
+               xmlhttp.send(null);
+
+               sqlexp.value = "";
+       }
+
+}
+
 function addFilter() {
 
        if (!xmlhttp_ready(xmlhttp)) {
@@ -121,8 +195,10 @@ function addFilter() {
        } else {
                notify("Adding filter...");
 
+               var v_match = match[match.selectedIndex].text;
+
                xmlhttp.open("GET", "backend.php?op=pref-filters&subop=add&regexp=" +
-                       param_escape(regexp.value) + "&match=" + match.value, true);                    
+                       param_escape(regexp.value) + "&match=" + v_match, true);                        
                        
                xmlhttp.onreadystatechange=filterlist_callback;
                xmlhttp.send(null);
@@ -131,6 +207,7 @@ function addFilter() {
        }
 
 }
+
 function addFeed() {
 
        if (!xmlhttp_ready(xmlhttp)) {
@@ -156,6 +233,22 @@ function addFeed() {
 
 }
 
+function editLabel(id) {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       active_label = id;
+
+       xmlhttp.open("GET", "backend.php?op=pref-labels&subop=edit&id=" +
+               param_escape(id), true);
+       xmlhttp.onreadystatechange=labellist_callback;
+       xmlhttp.send(null);
+
+}
+
 function editFilter(id) {
 
        if (!xmlhttp_ready(xmlhttp)) {
@@ -190,6 +283,23 @@ function editFeed(feed) {
 
 }
 
+function getSelectedLabels() {
+
+       var content = document.getElementById("prefLabelList");
+
+       var sel_rows = new Array();
+
+       for (i = 0; i < content.rows.length; i++) {
+               if (content.rows[i].className.match("Selected")) {
+                       var row_id = content.rows[i].id.replace("LILRR-", "");
+                       sel_rows.push(row_id);  
+               }
+       }
+
+       return sel_rows;
+}
+
+
 function getSelectedFilters() {
 
        var content = document.getElementById("prefFilterList");
@@ -272,6 +382,53 @@ function unreadSelectedFeeds() {
        }
 }
 
+function removeSelectedLabels() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var sel_rows = getSelectedLabels();
+
+       if (sel_rows.length > 0) {
+
+               notify("Removing selected labels...");
+
+               xmlhttp.open("GET", "backend.php?op=pref-labels&subop=remove&ids="+
+                       param_escape(sel_rows.toString()), true);
+               xmlhttp.onreadystatechange=labellist_callback;
+               xmlhttp.send(null);
+
+       } else {
+               notify("Please select some labels first.");
+       }
+}
+
+function removeSelectedFilters() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var sel_rows = getSelectedFilters();
+
+       if (sel_rows.length > 0) {
+
+               notify("Removing selected filters...");
+
+               xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
+                       param_escape(sel_rows.toString()), true);
+               xmlhttp.onreadystatechange=filterlist_callback;
+               xmlhttp.send(null);
+
+       } else {
+               notify("Please select some filters first.");
+       }
+}
+
+
 function removeSelectedFeeds() {
 
        if (!xmlhttp_ready(xmlhttp)) {
@@ -326,9 +483,21 @@ function feedEditSave() {
 
        var link = document.getElementById("iedit_link").value;
        var title = document.getElementById("iedit_title").value;
+       var upd_intl = document.getElementById("iedit_updintl").value;
+       var purge_intl = document.getElementById("iedit_purgintl").value;
 
 //     notify("Saving feed.");
 
+/*     if (upd_intl < 0) {
+               notify("Update interval must be &gt;= 0 (0 = default)");
+               return;
+       }
+
+       if (purge_intl < 0) {
+               notify("Purge days must be &gt;= 0 (0 = default)");
+               return;
+       } */
+
        if (link.length == 0) {
                notify("Feed link cannot be blank.");
                return;
@@ -342,12 +511,31 @@ function feedEditSave() {
        active_feed = false;
 
        xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editSave&id=" +
-               feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) ,true);
+               feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) +
+               "&ui=" + param_escape(upd_intl) + "&pi=" + param_escape(purge_intl), true);
        xmlhttp.onreadystatechange=feedlist_callback;
        xmlhttp.send(null);
 
 }
 
+function labelEditCancel() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       active_label = false;
+
+       notify("Operation cancelled.");
+
+       xmlhttp.open("GET", "backend.php?op=pref-labels", true);
+       xmlhttp.onreadystatechange=labellist_callback;
+       xmlhttp.send(null);
+
+}
+
+
 function filterEditCancel() {
 
        if (!xmlhttp_ready(xmlhttp)) {
@@ -365,6 +553,41 @@ function filterEditCancel() {
 
 }
 
+function labelEditSave() {
+
+       var label = active_label;
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var sqlexp = document.getElementById("iedit_expr").value;
+       var descr = document.getElementById("iedit_descr").value;
+
+//     notify("Saving label " + sqlexp + ": " + descr);
+
+       if (sqlexp.length == 0) {
+               notify("SQL expression cannot be blank.");
+               return;
+       }
+
+       if (descr.length == 0) {
+               notify("Caption cannot be blank.");
+               return;
+       }
+
+       active_label = false;
+
+       xmlhttp.open("GET", "backend.php?op=pref-labels&subop=editSave&id=" +
+               label + "&s=" + param_escape(sqlexp) + "&d=" + param_escape(descr),
+               true);
+               
+       xmlhttp.onreadystatechange=labellist_callback;
+       xmlhttp.send(null);
+
+}
+
 function filterEditSave() {
 
        var filter = active_filter;
@@ -376,7 +599,9 @@ function filterEditSave() {
 
        var regexp = document.getElementById("iedit_regexp").value;
        var descr = document.getElementById("iedit_descr").value;
-       var match = document.getElementById("iedit_match").value;
+       var match = document.getElementById("iedit_match");
+
+       var v_match = match[match.selectedIndex].text;
 
 //     notify("Saving filter " + filter + ": " + regexp + ", " + descr + ", " + match);
 
@@ -389,34 +614,28 @@ function filterEditSave() {
 
        xmlhttp.open("GET", "backend.php?op=pref-filters&subop=editSave&id=" +
                filter + "&r=" + param_escape(regexp) + "&d=" + param_escape(descr) +
-               "&m=" + param_escape(match), true);
+               "&m=" + param_escape(v_match), true);
                
        xmlhttp.onreadystatechange=filterlist_callback;
        xmlhttp.send(null); 
 
 }
 
-function removeSelectedFilters() {
+function editSelectedLabel() {
+       var rows = getSelectedLabels();
 
-       if (!xmlhttp_ready(xmlhttp)) {
-               printLockingError();
-               return
+       if (rows.length == 0) {
+               notify("No labels are selected.");
+               return;
        }
 
-       var sel_rows = getSelectedFilters();
-
-       if (sel_rows.length > 0) {
-
-               notify("Removing selected filters...");
+       if (rows.length > 1) {
+               notify("Please select one label.");
+               return;
+       }
 
-               xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=filterlist_callback;
-               xmlhttp.send(null);
+       editLabel(rows[0]);
 
-       } else {
-               notify("Please select some filters first.");
-       }
 }
 
 
@@ -485,7 +704,9 @@ function updateFilterList() {
                return
        }
 
-       document.getElementById("filterConfPane").innerHTML = "Loading filters, please wait...";
+//     document.getElementById("prefContent").innerHTML = "Loading filters, please wait...";
+
+       p_notify("Loading, please wait...");
 
        xmlhttp.open("GET", "backend.php?op=pref-filters", true);
        xmlhttp.onreadystatechange=filterlist_callback;
@@ -493,25 +714,67 @@ function updateFilterList() {
 
 }
 
-function expandPane(id) {
+function updateLabelList() {
 
-       var container;
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
 
-/*     if (active_pane) {
-               container = document.getElementById(active_pane);
-               container.innerHTML = "<a href=\"javascript:expandPane('" +
-                       active_pane + "')\">Click to expand...</a>";
-       } */
+       p_notify("Loading, please wait...");
+
+//     document.getElementById("prefContent").innerHTML = "Loading labels, please wait...";
+
+       xmlhttp.open("GET", "backend.php?op=pref-labels", true);
+       xmlhttp.onreadystatechange=labellist_callback;
+       xmlhttp.send(null);
+}
 
-       container = document.getElementById(id);
+function updatePrefsList() {
 
-       if (id == "feedConfPane") {
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       p_notify("Loading, please wait...");
+
+       xmlhttp.open("GET", "backend.php?op=pref-prefs", true);
+       xmlhttp.onreadystatechange=prefslist_callback;
+       xmlhttp.send(null);
+
+}
+
+function selectTab(id) {
+
+       if (id == "feedConfig") {
                updateFeedList();
-       } else if (id == "filterConfPane") {
+       } else if (id == "filterConfig") {
                updateFilterList();
+       } else if (id == "labelConfig") {
+               updateLabelList();
+       } else if (id == "genConfig") {
+               updatePrefsList();
+       }
+
+       var tab = document.getElementById(active_tab + "Tab");
+
+       if (tab) {
+               if (tab.className.match("Selected")) {
+                       tab.className = "prefsTab";
+               }
        }
 
-       active_pane = id;
+       tab = document.getElementById(id + "Tab");
+
+       if (tab) {
+               if (!tab.className.match("Selected")) {
+                       tab.className = tab.className + "Selected";
+               }
+       }
+
+       active_tab = id;
+
 }
 
 function init() {
@@ -525,8 +788,33 @@ function init() {
                return;
        }
 
-//     updateFeedList();
+       selectTab("genConfig");
+
        document.onkeydown = hotkey_handler;
        notify("");
 
 }
+
+/*
+var help_topic_id = false;
+
+function do_dispOptionHelp() {
+
+       if (!xmlhttp_ready(xmlhttp))
+               return;
+
+       xmlhttp.open("GET", "backend.php?op=pref-prefs&subop=getHelp&pn=" +
+               param_escape(help_topic_id), true);
+       xmlhttp.onreadystatechange=gethelp_callback;
+       xmlhttp.send(null);
+
+}
+
+function dispOptionHelp(event, sender) {
+
+       help_topic_id = sender.id;
+
+//     document.setTimeout("do_dispOptionHelp()", 100);
+
+} */
+