source: trunk/gsdl/macros/query.dm@ 1289

Last change on this file since 1289 was 1289, checked in by sjboddie, 24 years ago

tidied up macro files a little more

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 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_" width="_widthhsearch_" height="_heighthsearch_">}
25_iconthispage_ [v=1] {<h2>_texticonthispage_</h2>}
26
27_iconqueryresultsbar_ {<img src="_httpiconqryresb_" width="_widthqryresb_" height="_heightqryresb_" alt="_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_resultline_
63,<center>_iconblankbar_</center>)<br>
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
75<center>
76<table><tr><td>
77<nobr>
78_textselect_<br>
79</nobr>
80</td></tr><tr><td>
81<nobr>
82<input type="text" name="q" value="_cgiargq_" size="50">
83<input type="submit" value="_textbeginsearch_">
84</nobr>
85</td></tr></table>
86</center>
87</form>
88<!-- end of query form -->
89}
90
91_textselect_ {_If_(_cgiargb_,_textadvancedsearch_,_textsimplesearch_)}
92
93# we want to put the links to previous/next pages of results
94# in the footer
95_pagefooterextra_ {
96<center>
97<table cellspacing=0 cellpadding=0 width=_pagewidth_>
98<tr>
99<td align=left>_If_(_prevfirst_,<a href="_httpquery_&r=_prevfirst_">_iconprev__textmatches__prevfirst_ - _prevlast_</a>)</td>
100<td align=right>_If_(_nextfirst_,<a href="_httpquery_&r=_nextfirst_">_textmatches__nextfirst_ - _nextlast__iconnext_</a>)</td>
101</tr></table>
102</center>
103}
104
105_querytypeselection_ {
106<select name="t">
107<option value="1"_If_(_cgiargt_, selected)>_textsome_
108<option value="0"_If_(_cgiargt_,, selected)>_textall_
109</select>
110}
Note: See TracBrowser for help on using the repository browser.