diff options
author | teramako | 2009-02-07 17:42:54 +0000 |
---|---|---|
committer | teramako | 2009-02-07 17:42:54 +0000 |
commit | c764415a8b11b1c9bc1b776c858eb4d41f46cde7 (patch) | |
tree | 239723d32fdd5919579fb91fcbf95f65cb0aa16a /cookieManager.js | |
parent | 96c7cfce51237dc7b0843ed0c1da40e2895f919f (diff) | |
download | vimperator-plugins-c764415a8b11b1c9bc1b776c858eb4d41f46cde7.tar.bz2 |
* add license
* add updateURL
* bug fix: permission capablity completion
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@29689 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'cookieManager.js')
-rw-r--r-- | cookieManager.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cookieManager.js b/cookieManager.js index 77913db..e1e72f5 100644 --- a/cookieManager.js +++ b/cookieManager.js @@ -2,10 +2,12 @@ var PLUGIN_INFO = <VimperatorPlugin> <name>{NAME}</name> <description>Manage Cookies (list, remove, add/remove permission)</description> -<author mail="teramako@gmail.com">teramako</author> -<version>1.0</version> +<author mail="teramako@gmail.com" homepage="http://vimperator.g.hatena.ne.jp/teramako/">teramako</author> +<version>1.1</version> +<license>MPL 1.1/GPL 2.0/LGPL 2.1</license> <minVersion>2.0pre</minVersion> <maxVersion>2.0</maxVersion> +<updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/cookieManager.js</updateURL> <detail lang="ja"><![CDATA[ Cookie の管理をするプラグイン @@ -268,7 +270,7 @@ var cManager = { if (args.length == 3){ context.title = ["Capability"]; context.completions = context.filter ? - this.capabilityList.filter(function($_) c[0].toLowerCase().indexOf(context.filter.toLowerCase()) == 0) : + this.capabilityList.filter(function($_) $_[0].toLowerCase().indexOf(context.filter.toLowerCase()) == 0) : this.capabilityList; } else if (args.length == 2){ let host = getHost(); |