Fixed orthographic and other small issues found by Debian packaging
This commit is contained in:
parent
123d5b36ad
commit
7cefd893cd
@ -661,9 +661,10 @@ dist_man1_MANS = doc/man/recoll.1 doc/man/recollq.1 doc/man/recollindex.1
|
|||||||
dist_man5_MANS = doc/man/recoll.conf.5
|
dist_man5_MANS = doc/man/recoll.conf.5
|
||||||
|
|
||||||
dist-hook:
|
dist-hook:
|
||||||
|
(cd $(top_srcdir); find . \
|
||||||
|
\( -name '*.pyc' -o -name '#*' -o -name '*~' \) -delete)
|
||||||
modified=`hg status | \
|
modified=`hg status | \
|
||||||
grep -v /$(distdir)/|egrep -v 'debianunitysco|packaging|website'`; \
|
grep -v /$(distdir)/|egrep -v 'debianunitysco|packaging|website'`; \
|
||||||
if test ! -z "$$modified"; then \
|
if test ! -z "$$modified"; then \
|
||||||
echo Local directory is modified: $$modified ; exit 1; fi
|
echo Local directory is modified: $$modified ; exit 1; fi
|
||||||
hg tag -f -m "Release $(VERSION) tagged" RECOLL-$(VERSION)
|
hg tag -f -m "Release $(VERSION) tagged" RECOLL-$(VERSION)
|
||||||
|
|
||||||
|
|||||||
@ -58,7 +58,7 @@ embedded spaces can be quoted with double-quotes.
|
|||||||
Space-separated list of files or
|
Space-separated list of files or
|
||||||
directories to recursively index. Default to ~ (indexes
|
directories to recursively index. Default to ~ (indexes
|
||||||
$HOME). You can use symbolic links in the list, they will be followed,
|
$HOME). You can use symbolic links in the list, they will be followed,
|
||||||
independantly of the value of the followLinks variable.
|
independently of the value of the followLinks variable.
|
||||||
.TP
|
.TP
|
||||||
.BI "skippedNames = "string
|
.BI "skippedNames = "string
|
||||||
Files and directories which should be ignored.
|
Files and directories which should be ignored.
|
||||||
@ -68,9 +68,9 @@ names. The list in the default configuration does not exclude hidden
|
|||||||
directories (names beginning with a dot), which means that it may index
|
directories (names beginning with a dot), which means that it may index
|
||||||
quite a few things that you do not want. On the other hand, email user
|
quite a few things that you do not want. On the other hand, email user
|
||||||
agents like Thunderbird usually store messages in hidden directories, and
|
agents like Thunderbird usually store messages in hidden directories, and
|
||||||
you probably want this indexed. One possible solution is to have '.*' in
|
you probably want this indexed. One possible solution is to have '.*'
|
||||||
'skippedNames', and add things like '~/.thunderbird' '~/.evolution' to
|
in 'skippedNames', and add things like '~/.thunderbird' '~/.evolution'
|
||||||
'topdirs'. Not even the file names are indexed for patterns in this
|
to 'topdirs'. Not even the file names are indexed for patterns in this
|
||||||
list, see the 'noContentSuffixes' variable for an alternative approach
|
list, see the 'noContentSuffixes' variable for an alternative approach
|
||||||
which indexes the file names. Can be redefined for any
|
which indexes the file names. Can be redefined for any
|
||||||
subtree.
|
subtree.
|
||||||
@ -92,12 +92,12 @@ wildcard expressions for filesystem paths. Can contain files and
|
|||||||
directories. The database and configuration directories will
|
directories. The database and configuration directories will
|
||||||
automatically be added. The expressions are matched using 'fnmatch(3)'
|
automatically be added. The expressions are matched using 'fnmatch(3)'
|
||||||
with the FNM_PATHNAME flag set by default. This means that '/' characters
|
with the FNM_PATHNAME flag set by default. This means that '/' characters
|
||||||
must be matched explicitely. You can set 'skippedPathsFnmPathname' to 0
|
must be matched explicitly. You can set 'skippedPathsFnmPathname' to 0
|
||||||
to disable the use of FNM_PATHNAME (meaning that '/*/dir3' will match
|
to disable the use of FNM_PATHNAME (meaning that '/*/dir3' will
|
||||||
'/dir1/dir2/dir3'). The default value contains the usual mount point for
|
match '/dir1/dir2/dir3'). The default value contains the usual mount point
|
||||||
removable media to remind you that it is a bad idea to have Recoll work
|
for removable media to remind you that it is a bad idea to have Recoll work
|
||||||
on these (esp. with the monitor: media gets indexed on mount, all data
|
on these (esp. with the monitor: media gets indexed on mount, all data
|
||||||
gets erased on unmount). Explicitely adding '/media/xxx' to the topdirs
|
gets erased on unmount). Explicitly adding '/media/xxx' to the topdirs
|
||||||
will override this.
|
will override this.
|
||||||
.TP
|
.TP
|
||||||
.BI "skippedPathsFnmPathname = "bool
|
.BI "skippedPathsFnmPathname = "bool
|
||||||
@ -115,7 +115,7 @@ not set, the daemon uses skippedPaths.
|
|||||||
Space-separated list of wildcard expressions for names that should
|
Space-separated list of wildcard expressions for names that should
|
||||||
be ignored inside zip archives. This is used directly by
|
be ignored inside zip archives. This is used directly by
|
||||||
the zip handler, and has a function similar to skippedNames, but works
|
the zip handler, and has a function similar to skippedNames, but works
|
||||||
independantly. Can be redefined for subdirectories. Supported by recoll
|
independently. Can be redefined for subdirectories. Supported by recoll
|
||||||
1.20 and newer. See
|
1.20 and newer. See
|
||||||
https://bitbucket.org/medoc/recoll/wiki/Filtering%20out%20Zip%20archive%20members
|
https://bitbucket.org/medoc/recoll/wiki/Filtering%20out%20Zip%20archive%20members
|
||||||
|
|
||||||
@ -173,8 +173,8 @@ Command used to guess
|
|||||||
MIME types if the internal methods fails This should be a
|
MIME types if the internal methods fails This should be a
|
||||||
"file -i" workalike. The file path will be added as a last parameter to
|
"file -i" workalike. The file path will be added as a last parameter to
|
||||||
the command line. 'xdg-mime' works better than the traditional 'file'
|
the command line. 'xdg-mime' works better than the traditional 'file'
|
||||||
command, and is now the configured default (with a hard-coded fallback to
|
command, and is now the configured default (with a hard-coded fallback
|
||||||
'file')
|
to 'file')
|
||||||
.TP
|
.TP
|
||||||
.BI "processwebqueue = "bool
|
.BI "processwebqueue = "bool
|
||||||
Decide if we process the
|
Decide if we process the
|
||||||
@ -215,10 +215,9 @@ will reduce the index size. This can only be set for a whole index, not
|
|||||||
for a subtree.
|
for a subtree.
|
||||||
.TP
|
.TP
|
||||||
.BI "dehyphenate = "bool
|
.BI "dehyphenate = "bool
|
||||||
Determines if we index
|
Determines if we index 'coworker' also when the input is 'co-worker'.
|
||||||
'coworker' also when the input is 'co-worker'. This is new
|
This is new in version 1.22, and on by default. Setting the variable to off
|
||||||
in version 1.22, and on by default. Setting the variable to off allows
|
allows restoring the previous behaviour.
|
||||||
restoring the previous behaviour.
|
|
||||||
.TP
|
.TP
|
||||||
.BI "nocjk = "bool
|
.BI "nocjk = "bool
|
||||||
Decides if specific East Asian
|
Decides if specific East Asian
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user