/[webpac2]/Webpacus/root/sites/hr/search.tt
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /Webpacus/root/sites/hr/search.tt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 359 - (show annotations)
Sun Jan 8 14:52:24 2006 UTC (18 years, 3 months ago) by dpavlin
File size: 3058 byte(s)
 r386@llin:  dpavlin | 2006-01-08 15:52:38 +0100
 fixed sites testing, completed tests (which fail for a reason :-), minor tweaks to
 localisaion

1 [% INCLUDE header.tt %]
2
3 [% url = base _ 'search/suggest/' %]
4
5 [% c.prototype.form_remote_tag(
6 url => base _ 'search/results',
7 update => 'results',
8 loading => 'show_searching();',
9 loaded => 'hide_searching();',
10 html_options => {
11 id => 'results_form',
12 name => 'results_form',
13 }
14 ) %]
15
16 <table id="search_table">
17
18 <tr>
19 <td>
20 Sve:
21 </td><td>
22 <input autocomplete="off" id="sve_input" name="all" type="text" value="" size="60"/>
23 <span id="sve_input_loading" style="display: none;">
24 <img src="/img/indicator.gif" />
25 </span>
26
27 <div class="auto_complete" id="sve_input_auto_complete"></div>
28 [% c.prototype.auto_complete_field( 'sve_input', {
29 url => url _ '?search=all&show=TitleProper',
30 indicator => 'sve_input_loading',
31 frequency => 0.8,
32 } ) %]
33 <!-- operator for individual words -->
34 <input type="hidden" name="_all" value="AND" />
35 </td>
36
37 </tr><tr>
38
39 <td>
40 Naslov:
41 </td><td>
42 <input autocomplete="off" id="naslov_input" name="TitleProper" type="text" value="" size="60"/>
43 <span id="naslov_input_loading" style="display: none;">
44 <img src="/img/indicator.gif" />
45 </span>
46
47 <div class="auto_complete" id="naslov_input_auto_complete"></div>
48 [% c.prototype.auto_complete_field( 'naslov_input', {
49 url => url _ '?search=TitleProper&show=TitleProper',
50 indicator => 'naslov_input_loading',
51 frequency => 0.8,
52 } ) %]
53 </td>
54
55 </tr><tr>
56
57 <td>
58 Autor:
59 </td><td>
60 <input autocomplete="off" id="autor_input" name="Names" type="text" value="" size="60"/>
61 <span id="autor_input_loading" style="display: none;">
62 <img src="/img/indicator.gif" />
63 </span>
64 <div class="auto_complete" id="autor_input_auto_complete"></div>
65 [% c.prototype.auto_complete_field( 'autor_input', {
66 url => url _ '?search=Names&show=Names',
67 indicator => 'autor_input_loading',
68 frequency => 0.8,
69 } ) %]
70 </td>
71
72 </tr>
73 </table>
74
75 <!-- additional fields which might get updated by javascript -->
76 <input name="_template" type="hidden" id="template_name" />
77 <input name="_page" type="hidden" id="page_nr" />
78 <input name="_reset" type="hidden" id="_reset" value="sve_input,naslov_input,autor_input"/>
79
80 <div class="databases">
81 <a href="#" onclick="return toggleLinkAndElement( this, 'database_list', 'Hide databases');">Select databases</a>
82 <ul id="database_list" style="display: none;">
83 [% FOREACH db = c.comp('Model::Databases').list({ require_input => 1 }).sort('name') %]
84 <li><input type="checkbox" name="_database" value="[% db.prefix %]" onclick="return checkbox_click();"><a href="#" onclick="return checkbox_single('_database','[% db.prefix %]');">[% db.name %]</a></li>
85 [% END %]
86 </ul>
87 </div>
88
89 <div class="buttons">
90
91 <input type="submit" name="_submit" value="Search"
92 onclick="reset_page_nr( 1 ); return true;"
93 />
94
95 <span id="searching" style="display: none;">
96 Pretrazivanje u toku...
97 <img src="/img/indicator.gif" />
98 </span>
99
100 <input type="button" name="_reset_button" value="Clear" onclick="return reset_form();" />
101
102 </div>
103
104 </form>
105
106 <div id="results">
107 [% IF results ; results ; ELSE %]
108 <span class="notice">Nema rezultata</span>
109 [% END %]
110 </div>
111
112 [% INCLUDE footer.tt %]

  ViewVC Help
Powered by ViewVC 1.1.26