home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / komunikace / kmeleon / K-Meleon1.1.3en-US.exe / chrome / newsfox.jar / content / newsfox / feedOptions.js < prev    next >
Text File  |  2007-10-02  |  8KB  |  210 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is NewsFox.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Andy Frank <andy@andyfrank.com>.
  18.  * Portions created by the Initial Developer are Copyright (C) 2005-2007
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Andrey Gromyko <andrey@gromyko.name>
  23.  *   Ron Pruitt <wa84it@gmail.com>
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the LGPL or the GPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. function init()
  40. {
  41.   var url        = window.arguments[0].url;
  42.   var style      = window.arguments[0].style;
  43.   var deleteOld  = window.arguments[0].deleteOld;
  44.   var autoCheck  = window.arguments[0].autoCheck;
  45.   var iconsrc    = window.arguments[0].iconsrc;
  46.   var groupstr   = window.arguments[0].groupstr;
  47.   var groupmemb  = window.arguments[0].groupmemb;
  48.     var daysToKeep = window.arguments[0].daysToKeep;
  49.  
  50.   document.getElementById("cbiconsrc").src = iconsrc;
  51.   var urlbox = document.getElementById("url");
  52.   urlbox.value = url;
  53.   var list = document.getElementById("style");
  54.   list.selectedIndex = style;
  55.   document.getElementById("cbDeleteOld").checked = deleteOld;
  56.   document.getElementById("cbAutoCheck").checked = autoCheck;
  57.   document.getElementById("cbDontDeleteUnread").checked = window.arguments[0].dontDeleteUnread;
  58.   document.getElementById("cbDontDeleteUnread").disabled = !deleteOld;
  59.   document.getElementById("cbKeep").checked = (daysToKeep > 0);
  60.   document.getElementById("cbKeep").disabled = !deleteOld;
  61.   document.getElementById("cbDaysToKeep").value = daysToKeep;
  62.     onCheckKeep();
  63.  
  64.   var namebox = document.getElementById("Name");
  65.   var homebox = document.getElementById("Homepage");
  66.   if (window.arguments[0].isNew)
  67.   {
  68.         const NF_SB = document.getElementById("newsfox-string-bundle");
  69.     var msg = NF_SB.getString('feedfills');;
  70.     namebox.value = msg;
  71.     namebox.disabled = true;
  72.     homebox.value = msg;
  73.     homebox.disabled = true;
  74.     urlbox.selected = true;
  75.     var feedOptDlg = document.getElementById("feedOptionsDlg");
  76.     feedOptDlg.defaultButton = "disclosure";
  77.   }
  78.   else
  79.   {
  80.     namebox.value = window.arguments[0].name;
  81.     homebox.value = window.arguments[0].homepage;
  82.   }
  83.  
  84.   var names = new Array();
  85.   names = groupstr.split(",");
  86.   var membs = new Array();
  87.   membs = groupmemb.split(",");
  88.  
  89.   var grplist = document.getElementById("grplist");
  90.   var index = 0;
  91.   while (names.length >= 1)
  92.   {
  93.         var name = names.shift();
  94.         var memb = membs.shift();
  95.         var tmp = document.createElement("listitem");
  96.         tmp.setAttribute("type","checkbox");
  97.         if (memb & 0x02) tmp.setAttribute("style","color: blue");
  98.         if (memb & 0x01) tmp.setAttribute("checked",true);
  99.         if (index == 0) tmp.setAttribute("disabled",true);
  100.     tmp.setAttribute("label",name);
  101.     if (name.length > 20) tmp.setAttribute("tooltiptext",name);
  102.         tmp.setAttribute("id","nwsfx"+index);
  103.     grplist.appendChild(tmp);
  104.         index++;
  105.   }
  106. }
  107.  
  108. function doCheckFeed()
  109. {
  110.   window.arguments[0].checkFeed = true;
  111.   var feedOptDlg = document.getElementById("feedOptionsDlg");
  112.   feedOptDlg.acceptDialog();
  113. }
  114.  
  115. function doAccept()
  116. {
  117.   var elem = document.getElementById("url");
  118.   window.arguments[0].url = elem.value;
  119.     var oldFeed = window.arguments[0].model.getFeedByURL(elem.value);
  120.     var uid = window.arguments[0].uid;
  121.     if (window.arguments[0].isNew && oldFeed != null && oldFeed.uid != uid)
  122.     {
  123.         if (oldFeed.exclude)
  124.             window.arguments[0].model.remove(oldFeed);
  125.         else
  126.         {
  127.             const NF_SB = document.getElementById("newsfox-string-bundle");
  128.             alert("'" + oldFeed.getDisplayName() + "' " + NF_SB.getString('alert.feedExists'));
  129.             window.arguments[0].checkFeed = false;
  130.           var urlbox = document.getElementById("url");
  131.             urlbox.select();
  132.             urlbox.focus();
  133.             return false;
  134.         }
  135.     }
  136.  
  137.   window.arguments[0].ok = true;
  138.     window.arguments[0].name = document.getElementById("Name").value;
  139.     window.arguments[0].iconsrc = document.getElementById("cbiconsrc").src;
  140.     window.arguments[0].homepage = document.getElementById("Homepage").value;
  141.  
  142.   elem = document.getElementById("style");
  143.   window.arguments[0].style = parseInt(elem.value);
  144.  
  145.   elem = document.getElementById("cbDeleteOld");
  146.   window.arguments[0].deleteOld = elem.checked;
  147.  
  148.   elem = document.getElementById("cbAutoCheck");
  149.   window.arguments[0].autoCheck = elem.checked;
  150.  
  151.     window.arguments[0].dontDeleteUnread = document.getElementById("cbDontDeleteUnread").checked;
  152.     window.arguments[0].daysToKeep = !document.getElementById("cbKeep").checked ? 0 : document.getElementById("cbDaysToKeep").value;
  153.  
  154.   var membs = new Array();
  155.   var elem = document.getElementById("nwsfx0");
  156.   var index = 0;
  157.   while (elem != null)
  158.   {
  159.     membs.push(1*(elem.checked));
  160.     index++;
  161.     elem = document.getElementById("nwsfx"+index);
  162.   }
  163.   window.arguments[0].groupmemb = membs.join();
  164.   return true;
  165. }
  166.  
  167. function onDeleteOldCommand()
  168. {
  169.     document.getElementById("cbDontDeleteUnread").disabled = !document.getElementById("cbDeleteOld").checked;
  170.     document.getElementById("cbKeep").disabled = !document.getElementById("cbDeleteOld").checked;
  171.     onCheckKeep();
  172. }
  173.  
  174. function onCheckKeep()
  175. {
  176.   document.getElementById("cbDaysToKeep").disabled = !document.getElementById("cbKeep").checked || document.getElementById("cbKeep").disabled;
  177. }
  178.  
  179. function toggleIcon()
  180. {
  181.     var iconsrc = document.getElementById("cbiconsrc").src;
  182.     var uid = window.arguments[0].uid;
  183.     var file = getProfileDir();
  184.     var leafName = uid + ".ico";
  185.     file.append(leafName);
  186.     if (iconsrc == ICON_OK)
  187.     {
  188.         var nsIFilePicker = Components.interfaces.nsIFilePicker;
  189.         var pickfile = Components.classes["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
  190.         const NF_SB = document.getElementById("newsfox-string-bundle");
  191.         pickfile.init(window, NF_SB.getString('chooseicon'), nsIFilePicker.modeOpen);
  192.         pickfile.displayDirectory = getProfileDir();
  193.         pickfile.appendFilters(nsIFilePicker.filterImages);
  194.         pickfile.appendFilters(nsIFilePicker.filterAll);
  195.         var filepicked = pickfile.show();
  196.         if (filepicked == nsIFilePicker.returnOK)
  197.         {
  198.             if (file.exists()) file.remove(false);
  199.             pickfile.file.copyTo(getProfileDir(),leafName);
  200.             iconsrc = "file:///" + file.path + "?" + (new Date()).getTime();
  201.             document.getElementById("cbiconsrc").src = iconsrc;
  202.         }
  203.     }
  204.     else  // has an icon, change to ICON_OK
  205.     {
  206.         document.getElementById("cbiconsrc").src = ICON_OK;
  207.         if (file.exists()) file.remove(false);
  208.     }
  209. }
  210.