Switch to unified view

a/src/INSTALL b/src/INSTALL
...
...
21
21
22
   4.3. Building from source
22
   4.3. Building from source
23
23
24
   4.4. Configuration overview
24
   4.4. Configuration overview
25
25
26
   4.5. The KDE Kicker Recoll applet
27
26
   4.5. Extending Recoll
28
   4.6. Extending Recoll
27
29
28
                        4.1. Installing a prebuilt copy
30
                        4.1. Installing a prebuilt copy
29
31
30
   Recoll binary packages from the Recoll web site are always linked
32
   Recoll binary packages from the Recoll web site are always linked
31
   statically to the Xapian libraries, and have no other dependencies. You
33
   statically to the Xapian libraries, and have no other dependencies. You
...
...
84
     * MS Excel and PowerPoint: catdoc.
86
     * MS Excel and PowerPoint: catdoc.
85
87
86
     * Wordperfect files: libwpd.
88
     * Wordperfect files: libwpd.
87
89
88
     * RTF: unrtf
90
     * RTF: unrtf
91
92
     * TeX: Recoll uses the untex program. Your distribution may have a
93
       package for it. If it doesn't, there is a copy of the source on the
94
       Recoll web site, because the program has no obvious home. The filter
95
       can also work with detex and will use it if it is installed.
89
96
90
     * dvi: dvips
97
     * dvi: dvips
91
98
92
     * djvu: DjVuLibre
99
     * djvu: DjVuLibre
93
100
...
...
399
           Decide if we use the file -i system command as a final step for
406
           Decide if we use the file -i system command as a final step for
400
           determining the mime type for a file (the main procedure uses
407
           determining the mime type for a file (the main procedure uses
401
           suffix associations as defined in the mimemap file). This can be
408
           suffix associations as defined in the mimemap file). This can be
402
           useful for files with suffix-less names, but it will also cause
409
           useful for files with suffix-less names, but it will also cause
403
           the indexing of many bogus "text" files.
410
           the indexing of many bogus "text" files.
411
412
   indexedmimetypes
413
414
           Recoll normally indexes any file which it knows how to read. This
415
           list lets you restrict the indexed mime types to what you specify.
416
           If the variable is unspecified or the list empty (the default),
417
           all supported types are processed.
404
418
405
   indexallfilenames
419
   indexallfilenames
406
420
407
           Recoll indexes file names in a special section of the database to
421
           Recoll indexes file names in a special section of the database to
408
           allow specific file names searches using wild cards. This
422
           allow specific file names searches using wild cards. This
...
...
436
450
437
           If this is set, the aspell dictionary generation is turned off.
451
           If this is set, the aspell dictionary generation is turned off.
438
           Useful for cases where you don't need the functionality or when it
452
           Useful for cases where you don't need the functionality or when it
439
           is unusable because aspell crashes during dictionary generation.
453
           is unusable because aspell crashes during dictionary generation.
440
454
455
   nocjk
456
457
           If this set to true, specific east asian (Chinese Korean Japanese)
458
           characters/word splitting is turned off. This will save a small
459
           amount of cpu if you have no CJK documents. If your document base
460
           does include such text but you are not interested in searching it,
461
           setting nocjk may be a significant time and space saver.
462
463
   cjkngramlen
464
465
           This lets you adjust the size of n-grams used for indexing CJK
466
           text. The default value of 2 is probably appropriate in most
467
           cases. A value of 3 would allow more precision and efficiency on
468
           longer words, but the index will be approximately twice as large.
469
441
4.4.2. The mimemap file
470
4.4.2. The mimemap file
442
471
443
   mimemap specifies the file name extension to mime type mappings.
472
   mimemap specifies the file name extension to mime type mappings.
444
473
445
   For file names without an extension, or with an unknown one, the system's
474
   For file names without an extension, or with an unknown one, the system's
...
...
558
   You can find more details about writing a Recoll filter in the section
587
   You can find more details about writing a Recoll filter in the section
559
   about writing filters
588
   about writing filters
560
589
561
   --------------------------------------------------------------------------
590
   --------------------------------------------------------------------------
562
591
563
   Prev                               Home                               Next 
592
   Prev                             Home                                 Next 
564
   Building from source                Up                    Extending Recoll 
593
   Building from source              Up          The KDE Kicker Recoll applet