namazu-ml(ring)


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

Re: 英数字を含む日本語 PDFファイルの検索



Michiyo Ohgama <ohgama@xxxxxxxxxxxxxx> wrote:

>>   sub codeconv() {
>>       return 1;
>>   }
>> 
>> に修正すれば解決すると思います。ご報告ありがとうございました。
>
>この通り修正して試してみましたが、今度は
>6ファイル中5ファイルが
>Unable to convert pdf file (maybe copying protection)
>と言われてしまいました。
>修正前は普通にコンバートできていました。

ぼけていました。とりあえず、pdf.pl の

>>   sub codeconv() {
>>       return 1;
>>   }

を元に戻して (return 0 にする)

    gfilter::show_filter_debug_info($cont, $weighted_str,
			   $fields, $headings);
    return undef;

の部分を

    gfilter::show_filter_debug_info($cont, $weighted_str,
			   $fields, $headings);
    codeconv::toeuc($cont);   # この行を追加
    return undef;

に修正すれば解決すると思います。

-- Satoru Takabayashi