Namazu-users-ja(旧)


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

NMZ.head.ja がおかしい ?



今石@東芝エンジニアリングと申します。

使用環境:
WindowsNT4.0
Namazu for Win32 2.0.4
Apache 1.3.3

の環境にてNMZ.head.jaの中の
<input type="submit" name="submit" value="search!">
を
<input type="submit" name="submit" value="検索">
に変更したところ
namazu.exeのCGIでの応答が
========================================
全文検索システム

現在、 10,183 の文書がインデックス化され、 224,353 個の
========================================
で止まってしまいます。

元に戻したところ、止まることなく動作しました。

とりあえず"search!"で運用はする予定ですが、漢字にして
くれとの要望もあるので、対処方法があれば教えて頂きたく
思います。

namazurcとNMZ.head.jaを添付します。
NMZ.head.jaは更に手を入れてますが、上記の箇所を変更
すると動作しない・元に戻すと問題ないのは同様です。

環境変数LANGはja_JP.SJISに設定されています。
またNMZ.head.jaはEUC-JPで保存されています。

-----NMZ.head.ja-----
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
        "http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<!-- LINK-REV-MADE -->
<link rev=made href="mailto:webmaster@xxxxxxxxxx">
<!-- LINK-REV-MADE -->
<title>Namazu a full text retrieval search system</title>
<style type="text/css"><!--
  strong.keyword { color: Red; }
  p.example      { text-indent: 1em;
                   color: Navy;
           font-weight: bold;
                   font-family: monospace; }
  code           { color: Navy;
                   font-family: monospace; }
  code.example   { color: Navy;
           font-weight: bold;
                   font-family: monospace; }
  code.operator  { color: Navy;
                   font-family: monospace;
           font-weight: bold; }
--></style>
</head>
<BODY BGCOLOR="#FFFFFF" LANG="ja">
<H2><I><IMG SRC="/Ani_055.gif">全文検索システム</I></H2>
<P>
<p>
現在、<!-- FILE --> 10,183 <!-- FILE --> の文書がインデックス化され、
<!-- KEY --> 224,353 <!-- KEY --> 個のキーワードが登録されています。
</p>
<p>
<strong>インデックスの最終更新日: <!-- DATE --> 2000-09-28 <!-- DATE
--></strong>
</p>
<hr>
<form method="get" action="{cgi}">
<p>
<table border><tr><td bgcolor="#F0D0FF">
<strong>検索キーワード・式:</strong>
</td><td>
<!--
<STRONG>検索式:</STRONG>-->
<input type="text" name="query" size="40">
</td><td>
<input type="submit" name="submit" value="検索">
</td></tr></table>
</p>
<a href="{cgi}">[検索方法]</a>
<p>
<strong>表示件数:</strong>
<select name="max">
<option value="10">10
<option selected value="20">20
<option value="30">30
<option value="50">50
<option value="100">100
</select>
<strong>表示形式:</strong>
<select name="result">
<option selected value="normal">標準
<option value="short">簡潔
</select>
<strong>ソート:</strong>
<select name="sort">
<option selected value="score">スコア
<option value="date:late">日付 (新しい順)
<option value="date:early">日付 (古い順)
<option value="field:subject:ascending">題名 (昇順)
<option value="field:subject:descending">題名 (降順)
<option value="field:from:ascending">著者 (昇順)
<option value="field:from:descending">著者 (降順)
<option value="field:size:ascending">サイズ (昇順)
<option value="field:size:descending">サイズ (降順)
<option value="field:uri:ascending">URI (昇順)
<option value="field:uri:descending">URI (降順)
</select>
</p>
</form>
----------
-----namazurc-----
# This is a Namazu configuration file for namazu or namazu.cgi.
#
#  Originally, this file is named 'namazurc-sample'.  so you should
#  copy this to 'namazurc' to make the file effective.
#
#  Each item is must be separated by one or more SPACE or TAB
characters.
#  You can use a double-quoted string for represanting a string which
#  contains SPACE or TAB characters like "foo bar baz".


##
## Index: Specify the default directory.
##
Index         /usr/local/namazu2index/
# Template: Set the template directory containing
## NMZ.{head,foot,body,tips,result} files.
##
#Template      /usr/local/var/namazu/index


##
## Replace: Replace TARGET with REPLACEMENT in URIs in search
## results.
##
## TARGET is specified by perl-like regular expressions.
## You can caputure sub-strings in TARGET by surrounding them
## with `(' and `)'and use them later as backreferences by
## \1, \2, \3,... \9.
##
## To use meta characters literally such as `*', `+', `?', `|',
## `[', `]', `{', `}', `(', `)', escape them with `\'.
##
## e.g.,
##
##    Replace  /home/foo/public_html/   http://www.foobar.jp/~foo/
##    Replace  /home/(.*)/public_html/  http://www.foobar.jp/\1/
##    Replace   /C\|/foo/               http://www.foobar.jp/
##
## If you do not want to do the processing on command line use,
## run namazu with -U option.
##
#Replace       /home/foo/public_html/  http://www.foo.bar.jp/~foo/


Replace /C\|/usr/local/etc/httpd/cgi-bin/www/ http://
Replace /e\|/ http://

##
## Logging: Set OFF to turn off keyword logging to NMZ.slog.
## Default is ON.
##
#Logging       off


##
## Lang: Set the locale code such as `ja_JP.eucJP', `ja_JP.SJIS',
## `de', etc.  This directive works only if the environment
## variable LANG is not set because the directive is mainly
## intended for CGI use.  On the shell, You can set
## environemtnt variable LANG instead of using the directive.
##
## If you set `de' to it, namazu.cgi use
## NMZ.(head|foot|body|tips|results).de for displaying results
## and use a proper message catalog for `de'.
##
Lang          ja_JP.SJIS


##
## Scoring: Set the scoring method "tfidf" or "simple".
##
#Scoring       tfidf


##
## EmphasisTags: Set the pair of html elements which is used in
## keyword emphasizing for search results.
##
#EmphasisTags  "<strong class=\"keyword\">"   "</strong>"
#EmphasisTags  "<b>keyword"   "</b>"
----------

--
+---------+---------+---------
東芝エンジニアリング株式会社
第二システム開発部 第一担当
今石 正夫

TEL:042-330-6419
FAX:042-333-0281




--
+---------+---------+---------
東芝エンジニアリング株式会社
第二システム開発部 第一担当
今石 正夫

TEL:042-330-6419
FAX:042-333-0281