Hi Bill, Jose,
The DOS/WIN problem of Klaus can only be solved with a small fix (IMO).
> FileFilter .pdf pdftotext.exe "%p -"
> FileFilter .pdf pdftotext.exe ""%p" -" (this cannot work)
==> FileFilter .pdf pdftext.exe '"%p%" -'
To accept this, getword() [string.c] has to be altered in one line:
> if (*s == '\"')
> quotechar = *s++;
to
> // -- accept and use ' & " as starting quotechar
> if (*s == '\"' || *s == '\'')
> quotechar = *s++;
Please try this, I don't want to change the CVS, because I have not updated
since last week (and currently no time to do a test of the changes).
This fix will change the complete behavior of config parameters (means: '
will be
a valid starting quoting char, too). I case this works, a hint in the docs
would
als be fine ;-)
cu - rainer
> -----Original Message-----
> From: Klaus Hollenbach [mailto:hollenbach@scholze.de]
> Sent: Friday, November 09, 2001 9:47 AM
> To: Multiple recipients of list
> Subject: [SWISH-E] Filters on WinNT - filter options
>
>
> I'm using the FileFilter in Swish-e v.2.1 dev.24 (on WinNT 4.0) as
> described in
> http://swish-e.org/2.2/docs/SWISH-CONFIG.html#Document_Filter_
> Directives
>
> I use pdftotext.exe to index pdf-files, so my
> FileFilter-directive looks
> like this:
>
> FileFilter .pdf pdftotext.exe "%p -"
>
> When pdftotext comes across a pdf-file contanining blanks, it won't
> execute unless it gets fed with the filename enclosed in double quotes
> (").
>
> Is there any way to tell swish-e to pass the filename in
> double quotes?
> I tried the following:
>
> FileFilter .pdf pdftotext.exe ""%p" -"
>
> but the filename seems to arrive in single quotes (') at pdftotext,
> since pdftotext complains that it cannot find 'filename with
> blanks.pdf'. Is swish-e translating double quotes (") to single quotes
> (') in the file filter directive? Can that be avoided?
>
---------------------------------------------------------
This Mail has been checked for Viruses
Attention: Encrypted mails can NOT be checked!
**
Diese Mail wurde auf Viren geprueft
Hinweis: Verschluesselte mails koennen NICHT auf Viren geprueft werden!
---------------------------------------------------------
Received on Fri Nov 9 14:10:53 2001