source: trunk/gsdl/macros/dateqry.dm@ 3775

Last change on this file since 3775 was 3775, checked in by sjboddie, 21 years ago

Added "title" attributes to img tags so that modern browsers display
tooltips as intended (previously we relied on the "alt" attribute which
doesn't display tooltips for netscape6/mozilla etc.).

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1package query
2
3
4#######################################################################
5# Macros whose values are set from within the server at runtime. These
6# are here only for reference and to set default values if required.
7#######################################################################
8
9_quotedquery_ {}
10_freqmsg_ {}
11_resultline_ {}
12_thisfirst_ {}
13_thislast_ {}
14_nextfirst_ {}
15_nextlast_ {}
16_prevfirst_ {}
17_prevlast_ {}
18_searchhistorylist_ {}
19
20#######################################################################
21# icons
22#######################################################################
23
24_iconthispage_ {<img src="_httpiconhsearch_" alt="_texticonthispage_" title="_texticonthispage_" width="_widthhsearch_" height="_heighthsearch_">}
25_iconthispage_ [v=1] {<h2>_texticonthispage_</h2>}
26
27_iconqueryresultsbar_ {<img src="_httpiconqryresb_" width="_widthqryresb_" height="_heightqryresb_" alt="_texticonqueryresultsbar_" title="_texticonqueryresultsbar_">}
28_iconqueryresultsbar_[v=1] {_texticonqueryresultsbar_}
29
30# _iconnext_ and _iconprev_ are overridden in this package as we
31# don't want alt text here
32_iconnext_{<img src="_httpiconmore_" width=_widthmore_ height=_heightmore_ border=0 align=top>}
33_iconnext_ [v=1] {}
34_iconprev_{<img src="_httpiconless_" width=_widthless_ height=_heightless_ border=0 align=top>}
35_iconprev_ [v=1] {}
36
37#######################################################################
38# images
39#######################################################################
40
41_imagethispage_ {_iconthispage_}
42
43
44#######################################################################
45# page content
46#######################################################################
47
48_pagetitle_ {_If_(_cgiargq_,_textquerytitle_,_textnoquerytitle_)}
49
50_content_ {
51<center>
52_navigationbar_
53</center>
54_queryform_
55_If_(_searchhistorylist_,<center>
56_searchhistorylist_
57</center>)
58_If_(_cgiargq_,<center>_iconqueryresultsbar_</center><br>
59<small>
60_freqmsg_
61_textpostprocess_</small><br>
62,<center>_iconblankbar_</center>)<br>
63_resultline_<p>
64}
65
66_queryform_ {
67<!-- query form -->
68<form name=QueryForm method=get action="_gwcgi_">
69
70<input type=hidden name="a" value="q">
71<input type=hidden name="e" value="_decodedcompressedoptions_">
72<input type=hidden name="r" value="1">
73<input type=hidden name="hs" value="1">
74<input type=hidden name="g" value="Document"
75<center>
76<table><tr><td>
77<nobr>
78 _textselect_<br>
79<nobr>
80</tr></td>
81<tr><td>
82<nobr>
83 <center>
84 <input type="text" name="q" value="_cgiargq_" size="50">
85 <input type="submit" value="_textbeginsearch_">
86 </center>
87</nobr>
88</tr></td>
89<tr><td>
90 _textdatesearch_<br>
91</tr></td>
92<tr><td>
93 <center>
94_textstartdate_
95<input type="text" name="ds" value = "_cgiargds_"size="4" maxlength="4">
96<select name="dsbc" value="_cgiargdsbc_" size="1">
97 <option value = "0"_If_(_cgiargdsbc_,, selected)>_textad_
98 <option value = "1"_If_(_cgiargdsbc_, selected)>_textbc_
99</select>
100_textenddate_
101<input type="text" name="de" value = "_cgiargde_" size="4" maxlength="4">
102<select name="debc" size="1">
103 <option value = "0" _If_(_cgiargdebc_,, selected)>_textad_
104 <option value = "1" _If_(_cgiargdebc_, selected)>_textbc_
105</select>
106</center>
107</tr></td>
108<tr><td>
109_textexplaineras_
110</tr></td>
111</table>
112</center>
113</form>
114<!-- end of query form -->
115}
116
117_textselect_ {_If_(_cgiargb_,_textadvancedsearch_,_textsimplesearch_)}
118
119# we want to put the links to previous/next pages of results
120# in the footer
121_pagefooterextra_ {
122<center>
123<table cellspacing=0 cellpadding=0 width=_pagewidth_>
124<tr>
125<td align=left>_If_(_prevfirst_,<a href="_httpquery_&r=_prevfirst_">_iconprev__textmatches__prevfirst_ - _prevlast_</a>)</td>
126<td align=right>_If_(_nextfirst_,<a href="_httpquery_&r=_nextfirst_">_textmatches__nextfirst_ - _nextlast__iconnext_</a>)</td>
127</tr></table>
128</center>
129}
130
131_querytypeselection_ {
132<select name="t">
133<option value="1"_If_(_cgiargt_, selected)>_textsome_
134<option value="0"_If_(_cgiargt_,, selected)>_textall_
135</select>
136}
137
138
139
140
141
142
143
144
145
146
Note: See TracBrowser for help on using the repository browser.