aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoranekos2010-08-05 19:42:11 +0000
committeranekos2010-08-05 19:42:11 +0000
commit7e590be76a39cf4e4f745609b44903d162c82212 (patch)
treeb14112ed2427b21857ecdf456e9ab04a475ea00f
parent3c47ca815da44e2aee947af52826c99fdb3b7b38 (diff)
downloadvimperator-plugins-7e590be76a39cf4e4f745609b44903d162c82212.tar.bz2
ライセンス記述追加
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38195 d0d07461-0603-4401-acd4-de1884942a52
-rwxr-xr-xtwittperator.js59
1 files changed, 57 insertions, 2 deletions
diff --git a/twittperator.js b/twittperator.js
index 63e98bc..5212479 100755
--- a/twittperator.js
+++ b/twittperator.js
@@ -1,3 +1,28 @@
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 teramako
+ * Copyright (c) 2010 anekos
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
let PLUGIN_INFO =
<VimperatorPlugin>
<name>twittperator</name>
@@ -6,6 +31,9 @@ let PLUGIN_INFO =
<version>1.0.0</version>
<minVersion>2.3</minVersion>
<maxVersion>2.4</maxVersion>
+ <author mail="teramako@gmail.com" homepage="http://d.hatena.ne.jp/teramako/">teramako</author>
+ <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author>
+ <license>MIT License</license>
<updateURL>http://coderepos.org/share/browser/lang/javascript/vimperator-plugins/trunk/twittperator.js</updateURL>
<detail lang="ja"><![CDATA[
これはOAuth認証を用いたTwitterクライアントプラグインです。
@@ -66,12 +94,39 @@ let PLUGIN_INFO =
</VimperatorPlugin>;
(function() {
- // TwitterOauth for Greasemonkey
+
+ // TwitterOauth for Greasemonkey {{{
+
+ /*
+ * http://efcl.info/2010/0610/res1721/
+ *
+ * The MIT License
+ *
+ * Copyright (c) 2010 azu
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
function TwitterOauth() {
this.initialize.apply(this, arguments);
}
- // OAuth {{{
TwitterOauth.prototype = (function() {
// {{{2 oauth.js