-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsearch.html
More file actions
41 lines (37 loc) · 1.94 KB
/
Copy pathsearch.html
File metadata and controls
41 lines (37 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<div xmlns="http://www.w3.org/1999/xhtml" data-template="templates:surround" data-template-with="templates/page-margins.html" data-template-at="container">
<form class="form-inline" action="?">
<h3>
<div>
<label for="search">Search For</label>
<input data-template="templates:form-control" type="string" name="search" value="λαμβ*"/>
<button type="button" class="btn btn-info btn-sm" data-toggle="modal" data-target="#searchInfo">?</button>
</div>
</h3>
<div id="searchInfo" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">x</button>
<h4 class="modal-title">Searching Lace</h4>
</div>
<div class="modal-body">
<p>This search page returns results from all pages in all OCR runs. Therefore, if you have two runs from the of the same set of images, you will get duplicates. Results from each run are grouped together.</p>
<p>Lace search is accent-sensitive but case-insensitive. So καὶ and καί are different, but καὶ and Καὶ are not.</p>
<p>Lace's search is based on the Lucene search engine. It supports:
<ul>
<li>Single character wildcard searches (a good work-around for accents): <code>ξ?λο?ς</code>
</li>
<li>Multiple character wildcard searches: <code>παρακυπτ*</code> and <code>αὐτ*ς</code> (but not <code>*όλεως</code>
</li>
<li>Fuzzy searches: <code>εἰδώλων~</code> returns <code>εἰδώλου</code>, e.g.</li>
<li>Proximity searches: <code>"εἰδώλων ἱερὰ"~10</code> for these within 10 words of each other</li>
</ul>
</p>
</div>
</div>
</div>
</div>
</form>
<div class="app:searchAllCollections?search="/>
</div>