This commit is contained in:
Jean-Francois Dockes 2017-05-24 11:12:50 +02:00
parent 6bf210a0c3
commit 06b414cfc6
4 changed files with 89 additions and 2 deletions

View File

@ -105,6 +105,10 @@
<div class="news">
<dl>
<dt>2017-05-23</dt><dd>Releaase 1.23.2 has gotten much
better at <a href="recoll_XMP">processing PDF XMP
data</a>.</dd>
<dt>2017-05-15</dt><dd>Release 1.23.2. This fixes a couple
of quite serious bugs. See
the <a href="release-1.23.html">Release notes</a></dd>

View File

@ -3,7 +3,7 @@ Jean-Francois Dockes <jf at dockes.org>
:date:
:recollversion: 1.23.0-2017-01-07-78b8ad
:windir: downwin-7ae11
:windir: downwin-b4615
image:recoll-windows10-thumb.png[link="recoll-windows10.png"]

View File

@ -926,6 +926,46 @@ result list, and how they are formatted.</p></div>
&lt;/table&gt;</code></pre>
</div></div>
<div class="paragraph"><p>And the result list header (Preferences &gt; GUI configuration &gt;
Result List &gt; Result Page HTML header insert):</p></div>
<div class="listingblock">
<div class="content">
<pre><code>&lt;!-- Custom Header --&gt;
&lt;script type="text/javascript"&gt;
function altRows() {
var rows = document.getElementsByClassName("rclresult");
for (i = 0; i &lt; rows.length; i++) {
if (i % 2 == 0) {
rows[i].style.backgroundColor = "#f0f0f0";
}
}
}
window.onload = function() {
altRows();
}
&lt;/script&gt;
&lt;style type="text/css"&gt;
a:link {
color: #004070;
text-decoration: none;
}
a:visited {
color: #004070;
text-decoration: none;
}
a:hover {
color: #0050a0;
text-decoration: none;
}
a:active {
color: #005080;
text-decoration: none;
}
&lt;/style&gt;
&lt;!-- End of Custom Header --&gt;</code></pre>
</div></div>
<div class="paragraph"><p>There are
<a href="https://bitbucket.org/medoc/recoll/wiki/ResultsThumbnails">various
methods for creating the thumbnails</a>; the ones here were made by opening
@ -1157,7 +1197,7 @@ author = xesam:author</code></pre>
<div id="footer">
<div id="footer-text">
Last updated
2017-05-23 09:26:52 CEST
2017-05-24 11:10:15 CEST
</div>
</div>
</body>

View File

@ -185,6 +185,49 @@ Edit this using the Recoll GUI: Preferences > GUI configuration >
----
And the result list header (Preferences > GUI configuration >
Result List > Result Page HTML header insert):
----
<!-- Custom Header -->
<script type="text/javascript">
function altRows() {
var rows = document.getElementsByClassName("rclresult");
for (i = 0; i < rows.length; i++) {
if (i % 2 == 0) {
rows[i].style.backgroundColor = "#f0f0f0";
}
}
}
window.onload = function() {
altRows();
}
</script>
<style type="text/css">
a:link {
color: #004070;
text-decoration: none;
}
a:visited {
color: #004070;
text-decoration: none;
}
a:hover {
color: #0050a0;
text-decoration: none;
}
a:active {
color: #005080;
text-decoration: none;
}
</style>
<!-- End of Custom Header -->
----
There are
link:https://bitbucket.org/medoc/recoll/wiki/ResultsThumbnails[various
methods for creating the thumbnails]; the ones here were made by opening