source: trunk/gsdl/macros/pref.dm@ 148

Last change on this file since 148 was 148, checked in by sjboddie, 25 years ago

made a start on getting all the collections using the default macro files

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1package preferences
2
3
4#######################################################################
5# page content
6#######################################################################
7
8_pagetitle_ {_collectionname_: _textpreferences_}
9_imagethispage_ {_iconthispage_}
10
11
12# these macros will be overridden at runtime
13_caseoption_ {
14<input type=radio name=k value=1
15 checked>_textignorecase_<br>
16<input type=radio name=k value=0
17 >_textmatchcase_
18}
19
20_stemoption_ {
21<input type=radio name=s value=1
22 >_textstem_<br>
23<input type=radio name=s value=0
24 checked>_textnostem_
25}
26
27_maxdocoption_ {
28<select name="m">
29 <option value="50" selected>50
30 <option value="100" >100
31 <option value="200" >200
32 <option value="500" >500
33</select>
34}
35
36_hitsperpageoption_ {
37<select name="o">
38 <option value="10" selected>10
39 <option value="20" >20
40 <option value="50" >50
41 <option value="100" >100
42 <option value="500" >all
43</select>
44}
45
46_content_ {
47<blockquote>
48
49<form name=PrefForm method=get action="_gwcgi_">
50<_font_>
51
52<input type="hidden" name="e" value="_compressedoptions_">
53<input type="hidden" name="q" value="_querystring_">
54<input type="hidden" name="a" value="q">
55<input type="hidden" name="r" value="1">
56
57<p>_caseoption_
58
59<p>_stemoption_
60
61<p>
62_textprefop_
63
64<table width="100%">
65<tr><td>
66<input type="submit" value="_textsetprefs_">
67</td></tr></table>
68</blockquote>
69</font>
70</form>
71}
72
73
74#######################################################################
75# https
76#######################################################################
77
78_httpiconhpref_ {_httpimg_/h\_pref.gif}
79_httpiconhpref_ [language=mi] {_httpimg_/mh\_pref.gif}
80_widthhpref_ {200}
81_widthhpref_ [language=mi] {220}
82_heighthpref_ {57}
83
84
85#######################################################################
86# icons
87#######################################################################
88
89_iconthispage_ {<img src="_httpiconhpref_" alt="_textpreferences_" width="_widthhpref_" height="_heighthpref_">}
90_iconthispage_ [language=mi] {<img src="_httpimg_/mh\_pref.gif" alt="" width="220" height="57">}
91
92
93#######################################################################
94# english macros
95#######################################################################
96
97_textpreferences_ {Preferences}
98_textignorecase_ { ignore case differences}
99_textmatchcase_ { upper/lower case must match}
100_textstem_ { ignore word endings}
101_textnostem_ { whole word must match}
102_textprefop_ {Return up to _maxdocoption_ hits with _hitsperpageoption_ hits per page.}
103_textsetprefs_ {Set these preferences}
104
105#######################################################################
106# maori macros
107#######################################################################
108
109_textpreferences_ [language=mi] {Whiriwhiringa}
110_textignorecase_ [language=mi] { hei aha te p&uuml; matua me te p&uuml; iti}
111_textmatchcase_ [language=mi] { me tika te p&uuml; matua me te p&uuml; iti}
112_textstem_ [language=mi] { hei aha te k&uuml;muri}
113_textnostem_ [language=mi] { me tika te k&uuml;muri}
114_textprefop_ [language=mi] {Whakahokia mai te _maxdocoption_ kupu, &auml;, kia _hitsperpageoption_ kupu ki ia wh&auml;rangi.}
115_textsetprefs_ [language=mi] {Whakamaua}
116
117
118
119
120
Note: See TracBrowser for help on using the repository browser.