diff options
author | Ehsan Akhgari <ehsan@mozilla.com> | 2010-05-30 22:39:42 -0400 |
---|---|---|
committer | Ehsan Akhgari <ehsan@mozilla.com> | 2010-05-30 22:39:42 -0400 |
commit | 57a391918b60547c50202caf6ae95d7893871814 (patch) | |
tree | 60852461eedded17de30ccc6226e4f209afe3165 /lib | |
parent | ed1ec00e5834da02255ece0f44a0b7b36e2f5265 (diff) | |
download | bugzilla-triage-57a391918b60547c50202caf6ae95d7893871814.tar.gz |
Create a cookiemanager package and use it
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cookiemanager.js | 42 | ||||
-rw-r--r-- | lib/main.js | 4 |
2 files changed, 43 insertions, 3 deletions
diff --git a/lib/cookiemanager.js b/lib/cookiemanager.js new file mode 100644 index 0000000..5b9df5c --- /dev/null +++ b/lib/cookiemanager.js @@ -0,0 +1,42 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is Bugzilla Tweaks. + * + * The Initial Developer of the Original Code is Ehsan Akhgari. + * Portions created by the Initial Developer are Copyright (C) 2010 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Ehsan Akhgari <ehsan@mozilla.com> + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +exports.getHostCookies = function getHostCookies(host) { + var cm = Cc["@mozilla.org/cookiemanager;1"]. + getService(Ci.nsICookieManager2); + return cm.getCookiesFromHost(host); +} + diff --git a/lib/main.js b/lib/main.js index 77a4dd9..55619e0 100644 --- a/lib/main.js +++ b/lib/main.js @@ -1046,9 +1046,7 @@ function autoCompleteUser(doc, field, multiple) { if (prefs.get(BZTW_AC_DISABLE, false)) return null; - var cm = Components.classes["@mozilla.org/cookiemanager;1"]. - getService(Components.interfaces.nsICookieManager2); - var bzCookies = cm.getCookiesFromHost("bugzilla.mozilla.org"); + var bzCookies = require("cookiemanager").getHostCookies("bugzilla.mozilla.org"); var loginID = null, auth = null; while (bzCookies.hasMoreElements()) { var cookie = bzCookies.getNext(); |