diff options
author | anekos | 2012-06-15 23:44:10 +0900 |
---|---|---|
committer | anekos | 2012-06-15 23:44:59 +0900 |
commit | 57ad3c1e60e9b503af17ae056f77dc3064936038 (patch) | |
tree | 9bd4b6e89269b3e5c2f9372deaa287150fa66b32 /function-template.js | |
parent | 8d8e5d0258a3676074b7a038a84a494e0b8d578f (diff) | |
download | vimperator-plugins-57ad3c1e60e9b503af17ae056f77dc3064936038.tar.bz2 |
Update document section.
Diffstat (limited to 'function-template.js')
-rw-r--r-- | function-template.js | 59 |
1 files changed, 36 insertions, 23 deletions
diff --git a/function-template.js b/function-template.js index 5dac6fd..0de2c6a 100644 --- a/function-template.js +++ b/function-template.js @@ -1,5 +1,5 @@ /* NEW BSD LICENSE {{{ -Copyright (c) 2009-2011, anekos. +Copyright (c) 2009-2012, anekos. All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -32,30 +32,43 @@ THE POSSIBILITY OF SUCH DAMAGE. }}} */ -// PLUGIN_INFO {{{ -let PLUGIN_INFO = -<VimperatorPlugin> - <name>Functions Template</name> - <name lang="ja">関数テンプレート</name> - <description>function Template</description> - <description lang="ja">Vimperator の関数のテンプレート</description> - <version>1.3.0</version> - <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> - <license>new BSD License (Please read the source code comments of this plugin)</license> - <license lang="ja">修正BSDライセンス (ソースコードのコメントを参照してください)</license> - <updateURL>https://github.com/vimpr/vimperator-plugins/raw/master/function-template.js</updateURL> - <minVersion>3.0</minVersion> - <detail><![CDATA[ - Functions template - (Fix|Add) me! - ]]></detail> - <detail lang="ja"><![CDATA[ - 関数のテンプレート - (おかしい|書かれていない)(関数|引数|説明)があったら適当に(足|なお)してください。 - ]]></detail> -</VimperatorPlugin>; +// INFO {{{ +let INFO = +<> + <plugin name="XXXX" version="1.0.0" + href="http://vimpr.github.com/" + summary="XXXXX" + lang="en-US" + xmlns="http://vimperator.org/namespaces/liberator"> + <author email="xxxx@xxxx.net">xxxxx</author> + <license>New BSD License</license> + <project name="Vimperator" minVersion="3.0"/> + <p></p> + <item> + <tags>:hoge</tags> + <spec>:hoge</spec> + <description><p></p></description> + </item> + </plugin> + <plugin name="XXXX" version="1.0.0" + href="http://vimpr.github.com/" + summary="XXXXX" + lang="ja" + xmlns="http://vimperator.org/namespaces/liberator"> + <author email="xxxx@xxxx.net">xxxxx</author> + <license>New BSD License</license> + <project name="Vimperator" minVersion="3.0"/> + <p></p> + <item> + <tags>:hoge</tags> + <spec>:hoge</spec> + <description><p></p></description> + </item> + </plugin> +</>; // }}} + (function () { // XXX 以下は実行しないよ。 return; |