Switch to unified view

a/src/INSTALL b/src/INSTALL
...
...
159
     * ICS: up to Recoll 1.13, iCalendar files need Python and the icalendar
159
     * ICS: up to Recoll 1.13, iCalendar files need Python and the icalendar
160
       module. icalendar is not needed for newer versions, which use internal
160
       module. icalendar is not needed for newer versions, which use internal
161
       code.
161
       code.
162
162
163
     * Zip archives need Python (and the standard zipfile module).
163
     * Zip archives need Python (and the standard zipfile module).
164
165
     * Rar archives need Python, the rarfile Python module and the unrar
166
       utility.
164
167
165
     * Midi karaoke files need Python and the Midi module
168
     * Midi karaoke files need Python and the Midi module
166
169
167
     * Konqueror webarchive format with Python (uses the Tarfile module).
170
     * Konqueror webarchive format with Python (uses the Tarfile module).
168
171
...
...
642
   logfilename, daemlogfilename
645
   logfilename, daemlogfilename
643
646
644
           Where the messages should go. 'stderr' can be used as a special
647
           Where the messages should go. 'stderr' can be used as a special
645
           value, and is the default. The daemversion is specific to the
648
           value, and is the default. The daemversion is specific to the
646
           indexing monitor daemon.
649
           indexing monitor daemon.
650
651
   mondelaypatterns
652
653
           This allows specify wildcard path patterns (processed with
654
           fnmatch(3) with 0 flag), to match files which change too often and
655
           for which a delay should be observed before re-indexing. This is a
656
           space-separated list, each entry being a pattern and a time in
657
           seconds, separated by a colon. You can use double quotes if a path
658
           entry contains white space. Example:
659
660
 mondelaypatterns = *.log:20 "this one has spaces*:10"
661
             
662
663
   monixinterval
664
665
           Minimum interval (seconds) for processing the indexing queue. The
666
           real time monitor does not process each event when it comes in,
667
           but will wait this time for the queue to accumulate to diminish
668
           overhead and in order to aggregate multiple events to the same
669
           file. Default 30 S.
670
671
   monauxinterval
672
673
           Period (in seconds) at which the real time monitor will regenerate
674
           the auxiliary databases (spelling, stemming) if needed. The
675
           default is one hour.
647
676
648
   filtermaxseconds
677
   filtermaxseconds
649
678
650
           Maximum filter execution time, after which it is aborted. Some
679
           Maximum filter execution time, after which it is aborted. Some
651
           postscript programs just loop...
680
           postscript programs just loop...