namazu-ml(avocado)


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: About $MHONARC_INDEX_FILE of v1.1.1.4



加藤です.

> 新村と申します。
			(略)
> 高林さんから MHonArc は自動判別をするとのお返事をもらいましたが、
> MHonArc に限らず他のファイルを排除する場合は OPT_DENY_FILE に書け
> ば良いとの事ですね?
			(略)
> ところで、OPT_DENY_FILE に書く場合はどのように書いたら良いのでしょ
> うか?   見たところ、何かルールがあるように見えるのですが。
> 例をあげて頂けると助かります。

Makefile に書いてあるように,Perl の正規表現 (regular expression) を用
いて書きます.当座の mail2.html や thrd2.html を排除したい欲求には,下
記のmaillist.html,threads.html を,mail2.html, thrd2.html に置換すれ
ばかなえられるかと思います.
Perl の正規表現については,Perl の解説本をみるとよいかと思います.
例えば,
<URL:http://www.oreilly.co.jp/BOOK/pperl.htm>

------------------ 以下,私の Makefile の設定抜粋 ---------------------
##################################################################
## Deny Files
## this regular expression describes the names of the files which
## you do *not* want to index (case insensitive). this setting is
## effective when mknmz runs with -a option. please take notice.
## do *not* use '$' (matches at the end of the string) regular
## expression. it will be automatically appended by mknmz.pl.
##
## *CAUTION*: '\' -> '\\', '$' -> '$$'

OPT_DENY_FILE	= ^.*\\.gif|^.*\\.(jpg|jpeg)|^.*\\.tar\\.gz|^core|^.*\\.bak|^.*~|^\#.*|^\\..*|maillist.html|threads.html
------------------ 以上,私の Makefile の設定抜粋 ---------------------
============================================================
	加藤裕史@ NTTDATA 通信 (株)
	    技術開発本部 マルチメディア技術センタ
	    マルチメディア SI 担当  ドキュメント新サービス
			E-mail: tumibito@xxxxxxxxxxxxxxxxxxx
============================================================