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

Last change on this file since 128 was 128, checked in by rjmcnab, 25 years ago

Moved from collection's directory.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
1package preferences
2
3_pagetitle_ {_collectionname_: Preferences}
4
5_imagethispage_ {_iconthispage_}
6_iconthispage_ {<img src="_httpimg_/h\_pref.gif" alt="Preferences" width="200" height="57">}
7
8# these macros will be overridden at runtime
9_caseoption_ {
10<input type=radio name=k value=1
11 checked> ignore case differences<br>
12<input type=radio name=k value=0
13 > upper/lower case must match
14}
15
16_stemoption_ {
17<input type=radio name=s value=1
18 > ignore word endings<br>
19<input type=radio name=s value=0
20 checked> whole word must match
21}
22
23_encodingoption_ {
24<select name="nw">
25 <option value="w">Western (ISO-8859-1)
26 <option value="g">Simplified Chinese (GB2312)
27 <option value="8">Unicode (UTF-8)
28</select>
29}
30
31_maxdocoption_ {
32<select name="m">
33 <option value="50" selected>50
34 <option value="100" >100
35 <option value="200" >200
36 <option value="500" >500
37</select>
38}
39
40_hitsperpageoption_ {
41<select name="o">
42 <option value="10" selected>10
43 <option value="20" >20
44 <option value="50" >50
45 <option value="100" >100
46 <option value="500" >all
47</select>
48}
49
50_content_ {
51<blockquote>
52
53<form name=PrefForm method=get action="_gwcgi_">
54<_font_>
55
56<input type="hidden" name="e" value="_compressedoptions_">
57<input type="hidden" name="q" value="_querystring_">
58<input type="hidden" name="a" value="q">
59<input type="hidden" name="r" value="1">
60
61<p>_caseoption_
62
63<p>_stemoption_
64
65<p>
66Return up to _maxdocoption_ hits with _hitsperpageoption_
67hits per page.
68
69<table width="100%">
70<tr><td>
71<input type="submit" value="Set these preferences">
72</td></tr></table>
73</blockquote>
74</font>
75</form>
76}
Note: See TracBrowser for help on using the repository browser.