bbs2chreader Part13
at SOFTWARE
213:名無しさん@お腹いっぱい。
07/10/07 20:02:32 urAJ0BpM0
>>190
(1/2)
既にdat取得済みのスレがdat落ちした場合は問題ないのでは?
("<THREADURL/>"を変数に入れて加工してmakimo.toへのリンクを組み立てればいいでしょう)
dat未取得のスレがdat落ちした場合今はエラー画面が出ないので
server/thread.js 508行目を
this.write(this.converter.getFooter("dat_down"));
↓
if (this.dat.datFile.exists()) {
this.write(this.converter.getFooter("dat_down"));
} else {
var template = this._bbs2chService.readLocalURI("chrome://bbs2chreader/content/res/thread-error.txt");
template = template.replace(/%URL%/g, this.dat.threadURL.spec)
.replace(/%STATUS%/g, "dat_down");
this.write(template);
}
とすると取りあえずエラー画面が出るようになります
次ページ続きを表示1を表示最新レス表示スレッドの検索類似スレ一覧話題のニュースおまかせリスト▼オプションを表示暇つぶし2ch
5370日前に更新/265 KB
担当:undef