Show
Ignore:
Timestamp:
11/25/08 01:54:21 (4 years ago)
Author:
amachang
Message:

change spec of tag url /t/tag -> /user/tag

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/bookmarklets/hatena_bookmarklist_analyzer/hatena_bookmarklist_analyzer.js

    r24768 r24772  
    131131        header.innerHTML = 'Bookmarked Users :: ' + count + ' / ' + totalCount; 
    132132        if (!finished) 
    133         textarea.value = '|*\u9806\u4f4d|*\u30d6\u30c3\u30af\u30de\u30fc\u30ab\u30fc|*\u30d6\u30c3\u30af\u30de\u30fc\u30af\u6570|*\u30bf\u30b0|\n' + list.filter(function(e) { return e.count > minBookmarkCount }).sort(function(a,b) { return b.count - a.count }).map(function(e, i) { return '|' + (i + 1) + '|' + 'id:' + e.name + '|' + e.count + '|' + e.getTags(tagNum).map(function(tag) { return '[http://b.hatena.ne.jp/t/' + encodeURIComponent(tag.name) + ':title=' + tag.name + ']' + '(' + tag.count + ')' }).join(' ') + ' |' }).join('\n'); 
     133        textarea.value = '|*\u9806\u4f4d|*\u30d6\u30c3\u30af\u30de\u30fc\u30ab\u30fc|*\u30d6\u30c3\u30af\u30de\u30fc\u30af\u6570|*\u30bf\u30b0|\n' + list.filter(function(e) { return e.count > minBookmarkCount }).sort(function(a,b) { return b.count - a.count }).map(function(e, i) { return '|' + (i + 1) + '|' + 'id:' + e.name + '|' + e.count + '|' + e.getTags(tagNum).map(function(tag) { return '[http://b.hatena.ne.jp/' + e.name + '/' + encodeURIComponent(tag.name) + ':title=' + tag.name + ']' + '(' + tag.count + ')' }).join(' ') + ' |' }).join('\n'); 
    134134        if (!finished) { 
    135135            progressElm.textContent = progressElm.style.width = Math.floor(count / (totalCount + 25) * 100) + '%';