web
This commit is contained in:
parent
6bf210a0c3
commit
06b414cfc6
@ -105,6 +105,10 @@
|
|||||||
<div class="news">
|
<div class="news">
|
||||||
|
|
||||||
<dl>
|
<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
|
<dt>2017-05-15</dt><dd>Release 1.23.2. This fixes a couple
|
||||||
of quite serious bugs. See
|
of quite serious bugs. See
|
||||||
the <a href="release-1.23.html">Release notes</a></dd>
|
the <a href="release-1.23.html">Release notes</a></dd>
|
||||||
|
|||||||
@ -3,7 +3,7 @@ Jean-Francois Dockes <jf at dockes.org>
|
|||||||
:date:
|
:date:
|
||||||
|
|
||||||
:recollversion: 1.23.0-2017-01-07-78b8ad
|
:recollversion: 1.23.0-2017-01-07-78b8ad
|
||||||
:windir: downwin-7ae11
|
:windir: downwin-b4615
|
||||||
|
|
||||||
image:recoll-windows10-thumb.png[link="recoll-windows10.png"]
|
image:recoll-windows10-thumb.png[link="recoll-windows10.png"]
|
||||||
|
|
||||||
|
|||||||
@ -926,6 +926,46 @@ result list, and how they are formatted.</p></div>
|
|||||||
|
|
||||||
</table></code></pre>
|
</table></code></pre>
|
||||||
</div></div>
|
</div></div>
|
||||||
|
<div class="paragraph"><p>And the result list header (Preferences > GUI configuration >
|
||||||
|
Result List > Result Page HTML header insert):</p></div>
|
||||||
|
<div class="listingblock">
|
||||||
|
<div class="content">
|
||||||
|
<pre><code><!-- 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 --></code></pre>
|
||||||
|
</div></div>
|
||||||
<div class="paragraph"><p>There are
|
<div class="paragraph"><p>There are
|
||||||
<a href="https://bitbucket.org/medoc/recoll/wiki/ResultsThumbnails">various
|
<a href="https://bitbucket.org/medoc/recoll/wiki/ResultsThumbnails">various
|
||||||
methods for creating the thumbnails</a>; the ones here were made by opening
|
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">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2017-05-23 09:26:52 CEST
|
2017-05-24 11:10:15 CEST
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@ -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
|
There are
|
||||||
link:https://bitbucket.org/medoc/recoll/wiki/ResultsThumbnails[various
|
link:https://bitbucket.org/medoc/recoll/wiki/ResultsThumbnails[various
|
||||||
methods for creating the thumbnails]; the ones here were made by opening
|
methods for creating the thumbnails]; the ones here were made by opening
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user