Fridolin Somers
36d96180ae
When cataloguing and using authority plugin, there is auto-completion on inputs and default operator is "contains". When using auto-completion and selecting a result it would be logical to set operator "exact". See doc https://api.jqueryui.com/autocomplete/#event-select This patch also adds auto-completion missing on "Search all headings". Test plan: 1) Create a new authority Topical Term with heading "Cart" 2) Create a new authority Topical Term with heading "Carthage" 3) Create a new biblio record 4) Use authority plugin on field 650 5) You see current operator are "contains" 6) Enter "Car" in "Search main heading ($a only):" 7) You see auto-completion showing "Cart" and "Carthage" 8) Click on "Cart" 9) You see operator changes to "is exactly" 10) Submit form to see the results 11) Clear form and repeat 6-9 for the three other inputs Signed-off-by: Michelle Spinney <mspinney@clamsnet.org> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
193 lines
11 KiB
HTML
193 lines
11 KiB
HTML
[% USE Koha %]
|
|
[% PROCESS 'form-blocks.inc' %]
|
|
|
|
<div id="toolbar" class="btn-toolbar">
|
|
<div class="btn-group"><a href="#" id="clear" class="btn btn-default btn-sm"><i class="fa fa-trash-can"></i> Clear field</a></div>
|
|
<div class="btn-group"><a href="#" id="createnew" class="btn btn-default btn-sm"><i class="fa fa-plus"></i> Create new authority</a></div>
|
|
</div>
|
|
<form name="f" method="get" action="auth_finder.pl">
|
|
<input type="hidden" name="source" value="[% source | html %]" />
|
|
<input type="hidden" name="op" value="do_search" />
|
|
<input type="hidden" name="type" value="intranet" />
|
|
<input type="hidden" name="index" value="[% index | html %]" />
|
|
<fieldset class="rows"><legend>Search options</legend>
|
|
<ol><li>
|
|
<span class="label">Authority type: </span>
|
|
[% authtypecode | html %]
|
|
<input type="hidden" name="authtypecode" value="[% authtypecode | html %]" />
|
|
</li>
|
|
<li>
|
|
<label for="mainmainentry">Search main heading ($a only): </label>
|
|
<input type="hidden" name="marclist" value="mainmainentry" />
|
|
<input type="hidden" name="and_or" value="and" />
|
|
<input type="hidden" name="excluding" value="" />
|
|
<select name="operator" id="mainmainentry">
|
|
[% IF ( operator_mainstr == 'contains' ) %]
|
|
<option value="contains" selected="selected">contains</option>
|
|
[% ELSE %]
|
|
<option value="contains">contains</option>
|
|
[% END %]
|
|
[% IF ( operator_mainstr == 'start' ) %]
|
|
<option value="start" selected="selected">starts with</option>
|
|
[% ELSE %]
|
|
<option value="start">starts with</option>
|
|
[% END %]
|
|
[% IF ( operator_mainstr == 'exact' ) %]
|
|
<option value="exact" selected="selected">is exactly</option>
|
|
[% ELSE %]
|
|
<option value="exact">is exactly</option>
|
|
[% END %]
|
|
</select>
|
|
<input id="value_mainstr" style="width:400px;" type="text" name="value_mainstr" value="[% value_mainstr | html %]" />
|
|
<div id="yvaluecontainermainmainentry"></div>
|
|
</li>
|
|
|
|
<li>
|
|
<label for="mainentry">Search main heading: </label>
|
|
<input type="hidden" name="marclist" value="mainentry" />
|
|
<input type="hidden" name="and_or" value="and" />
|
|
<input type="hidden" name="excluding" value="" />
|
|
<select name="operator" id="mainentry">
|
|
[% IF ( operator_main == 'contains' ) %]
|
|
<option value="contains" selected="selected">contains</option>
|
|
[% ELSE %]
|
|
<option value="contains">contains</option>
|
|
[% END %]
|
|
[% IF ( operator_main == 'start' ) %]
|
|
<option value="start" selected="selected">starts with</option>
|
|
[% ELSE %]
|
|
<option value="start">starts with</option>
|
|
[% END %]
|
|
[% IF ( operator_main == 'exact' ) %]
|
|
<option value="exact" selected="selected">is exactly</option>
|
|
[% ELSE %]
|
|
<option value="exact">is exactly</option>
|
|
[% END %]
|
|
</select>
|
|
<input id="value_main" style="width:400px;" type="text" name="value_main" value="[% value_main | html %]" />
|
|
<div id="yvaluecontainermainentry"></div>
|
|
</li>
|
|
<li>
|
|
<label for="marclistheading">Search all headings: </label>
|
|
<input type="hidden" name="marclist" value="match" />
|
|
<input type="hidden" name="and_or" value="and" />
|
|
<input type="hidden" name="excluding" value="" />
|
|
<select name="operator" id="marclistheading">
|
|
[% IF ( operator_match == 'contains' ) %]
|
|
<option value="contains" selected="selected">contains</option>
|
|
[% ELSE %]
|
|
<option value="contains">contains</option>
|
|
[% END %]
|
|
[% IF ( operator_match == 'start' ) %]
|
|
<option value="start" selected="selected">starts with</option>
|
|
[% ELSE %]
|
|
<option value="start">starts with</option>
|
|
[% END %]
|
|
[% IF ( operator_match == 'exact' ) %]
|
|
<option value="exact" selected="selected">is exactly</option>
|
|
[% ELSE %]
|
|
<option value="exact">is exactly</option>
|
|
[% END %]
|
|
</select>
|
|
<input id="value_match" style="width:400px;" type="text" name="value_match" value="[% value_match | html %]" />
|
|
<div id="yvaluecontainermarclistheading"></div>
|
|
</li>
|
|
<li>
|
|
<label for="marclistanywhere">Search entire record: </label>
|
|
<input type="hidden" name="marclist" value="all" />
|
|
<input type="hidden" name="and_or" value="and" />
|
|
<input type="hidden" name="excluding" value="" />
|
|
<select name="operator" id="marclistanywhere">
|
|
[% IF ( operator_any == 'contains' ) %]
|
|
<option value="contains" selected="selected">contains</option>
|
|
[% ELSE %]
|
|
<option value="contains">contains</option>
|
|
[% END %]
|
|
[% IF ( operator_any == 'start' ) %]
|
|
<option value="start" selected="selected">starts with</option>
|
|
[% ELSE %]
|
|
<option value="start">starts with</option>
|
|
[% END %]
|
|
[% IF ( operator_any == 'exact' ) %]
|
|
<option value="exact" selected="selected">is exactly</option>
|
|
[% ELSE %]
|
|
<option value="exact">is exactly</option>
|
|
[% END %]
|
|
</select>
|
|
<input id="value_any" style="width:400px;" type="text" name="value_any" value="[% value_any | html %]" />
|
|
<div id="yvaluecontainermarclist"></div>
|
|
</li>
|
|
<li>
|
|
<label for="orderby">Sort by: </label>
|
|
<select name="orderby" id="orderby">
|
|
[% IF ( orderby == 'HeadingAsc' ) %]
|
|
<option value="HeadingAsc" selected="selected">Heading A-Z</option>
|
|
[% ELSE %]
|
|
<option value="HeadingAsc">Heading A-Z</option>
|
|
[% END %]
|
|
[% IF ( orderby == 'HeadingDsc' ) %]
|
|
<option value="HeadingDsc" selected="selected">Heading Z-A</option>
|
|
[% ELSE %]
|
|
<option value="HeadingDsc">Heading Z-A</option>
|
|
[% END %]
|
|
[% IF ( orderby == '' && op ) %]
|
|
<option value="" selected="selected">None</option>
|
|
[% ELSE %]
|
|
<option value="">None</option>
|
|
[% END %]
|
|
</select>
|
|
</li></ol></fieldset>
|
|
[% IF source == 'auth' %]
|
|
<fieldset class="rows"><legend>Relationship information</legend>
|
|
<ol>
|
|
<li>
|
|
<label for="relationship">Special relationship: </label>
|
|
<select name="relationship" id="relationship">
|
|
[% selected=relationship | html %]
|
|
[% PROCESS selectoptionopen value='' %]None specified</option>
|
|
[% IF Koha.Preference('marcflavour') == 'MARC21' %]
|
|
[% PROCESS selectoptionopen value='a' %]a - Earlier heading</option>
|
|
[% PROCESS selectoptionopen value='b' %]b - Later heading</option>
|
|
[% PROCESS selectoptionopen value='d' %]d - Acronym</option>
|
|
[% PROCESS selectoptionopen value='f' %]f - Musical composition</option>
|
|
[% PROCESS selectoptionopen value='g' %]g - Broader term</option>
|
|
[% PROCESS selectoptionopen value='h' %]h - Narrower term</option>
|
|
[% PROCESS selectoptionopen value='i' %]i - Reference instruction phrase in subfield $i</option>
|
|
[% PROCESS selectoptionopen value='n' %]n - Not applicable</option>
|
|
[% PROCESS selectoptionopen value='r' %]r - Relationship designation in $i or $4</option>
|
|
[% PROCESS selectoptionopen value='t' %]t - Immediate parent body</option>
|
|
[% ELSIF Koha.Preference('marcflavour') == 'UNIMARC' %]
|
|
[% PROCESS selectoptionopen value='a' %]a = earlier name</option>
|
|
[% PROCESS selectoptionopen value='b' %]b = later name</option>
|
|
[% PROCESS selectoptionopen value='c' %]c = official name</option>
|
|
[% PROCESS selectoptionopen value='d' %]d = acronym / initial / abbreviation</option>
|
|
[% PROCESS selectoptionopen value='e' %]e = pseudonym</option>
|
|
[% PROCESS selectoptionopen value='f' %]f = real name</option>
|
|
[% PROCESS selectoptionopen value='g' %]g = broader term or name</option>
|
|
[% PROCESS selectoptionopen value='h' %]h = narrower term or name</option>
|
|
[% PROCESS selectoptionopen value='i' %]i = name in religion</option>
|
|
[% PROCESS selectoptionopen value='j' %]j = married name</option>
|
|
[% PROCESS selectoptionopen value='k' %]k = name before marriage</option>
|
|
[% PROCESS selectoptionopen value='l' %]l = shared pseudonym</option>
|
|
[% PROCESS selectoptionopen value='m' %]m = secular name</option>
|
|
[% PROCESS selectoptionopen value='n' %]n = different rule form of a name</option>
|
|
[% PROCESS selectoptionopen value='o' %]o = attributed name / conventional title of a work</option>
|
|
[% PROCESS selectoptionopen value='x' %]x = not applicable</option>
|
|
[% PROCESS selectoptionopen value='z' %]z = other</option>
|
|
[% END %]
|
|
</select>
|
|
</li>
|
|
</ol>
|
|
</fieldset>
|
|
[% END %]
|
|
|
|
<nav class="navbar navbar-default navbar-fixed-bottom">
|
|
<div class="container-fluid">
|
|
<fieldset class="action">
|
|
<input type="submit" class="btn btn-primary" id="search" value="Search" />
|
|
<input type="reset" id="clear-form" class="btn btn-default" value="Clear form" />
|
|
<button type="button" class="btn btn-default close_window">Close window</button>
|
|
</fieldset>
|
|
</div>
|
|
</nav>
|
|
</form>
|