Changeset 38910

Show
Ignore:
Timestamp:
04/29/11 18:09:29 (2 years ago)
Author:
NeoCat
Message:

Add related_results.js plugin

Location:
websites/twicli
Files:
1 added
3 modified

Legend:

Unmodified
Added
Removed
  • websites/twicli/index.html

    r38870 r38910  
    119119<li><b>geomap.js</b> : ジオタグ(GeoLocation)が付加されたtweetで、マーカ(<img src="images/marker.png">)をクリックした際にGoogle Mapをインライン表示します。詳しくは<a href="http://d.hatena.ne.jp/NeoCat/20100722/1279741190">こちら</a>。 
    120120<li><b>tweet_url_reply.js</b> : tweetへのリンクURLに内容を取得するボタン(<img src="images/jump.png">)を追加します。(created by <a href="http://twitter.com/edvakf">@edvakf</a>) 
     121<li><b>related_results.js</b>: ▼に関連するツイートを表示するメニューを追加します。(created by <a href="http://twitter.com/tkawa">@tkawa</a>) 
    121122<li><b>reply_favicon.js</b> <span style="font-size: small; color: red">[非標準]</span> : Re新着時にfavicon(IE,Safari以外)とタイトルを変更します。(created by <a href="http://twitter.com/edvakf">@edvakf</a>) 
    122123<li><b>sound.js</b> <span style="font-size: small; color: red">[非標準]</span> : TLやReの新着時にサウンドを鳴らします。 
  • websites/twicli/index_en.html

    r38870 r38910  
    108108<li><b>shorten_url.js</b> : Typing a URL in the text area followed by three semicolons (;;;) makes a shortened URL. (created by <a href="http://twitter.com/edvakf">@edvakf</a>) 
    109109<li><b>geomap.js</b> : Display inline Google Map by clicking the marker (<img src="images/marker.png">) of tweets with GeoLocation. 
    110 <li><b>tweet_url_reply.js</b>: Add a button (<img src="imagesjump.png">) to get the content to URL of a tweet. (created by <a href="http://twitter.com/edvakf">@edvakf</a>) 
     110<li><b>tweet_url_reply.js</b>: Add a button (<img src="images/jump.png">) to get the content to URL of a tweet. (created by <a href="http://twitter.com/edvakf">@edvakf</a>) 
    111111<li><b>reply_favicon.js</b> <small>[non-default]</small>: Change favicon(not supported by IE and Safari) and the title when 'Re' is updated. (created by <a href="http://twitter.com/edvakf">@edvakf</a>) 
     112<li><b>related_results.js</b>: Add a menu to show the related tweets into ▼ (created by <a href="http://twitter.com/tkawa">@tkawa</a>). 
    112113<li><b>sound.js</b> <small>[non-default]</small>: Play sound when 'TL'/'Re' is updated. 
    113114<li><b>insert_hashtag.js</b> <small>[non-default]</small>: Append the hashtag to your tweets automatically while a tab for the hashtag is opened. (created by <a href="http://twitter.com/_wa_">@_wa_</a>) 
  • websites/twicli/twicli.js

    r38908 r38910  
    294294var last_user_info = null;      // user TLに表示するユーザ情報(TLから切替時のキャッシュ) 
    295295// 設定値 
     296var currentCookieVer = 13; 
    296297var cookieVer = parseInt(readCookie('ver')) || 0; 
    297298var updateInterval = (cookieVer>3) && parseInt(readCookie('update_interval')) || 60; 
     
    303304if (!(cookieVer>10)) pluginstr+="\ngeomap.js"; 
    304305if (!(cookieVer>11) && pluginstr.indexOf('tweet_url_reply.js')<0) pluginstr+="\ntweet_url_reply.js"; 
     306if (!(cookieVer>12)) pluginstr+="\nrelated_results.js"; 
    305307pluginstr = pluginstr.substr(1); 
    306308var plugins = new Array; 
     
    13961398        no_geotag = !frm.geotag.checked; 
    13971399        resetUpdateTimer(); 
    1398         writeCookie('ver', 12, 3652); 
     1400        writeCookie('ver', currentCookieVer, 3652); 
    13991401        writeCookie('user_lang', user_lang, 3652); 
    14001402        writeCookie('limit', nr_limit, 3652);