JaneView Part81

このエントリーをはてなブックマークに追加
431名無しさん@お腹いっぱい。
うちの環境ではフォルダがあって書き込み可能なら>>397の方法で登録出来る。再起動は必要だけど。

あと>>403をさらに書換え。数字か付く嫌儲も、アンダーバーも、bbspinkも、転勤までコピペしてスレ立てた馬鹿にもこれで対処できるはず。

//スレッド一覧のスレッドタイトル先頭/末尾から[転載禁止]/(c)2ch.netを削除

strTenkin_Search_Head = /^(?:\[転.?載.?禁.?止\] )*(.+)$/
strTenkin_Search_Tail = /^(.+?)_*(?:\[転.?載.?禁.?止\]\s*|(?:\(c\)|©)(?:2ch\.net|bbspink\.com)\s*)*( \[\d+\])*$/

function BoardActionRefreshed(board){tenten(board);}
function BoardActionLoaded(board){tenten(board);}
function BoardActionCreatedNewThread(board){tenten(board);}

function ThreadActionDownloadComplete(thread){
title = thread.Title;
if(title.match(strTenkin_Search_Head))
title = RegExp.$1;
if(title.match(strTenkin_Search_Tail))
thread.title = RegExp.$1+RegExp.$2;
}

function tenten(board){
for(var i = 0; i < board.Count; i++){
title = board.GetThread(i).Title;
if(title.match(strTenkin_Search_Head))
title = RegExp.$1;
if(title.match(strTenkin_Search_Tail))
board.GetThread(i).Title = RegExp.$1+RegExp.$2;
}
}