> Hi,
>
> I am using version 3.1.5 of htdig and I am wondering about two
> things:
>
> 1) Is it somehow possible to convert the annoying %20 into a space
> in the bold written title of each search result? Documents like
> this
> 'PDF Document
> The%20Creation%20Of%20A%20Knowledge%20Management%20Process%20Model.pdf'
> are hard and hardly to read. I would appreciate very much to
> convert the %20 within this string (not the URL) into a space.
>

If you are using doc2html.pl to index PDF files, then you need this addition
which I emailed to this list a few days ago:

After

  $Name = $URL;
  $Name =~ s#^.*/##;

add

  $Name =~ s/%([A-F0-9][A-F0-9])/pack("C", hex($1))/gie;

and re-index.

A similar change should work with the other external parser/converter Perl
scripts.

> 2) When I have more than 100 results, how can I access results >
> 100?
>

There is a config. file attribute to change the number of results returned
per page, increase it to (say) 20.

> Ren�
> --
> Bremen Institute of Industrial Technology and
> Applied Work Science (BIBA)
>
> Phone:  +49 (0)421 218 5568
>
--
David Adams
Computing Services
Southampton University



_______________________________________________
htdig-general mailing list <[EMAIL PROTECTED]>
To unsubscribe, send a message to <[EMAIL PROTECTED]> with a 
subject of unsubscribe
FAQ: http://htdig.sourceforge.net/FAQ.html

Reply via email to