filter/html.pl の修正を archive/html.pl に反映2006年03月21日 00時55分06秒

filter/html.pl に加えた title, author 情報の取得部分の修正を archive/html.pl に反映しました。(HEAD)

RE: Namazu for Windows 2.0.16 (alpha version archive 001)2006年03月21日 00時57分26秒

英語版の案内は、自動翻訳で作成しましたが、Steven さんに翻訳の誤りを指摘されました。(>_<;)


http://www.namazu.org/pipermail/namazu-users-en/2006-March/000184.html

に載せてある英語を直させて頂きました。

以下は日本語の原文とその下に英語の直訳です。

Namazu for Windows 2.0.16 (アルファ版アーカイブ001) を公開しています。

Namazu for Windows 2.0.16 (Alpha archive 001) is now open to the public.

正式なインストールパッケージの準備ができていませんので、先行して

Namazu 2.0.16 を Windows で使用するために、コンパイル済みのバイナリを

作成しました。

The formal compiled installation could not be made ready so

the binary package is made available for Namazu 2.0.16 for Windows.

http://www.akaneiro.jp/public/nmz2.0.16.001-win32.zip

http://www.akaneiro.jp/public/nmz2.0.16.001-win32.zip.sig

http://www.akaneiro.jp/public/nmz2.0.16.001-win32.zip.md5

(md5sum: abd4f3c8b17b77143b01f2ec9706dfb1)

http://www.akaneiro.jp/public/nmz2.0.16.001-win32.zip.sha1

(sha1sum: da7e09df9eee2036ab43598bd4ae090f6f81d5f5)

残念ながら本アーカイブにはインストーラは含まれませんので、手動でインス

トールする必要があります。

There is no installer in this release so a manual installation is needed.

動作環境は

System Requirements

・ActivePerl 800番台

ActivePerl 800 number series

・インストール先は C:\namazu

Instalation directory is limited to c:\namazu

という制限が付きます。

また、Web サーバから PPM ファイルをインストールする必要がありますので、

インストール時にインターネットに接続する必要があります。

Also, an internet connection is required for the installation of the PPM file to download from the web server.

検索後、クリックしたリンクを調べる2006年03月21日 02時30分43秒

検索結果からどのページのリンクをクリックしたのかがわかれば、クリック数の多いページをより上位に表示するような仕組みを実現するのも可能でしょう。

NMZ.result.normal のリンクの部分を書き換えて

<dd>a href="/cgi-bin/link.cgi?uri=${uri}">${uri}</a> (${size} bytes)<br><br></dd>

次のような link.cgi でラップすれば、リダイレクトができます。

#!/usr/bin/perl

use CGI;
$query = new CGI;

my $uri = $query->param('uri');

print "Location: $uri\n\n";

あとは uri を記録する部分を追加すれば良いだけです。
また、この CGI でリンク先を取得し、キャッシュファイルに保存する等すれば、google のキャッシュのようなものも作れますね。
同様に PDF/Word等 の場合は、テキストに変換して保存しておくと、リンク先をテキストかHTMLで参照する(プラグイン、ヘルパーアプリケーション不要)というのも作れます。

google のマネしても何ですけど...。