-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchTips.html
More file actions
51 lines (46 loc) · 2.37 KB
/
searchTips.html
File metadata and controls
51 lines (46 loc) · 2.37 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
42
43
44
45
46
47
48
49
50
51
<div class="panel panel-default collapse" id="searchTips">
<div class="panel-body">
<h3 class="panel-title">Search Tips</h3>
<p>Use the <a href="search.html">advanced search</a> to search specific fields or combine multiple criteria.</p>
<h4>Search Fields</h4>
<p>The advanced search allows you to search in specific fields:</p>
<ul>
<li><strong>Keyword:</strong> Searches all text content (title, full text, persons, places, uris)</li>
<li><strong>Person Name:</strong> Searches only person names mentioned in entries</li>
<li><strong>Place Name:</strong> Searches only place names mentioned in entries</li>
<li><strong>URI:</strong> Searches entry URIs</li>
</ul>
<h4>Combining Search Terms</h4>
<p>When using multiple search fields together, results must match ALL specified criteria.</p>
<div class="indent">
<p>For example, searching for:
<ul>
<li>Keyword: "monastery"</li>
<li>Place Name: "Mosul"</li>
</ul>
returns only entries about monasteries that mention Mosul.</p>
</div>
<h4>Search Examples</h4>
<div class="indent">
<p>Search for entries about a specific person:
<div class="btn-group code-grp" role="group" style="width:100%;">
<span class="btn code">Person Name: Ephrem</span>
<a href="/search.html?persName=Ephrem" type="button" class="btn btn-primary">
<span class="glyphicon glyphicon-search"/>
</a>
</div>
</p>
<p>Search for entries mentioning a place:
<div class="btn-group code-grp" role="group" style="width:100%;">
<span class="btn code">Place Name: Edessa</span>
<a href="/search.html?placeName=Edessa" type="button" class="btn btn-primary">
<span class="glyphicon glyphicon-search"/>
</a>
</div>
</p>
</div>
<p class="bg-info" style="padding:.5em;">
<small>Note: Searches are case-insensitive and match partial words. Results are paginated with 20 entries per page.</small>
</p>
</div>
</div>