From 9a8cf4e8a04daad9865d00075c269f04adaefcf8 Mon Sep 17 00:00:00 2001 From: janus_wel Date: Tue, 21 Oct 2008 10:27:41 +0000 Subject: liberator -> liberator.modules - buffer - commandline - commands - hints - ..etc コマンド追加時に使う addUserCommand の第 3 引数に指定する関数の第 1 引数が String から Object に変更したのに対応 - ldrize_cooperation_fetch_flv.js - lookupDictionary.js - matanico.js - nicontroller.js - nnp_cooperation.js - reading.js - youtubeamp.js migemo_hint.js で一時的にグローバルオブジェクト plugins を定義 応急処置なのであとで削る必要あり git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@21797 d0d07461-0603-4401-acd4-de1884942a52 --- ldrize_cooperation_fetch_flv.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ldrize_cooperation_fetch_flv.js') diff --git a/ldrize_cooperation_fetch_flv.js b/ldrize_cooperation_fetch_flv.js index b8bec88..743ba8c 100644 --- a/ldrize_cooperation_fetch_flv.js +++ b/ldrize_cooperation_fetch_flv.js @@ -1,6 +1,6 @@ // Vimperator plugin: 'Cooperation LDRize Mappings - Niconico Flv Fetchearg || liberator.buffer.URLr' // Version: 0.4 -// Last Change: 06-Apr-2008. Jan 2008 +// Last Change: 21-Oct-2008. Jan 2008 // License: Creative Commons // Maintainer: Trapezoid - http://unsigned.g.hatena.ne.jp/Trapezoid // @@ -66,12 +66,12 @@ xhr.open("GET",uri,true); xhr.send(null); } - liberator.commands.addUserCommand(['fetchflv'],'Download flv file from Nicovideo', + liberator.modules.commands.addUserCommand(['fetchflv'],'Download flv file from Nicovideo', function(arg){ - httpGET(arg || liberator.buffer.URL,function(responseText){ + httpGET(arg.string || liberator.modules.buffer.URL,function(responseText){ var [,title] = responseText.match(/(.*?)<\/title>/i); liberator.log(title); - NiconicoFlvHandler(arg || liberator.buffer.URL,title); + NiconicoFlvHandler(arg.string || liberator.modules.buffer.URL,title); }); },{} ); -- cgit v1.2.3