orthograph, mostly in comments, also man pages

This commit is contained in:
Jean-Francois Dockes 2019-10-18 09:13:10 +02:00
parent 6d2454aedb
commit c11cac2868
11 changed files with 13 additions and 13 deletions

View File

@ -79,7 +79,7 @@ DEF_CSTR(dj_keyipath, "ipath");
DEF_CSTR(dj_keyfn, "filename");
DEF_CSTR(dj_keyauthor, "author");
DEF_CSTR(dj_keymd, "modificationdate");
// charset and mimetype are explicitely blocked from going into the doc meta
// charset and mimetype are explicitly blocked from going into the doc meta
DEF_CSTR(dj_keycharset, "charset");
DEF_CSTR(dj_keymt, "mimetype");

View File

@ -92,7 +92,7 @@ bool unaciscapital(const string& in)
// sharp s folds to ss but lowercases to itself, and greek final sigma
// folds to sigma. So an input containing one of these characters
// would wrongly detected as containing upper case. We now handle a
// few special cases explicitely, by folding them before performing
// few special cases explicitly, by folding them before performing
// the lowercasing. There are actually quite a few other cases of
// lowercase being transformed by casefolding, check Unicode
// CaseFolding.txt for occurrences of SMALL. One more step towards

View File

@ -311,7 +311,7 @@ fi
LIBXAPIAN=`$XAPIAN_CONFIG --libs`
# The --static thing fails with older Xapians. Happily enough they don't
# need it either (because there are no needed libraries (no uuid and we
# deal explicitely with libz)
# deal explicitly with libz)
LIBXAPIANSTATICEXTRA=`$XAPIAN_CONFIG --static --libs 2> /dev/null`
# Workaround for problem in xapian-config in some versions: wrongly lists
# libstdc++.la in the lib list

View File

@ -61,7 +61,7 @@ embedded spaces can be quoted with double-quotes.
Space-separated list of files or
directories to recursively index. Default to ~ (indexes
$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
.BI "monitordirs = "string
Space-separated list of files or directories to monitor for
@ -117,12 +117,12 @@ filesystem paths. Must be defined at the top level of the configuration
file, not in a subsection. Can contain files and directories. The database and
configuration directories will automatically be added. The expressions
are matched using 'fnmatch(3)' with the FNM_PATHNAME flag set by
default. This means that '/' characters must be matched explicitely. You
default. This means that '/' characters must be matched explicitly. You
can set 'skippedPathsFnmPathname' to 0 to disable the use of FNM_PATHNAME
(meaning that '/*/dir3' will match '/dir1/dir2/dir3'). The default value
contains the usual mount point 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 gets erased on unmount). Explicitely
gets indexed on mount, all data gets erased on unmount). Explicitly
adding '/media/xxx' to the 'topdirs' variable will override
this.
.TP

View File

@ -74,7 +74,7 @@ ConfIndexer::~ConfIndexer()
// Determine if this is likely the first time that the user runs
// indexing. We don't look at the xapiandb as this may have been
// explicitely removed for valid reasons, but at the indexing status
// explicitly removed for valid reasons, but at the indexing status
// file, which should be unexistant-or-empty only before any indexing
// has ever run
bool ConfIndexer::runFirstIndexing()

View File

@ -875,7 +875,7 @@ int main(int argc, char **argv)
LOGINFO("recollindex: reexecuting with -n after initial full "
"pass\n");
// Note that -n will be inside the reexec when we come
// back, but the monitor will explicitely strip it before
// back, but the monitor will explicitly strip it before
// starting a config change exec to ensure that we do a
// purging pass in this latter case (full restart).
o_reexec->reexec();

View File

@ -254,7 +254,7 @@ void MyHtmlParser::decode_entities(string &s)
}
// Compress whitespace and suppress newlines
// Note that we independantly add some newlines to the output text in the
// Note that we independently add some newlines to the output text in the
// tag processing code. Like this, the preview looks a bit more like what a
// browser would display.
// We keep whitespace inside <pre> tags

View File

@ -617,7 +617,7 @@
<item>
<widget class="QCheckBox" name="snipwByPageCB">
<property name="text">
<string>Sort snippets by page number (default: by weigth).</string>
<string>Sort snippets by page number (default: by weight).</string>
</property>
<property name="checked">
<bool>false</bool>

View File

@ -266,7 +266,7 @@ private:
* - Other program state: application-dependant. Any external cleanup
* (temp files etc.) must be performed by the application. ReExec()
* duplicates the atexit() function to make this easier, but the
* ReExec().atexit() calls must be done explicitely, this is not automatic
* ReExec().atexit() calls must be done explicitly, this is not automatic
*
* In short, this is usable in reasonably controlled situations and if there
* are no security issues involved, but this does not perform miracles.

View File

@ -117,7 +117,7 @@ class FsTreeWalker {
/** Set the ignored paths list */
bool setSkippedPaths(const vector<string> &patterns);
/** Test if path/name should be skipped. This can be used independantly of
/** Test if path/name should be skipped. This can be used independently of
* an actual tree walk */
bool inSkippedPaths(const string& path, bool ckparents = false);
bool inSkippedNames(const string& name);

View File

@ -105,7 +105,7 @@ copyqt()
export PATH
$QTBIN/windeployqt recoll.exe
# Apparently because the webkit part was grafted "by hand" on the
# Qt set, we need to copy some dll explicitely
# Qt set, we need to copy some dll explicitly
addlibs="Qt5Core.dll Qt5Multimedia.dll \
Qt5MultimediaWidgets.dll Qt5Network.dll Qt5OpenGL.dll \
Qt5Positioning.dll Qt5PrintSupport.dll Qt5Sensors.dll \