aboutsummaryrefslogtreecommitdiffstats
path: root/notifier
diff options
context:
space:
mode:
authorsuVene2009-02-08 17:13:01 +0000
committersuVene2009-02-08 17:13:01 +0000
commit9c7e8a8010fde95685c25ec77c51d386a1b9358d (patch)
tree67ab36779bad265bae9c9d4703b486f029ff7b2d /notifier
parentc7495698d02c28f057231b9c051a090ace0f8b4c (diff)
downloadvimperator-plugins-9c7e8a8010fde95685c25ec77c51d386a1b9358d.tar.bz2
twitter.com/home 取得 XPath 変更対応
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@29733 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'notifier')
-rw-r--r--notifier/subject_twitter_scraper.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/notifier/subject_twitter_scraper.js b/notifier/subject_twitter_scraper.js
index d935249..f6de4ef 100644
--- a/notifier/subject_twitter_scraper.js
+++ b/notifier/subject_twitter_scraper.js
@@ -10,8 +10,8 @@ var PLUGIN_INFO =
<name>{NAME}</name>
<description>Twitter change notice(need login).</description>
<description lang="ja">Twitter変更通知(ログイン済みであること)。</description>
- <author mail="suvene@zeromemory.info" homepage="http://zeromemory.sblo.jp/">suVene</author>
- <version>0.1.0</version>
+ <author mail="suvene@zeromemory.info" homepage="http://d.zeromemory.info/">suVene</author>
+ <version>0.1.1</version>
<license>MIT</license>
<minVersion>2.0pre</minVersion>
<maxVersion>2.0pre</maxVersion>
@@ -38,7 +38,7 @@ notifier.subject.register(notifier.SubjectHttp, {
},
parse: function(res) {
// if (this.count == 0) return []; // for debug
- return res.getHTMLDocument('id("timeline_body")/tr[@class=contains(concat(" ", @class, " "), " hentry ")]');
+ return res.getHTMLDocument('id("timeline")/li[@class=contains(concat(" ", @class, " "), " hentry ")]');
},
diff: function(cache, parsed) {
var self = this;