Trying again on some changes that wouldn't patch earlier
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / cataloging-search.inc
1
2 <h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl"><!-- TMPL_VAR NAME="LibraryName" --></a></h1><!-- Begin Cataloging Resident Search Box -->
3 <!-- TMPL_IF NAME="CAN_user_circulate" --><!-- TMPL_IF NAME="CircAutocompl" --><script type="text/javascript">
4 //<![CDATA[
5 YAHOO.util.Event.onContentReady("header_search", function() {
6     new function() {
7         // Define a custom formatter function
8         this.fnCustomFormatter = function(oResultItem, sQuery) {
9             var name        = oResultItem[0];
10             var cardnumber  = oResultItem[1];
11             var address     = oResultItem[2];
12             var city        = oResultItem[3];
13             var zip         = oResultItem[4];
14             var aMarkup = [
15                 "<div class=\"sample-result\">",
16                 name,
17                 " (",
18                 cardnumber,
19                 ")<small> -- ",
20                 address,
21                 ", ",
22                 city,
23                 "</small>",
24                 "</div>"];
25             return (aMarkup.join(""));
26         };
27
28         // Instantiate one XHR DataSource and define schema as an array:
29         //     ["Record Delimiter",
30         //     "Field Delimiter"]
31         this.oACDS = new YAHOO.widget.DS_XHR("/cgi-bin/koha/circ/ysearch.pl", ["\n", "\t"]);
32         this.oACDS.responseType = YAHOO.widget.DS_XHR.TYPE_FLAT;
33         this.oACDS.maxCacheEntries = 60;
34         this.oACDS.queryMatchSubset = true;
35     
36         // Instantiate first AutoComplete
37         var myInput = document.getElementById('findborrower');
38         var myContainer = document.getElementById('yborrowercontainer');
39         this.oAutoComp = new YAHOO.widget.AutoComplete(myInput,myContainer,this.oACDS);
40         //this.oAutoComp.delimChar = ";";
41         //this.oAutoComp.queryDelay = 1;
42         this.oAutoComp.formatResult = this.fnCustomFormatter;
43 }
44 });
45 //]]>
46 </script><!-- /TMPL_IF --><!-- /TMPL_IF -->
47 <div id="header_search">
48 <div id="addbooks_search" class="residentsearch">
49         <p class="tip">Search the catalog and the reservoir:</p>
50         <form name="search" action="addbooks.pl">
51         <input type="text" name="q"  size="40" class="focus" />
52         <input type="submit" value="Search" />
53         </form>
54 </div>
55 <!-- TMPL_IF NAME="CAN_user_circulate" -->
56         <div id="circ_search" class="residentsearch">
57         <p class="tip">Enter patron card number or partial name:</p>
58     <form action="/cgi-bin/koha/circ/circulation.pl" method="post">
59     <!-- TMPL_IF NAME="CircAutocompl" -->
60     <div class="autocomplete">
61             <div id="borrowerautocomplete" class="autocomplete">
62                 <input autocomplete="off" id="findborrower" name="findborrower" class="focus" type="text" />
63                 <div id="yborrowercontainer"></div>
64                 <input id="ysearchsubmit" type="submit" value="Submit" />
65                 <input name="branch" value="<!-- TMPL_VAR name="branch" -->" type="hidden" />
66                 <input name="printer" value="" type="hidden" />
67             </div>
68         </div>
69         <!-- TMPL_ELSE -->
70             <input id="findborrower" name="findborrower" size="40" class="focus" type="text" />
71             <input name="branch" value="<!-- TMPL_VAR name="branch" -->" type="hidden" />
72             <input name="printer" value="" type="hidden" />
73             <input value="Submit" type="submit" />
74         <!-- /TMPL_IF -->
75     </form>
76         </div>
77 <!-- /TMPL_IF -->
78                         <ul>
79                         <li><a href="/cgi-bin/koha/catalogue/search.pl#addbooks_search">Cataloguing Search</a></li>
80                         <!-- TMPL_IF NAME="CAN_user_circulate" --><li><a href="/cgi-bin/koha/circ/circulation.pl#circ_search">Check Out</a></li><!-- /TMPL_IF -->
81                         </ul>   
82 </div>
83 <!-- End Cataloging Resident Search Box -->