59 lines
2.7 KiB
HTML
Raw Permalink Normal View History

<html>
<head>
<meta charset="utf-8">
<title>List server busy. Full digest rescheduled.</title>
<link rel="stylesheet" href="{{ url_for('static',filename='fonts.css') }}">
<link rel="stylesheet" href="{{ url_for('static',filename='lestyle.css') }}">
<script type="text/javascript" src="{{ url_for('static',filename='jquery-3.2.1.min.js') }}" charset="utf-8"></script>
<script type="text/javascript" src="{{ url_for('static',filename='search.js') }}"></script>
</head>
<body>
<h1><div class="cor">List server busy. Full digest rescheduled.</div></h1>
<form action="/search" method="get" id="search">
<label>keyword: </label><input type="search" name="keyword">
<select form="search" name="field">
<option value="content">content</option>
<option value="from">from</option>
</select>
<input type="submit" value="search" id="submit">
<input type="button" value=" ? " id="info">
<div id="loading">Loading...</div>
</form>
<div id="info-search" style="display: none">
<table><tbody><tr><th>Operator</th><th> </th></tr>
<tr><td>+</td><td>The word is mandatory in all text returned.</td></tr>
<tr><td>-</td><td>The word cannot appear in any text returned.</td></tr>
<tr><td>&lt;</td><td>The word that follows has a lower relevance than other words, although text containing it will still match</td></tr>
<tr><td>&gt;</td><td>The word that follows has a higher relevance than other words.</td></tr>
<tr><td>()</td><td>Used to group words into subexpressions.</td></tr>
<tr><td>~</td><td>The word following contributes negatively to the relevance of the text (which is different to the '-' operator, which specifically excludes the word, or the '&lt;' operator, which still causes the word to contribute positively to the relevance of the text.</td></tr>
<tr><td>*</td><td>The wildcard, indicating zero or more characters. It can only appear at the end of a word.</td></tr>
<tr><td>"</td><td>Anything enclosed in the double quotes is taken as a whole (so you can match phrases, for example).</td></tr>
</tbody></table>
</div>
<div id="results"></div>
<hr>
<hr>
<hr>
<div id="index">
{% for term, refs in index.items() %}
<div class="keyword-index">
<term>{{term}}</term>
{% for r in refs %}
<ref>{% if r.url != 'n/a' %}<a href="{{r.url}}">{{r.nbr}}</a>{% else %}{{r.nbr}}{% endif %}</ref>{% if not loop.last %}, {% endif %}
{% endfor %}
</div>
{% endfor %}
</div>
<hr>
<hr>
<hr>
<div id="footer">
List server busy. Full digest rescheduled.<br>
A compendium of listserv discussions & divagations 1995-2019<br>
Assembled by <a href="http://le-club-des-sans-sujets.org">David Gauthier (Le Club des Sans Sujets)</a><br>
Produced in collaboration with <a href="http://torquetorque.net">Torque</a>
</div>
</body>
</html>