comments and doc
This commit is contained in:
parent
4113397f49
commit
297ff2d225
@ -479,24 +479,32 @@ recoll
|
|||||||
<sect1 id="rcl.indexing.beaglequeue">
|
<sect1 id="rcl.indexing.beaglequeue">
|
||||||
<title>Using Beagle WEB browser plugins</title>
|
<title>Using Beagle WEB browser plugins</title>
|
||||||
|
|
||||||
<para><application>Beagle</application> is a concurrent desktop
|
<para><application>Beagle</application> is (was?) a concurrent desktop
|
||||||
indexer, built on Lucene and the Mono project (C#), for which a
|
indexer, built on Lucene and the Mono project (C#), for which a
|
||||||
number of add-on browser plugins were written. These work by
|
number of add-on browser plugins were written. These work by
|
||||||
copying visited web pages to an indexing queue directory, which the
|
copying visited web pages to an indexing queue directory, which the
|
||||||
indexer then processes.</para>
|
indexer then processes. Especially, there is a
|
||||||
|
<application>Firefox</application> extension.</para>
|
||||||
|
|
||||||
<para>If, for any reason, you so happen to prefer &RCL; to
|
<para>If, for any reason, you so happen to prefer &RCL; to
|
||||||
<application>Beagle</application>, you can still use
|
<application>Beagle</application>, you can still use the
|
||||||
the browser plugins (they are written in Javascript and completely
|
<application>Firefox</application> plugin, which is written in
|
||||||
independant of C#, Beagle, Lucene...). &RCL; can process the
|
Javascript and completely independant of C#, Beagle, Lucene..., and
|
||||||
<application>Beagle</application> queue directory. Of course, this
|
set &RCL; to process the <application>Beagle</application> queue
|
||||||
supposes that <application>Beagle</application> is not running,
|
directory. This supposes that <application>Beagle</application> is
|
||||||
else both programs will fight for the same files.</para>
|
not running, else both programs will fight for the same
|
||||||
|
files.</para>
|
||||||
|
|
||||||
<para>This feature can be enabled in the GUI indexing configuration
|
<para>This feature can be enabled in the GUI indexing configuration
|
||||||
panel, or by editing the configuration file (set
|
panel, or by editing the configuration file (set
|
||||||
<literal>processbeaglequeue</literal> to 1).</para>
|
<literal>processbeaglequeue</literal> to 1).</para>
|
||||||
</sect1>
|
|
||||||
|
<para>There are more recent instructions about how to find and
|
||||||
|
install the <application>Firefox</application> extension on the
|
||||||
|
<ulink url="https://bitbucket.org/medoc/recoll/wiki/IndexBeagleWeb">
|
||||||
|
Recoll wiki</ulink>.</para>
|
||||||
|
|
||||||
|
</sect1>
|
||||||
|
|
||||||
<sect1 id="rcl.indexing.periodic">
|
<sect1 id="rcl.indexing.periodic">
|
||||||
<title>Periodic indexing</title>
|
<title>Periodic indexing</title>
|
||||||
|
|||||||
@ -141,9 +141,9 @@ ConfBeaglePanelW::ConfBeaglePanelW(QWidget *parent, ConfNull *config)
|
|||||||
|
|
||||||
ConfLink lnk2(new ConfLinkRclRep(config, "webcachedir"));
|
ConfLink lnk2(new ConfLinkRclRep(config, "webcachedir"));
|
||||||
ConfParamFNW* cp2 =
|
ConfParamFNW* cp2 =
|
||||||
new ConfParamFNW(this, lnk2, tr("Web cache directory name"),
|
new ConfParamFNW(this, lnk2, tr("Web page store directory name"),
|
||||||
tr("The name for a directory where to store the cache "
|
tr("The name for a directory where to store the copies "
|
||||||
"for visited web pages.<br>"
|
"of visited web pages.<br>"
|
||||||
"A non-absolute path is taken relative to the "
|
"A non-absolute path is taken relative to the "
|
||||||
"configuration directory."), true);
|
"configuration directory."), true);
|
||||||
cp2->setEnabled(cp1->m_cb->isChecked());
|
cp2->setEnabled(cp1->m_cb->isChecked());
|
||||||
@ -152,7 +152,7 @@ ConfBeaglePanelW::ConfBeaglePanelW(QWidget *parent, ConfNull *config)
|
|||||||
|
|
||||||
ConfLink lnk3(new ConfLinkRclRep(config, "webcachemaxmbs"));
|
ConfLink lnk3(new ConfLinkRclRep(config, "webcachemaxmbs"));
|
||||||
ConfParamIntW *cp3 =
|
ConfParamIntW *cp3 =
|
||||||
new ConfParamIntW(this, lnk3, tr("Max. size for the web cache (MB)"),
|
new ConfParamIntW(this, lnk3, tr("Max. size for the web store (MB)"),
|
||||||
tr("Entries will be recycled once the size is reached"),
|
tr("Entries will be recycled once the size is reached"),
|
||||||
-1, 1000);
|
-1, 1000);
|
||||||
cp3->setEnabled(cp1->m_cb->isChecked());
|
cp3->setEnabled(cp1->m_cb->isChecked());
|
||||||
|
|||||||
@ -58,7 +58,12 @@ public:
|
|||||||
|
|
||||||
virtual string getReason();
|
virtual string getReason();
|
||||||
|
|
||||||
enum CreateFlags {CC_CRNONE=0, CC_CRUNIQUE=1, CC_CRTRUNCATE = 2};
|
enum CreateFlags {CC_CRNONE=0,
|
||||||
|
// Unique entries: erase older instances when same udi
|
||||||
|
// is stored.
|
||||||
|
CC_CRUNIQUE=1,
|
||||||
|
// Truncate file (restart from scratch).
|
||||||
|
CC_CRTRUNCATE = 2};
|
||||||
virtual bool create(off_t maxsize, int flags);
|
virtual bool create(off_t maxsize, int flags);
|
||||||
|
|
||||||
enum OpMode {CC_OPREAD, CC_OPWRITE};
|
enum OpMode {CC_OPREAD, CC_OPWRITE};
|
||||||
|
|||||||
@ -89,24 +89,46 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h2><a name="b_1_15_7">recoll 1.15.7</a></h2>
|
<h2><a name="b_1_15_7">recoll 1.15.7</a></h2>
|
||||||
<li>Using search preview while the indexing thread is running will
|
<ul>
|
||||||
sometimes crash the GUI or provoke other strangeness. This is
|
<li>Using the result preview while the indexing thread is
|
||||||
apparently due to insufficient protection of resources shared by
|
running will sometimes crash the GUI or provoke other
|
||||||
several threads. After recent cleanup, the problem occurs quite
|
strangeness. This is apparently due to insufficient
|
||||||
seldom but it is not completely gone. The current and
|
protection of resources shared by several threads. After
|
||||||
unsatisfying workaround, is to avoid the situation, for example
|
recent cleanup, the problem occurs quite seldom but it is
|
||||||
by using the standalone recollindex program instead of the GUI
|
not completely gone. The current and unsatisfying
|
||||||
|
workaround, is to avoid the situation, for example by using
|
||||||
|
the standalone recollindex program instead of the GUI
|
||||||
indexing thread.</li>
|
indexing thread.</li>
|
||||||
|
|
||||||
<li>The GUI preview function sometimes failed with a
|
<li>The GUI preview function sometimes fails with a
|
||||||
non-sensical message about a non-related missing
|
non-sensical message about a non-related missing
|
||||||
helper.</li>
|
helper.</li>
|
||||||
|
|
||||||
<li>The ignored suffixes list (recoll_noindex) is
|
<li>Most operations on the parent document in the result table
|
||||||
ignored in some cases.</li>
|
view are not connected and do nothing.</li>
|
||||||
|
|
||||||
|
<li>The operations on the parent document in the result list
|
||||||
|
right click menu (Preview and Open), do not work, they
|
||||||
|
access the file's parent directory instead.</li>
|
||||||
|
|
||||||
<li>The GUI option to remember sort state between invocations
|
<li>The GUI option to remember sort state between invocations
|
||||||
only works for sort by date.</li>
|
only works for sort by date.</li>
|
||||||
|
|
||||||
|
<li>The rclzip filter can't handle utf-8 in path names for archive
|
||||||
|
members. An <a href="http://www.recoll.org/filters/rclzip">
|
||||||
|
updated filter</a> is available. </li>
|
||||||
|
|
||||||
|
<li>The rclzip and rclchm filters can't handle archive members
|
||||||
|
with a colon (':') in the file name or path. The files are normally
|
||||||
|
indexed and can be searched for, but they can't be displayed
|
||||||
|
(neither opened nor previewed). There is a
|
||||||
|
<a href="https://bitbucket.org/medoc/recoll/changeset/3751ea8ea179">
|
||||||
|
patch</a> which fixes the issue (then needs full reindex for these
|
||||||
|
files).</li>
|
||||||
|
|
||||||
|
<li>The ignored suffixes list (recoll_noindex) is itself
|
||||||
|
ignored in some cases.</li>
|
||||||
|
|
||||||
|
|
||||||
<li>The man filter creates groff temporary png files in the
|
<li>The man filter creates groff temporary png files in the
|
||||||
home directory.</li>
|
home directory.</li>
|
||||||
@ -120,31 +142,17 @@
|
|||||||
user ends the section at this point.</li>
|
user ends the section at this point.</li>
|
||||||
|
|
||||||
<li>Starting the indexing thread inside the GUI while another
|
<li>Starting the indexing thread inside the GUI while another
|
||||||
indexer (batch or real-time) was active would silently
|
indexer (batch or real-time) is active will silently
|
||||||
failed. It should show an error dialog.</li>
|
failed. It should show an error dialog.</li>
|
||||||
|
|
||||||
<li>When an open error occurs on an external index while
|
<li>When an open error occurs on an external index while
|
||||||
starting the GUI, the initial indexing dialog is started,
|
starting the GUI, the initial indexing dialog is started,
|
||||||
which is incorrect because it cannot fix the problem.</li>
|
which is incorrect because it cannot fix the problem.</li>
|
||||||
|
|
||||||
<li>The operations on the parent document in the result list
|
<li>The result table row height is not adjusted according to
|
||||||
right click menu (Preview and Open), do not work, they
|
default font size, and the vertical position of text in cells
|
||||||
access the file's parent directory instead.</li>
|
is often bad.</li>
|
||||||
|
</ul>
|
||||||
<li>Most operations on the parent document in the result table
|
|
||||||
view are not connected and do nothing.</li>
|
|
||||||
|
|
||||||
<li>The rclzip filter can't handle utf-8 in path names for archive
|
|
||||||
members. An <a href="http://www.recoll.org/filters/rclzip">
|
|
||||||
updated filter</a> is available. </li>
|
|
||||||
|
|
||||||
<li>The rclzip and rclchm filters can't handle archive members
|
|
||||||
with a colon (':') in the file name or path. The files are normally
|
|
||||||
indexed and can be searched for, but they can't be displayed
|
|
||||||
(neither opened nor previewed). There is a
|
|
||||||
<a href="https://bitbucket.org/medoc/recoll/changeset/3751ea8ea179">
|
|
||||||
patch</a> which fixes the issue (then needs full reindex for these
|
|
||||||
files).</li>
|
|
||||||
|
|
||||||
|
|
||||||
<h2><a name="b_1_15_5">recoll 1.15.5</a></h2>
|
<h2><a name="b_1_15_5">recoll 1.15.5</a></h2>
|
||||||
|
|||||||
@ -72,9 +72,6 @@
|
|||||||
etc.).</li>
|
etc.).</li>
|
||||||
<li>Estimated result counts are displayed in the
|
<li>Estimated result counts are displayed in the
|
||||||
status line.</li>
|
status line.</li>
|
||||||
<li>Set row height according to default font size, and better
|
|
||||||
adjust row height and vertical text position in
|
|
||||||
cells.</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user