source: trunk/gsdl/macros/base.dm@ 896

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

lots of changes - including separating out all language strings
into separate files.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 25.2 KB
Line 
1#######################################################################
2# GLOBAL MACROS
3#######################################################################
4
5package Global
6
7##########
8
9# won't need this once old versions of library are no longer used
10_decodedcompressedoptions_ {_compressedoptions_}
11
12
13_htmlextra_ {}
14
15_starthighlight_ {<b><u>}
16_endhighlight_ {</u></b>}
17
18#######################################################################
19# page content
20#
21# these should always be overridden for each page/collection
22#######################################################################
23
24_content_ {<p><h2>oops</h2>
25_textdefaultcontent_}
26_pagetitle_ {_textdefaulttitle_}
27_imagethispage_ {}
28_iconcollection_ {}
29_imagecollection_ {_If_("_iconcollection_" ne "",<a href="_httppagex_(about)"><img src="_iconcollection_" border=0></a>)}
30
31#######################################################################
32# these width macros are read in by the server when calculating
33# width of navigation bar etc. There should be one for each
34# classification that this receptionist supports, one for the
35# search button, and the _pagewidth_ macro which is the total width
36# of the page
37#######################################################################
38
39# width of tabs when displaying tables of contents
40_tabwidth_ {25}
41
42_pagewidth_ {537}
43# defaultwidth is the width buttons default to if not included in this list
44_defaultwidth_ {87}
45_searchwidth_ {_widthtsrchx_}
46_Titlewidth_ {_widthttitlx_}
47_Listwidth_ {_widthtlistx_}
48_Creatorwidth_ {_widthtauthx_}
49_Serieswidth_ {_widthtserx_}
50_Datewidth_ {_widthtdatex_}
51_Subjectwidth_ {_widthtsubjx_}
52_Organizationwidth_ {_widthtorgx_}
53_Howtowidth_ {_widththowx_}
54_Topicwidth_ {_widthttopicx_}
55_Browsewidth_ {_widthtbrwsex_}
56_Peoplewidth_ {_widthtpeopx_}
57
58#######################################################################
59# Macros whose values are set from within the server at runtime. These
60# are here only for reference and to set default values if required.
61#######################################################################
62
63_navigationbar_ {}
64_javaimagesnavbar_ {}
65_javaimagescontent_ {}
66_widthtspace_ {2}
67
68# all cgi args are set as _cgiargX_ macros - those I've put here
69# are those that need to default to something
70_cgiargd_ {}
71_cgiargcl_ {}
72
73# set from within the query action
74_hselection_ {}
75_jselection_ {}
76_nselection_ {}
77
78#######################################################################
79# navigation bar images
80#
81#######################################################################
82
83# the spacer image - the width of this is set from server
84_imagespacer_ {<img
85src="_httpicontspace_" width="_widthtspace_" height="_heighttspace_">}
86_imagespacer_[v=1] {<br>
87}
88
89# image macros for all the classifications currently supported by
90# this receptionist. i.e. title, author, subject, series, date,
91# howto, and organization (and search)
92
93_imagesearch_ {<a href="_httpquery_"
94 onMouseover = "img\_on('search')"
95 onMouseout = "img\_off('search')"><img name="search"
96 src="_httpicontsrchof_" width="_widthtsrchx_" height="_heighttsrchx_"
97 border="0" alt="_textimagesearch_"></a>}
98_imagesearch_[v=1] {<a href="_httpquery_">_textimagesearch_</a><br>
99}
100
101_imageTitle_ {<a href="_httpbrowseTitle_"
102 onMouseover = "img\_on('titles')"
103 onMouseout = "img\_off('titles')"><img name="titles"
104 src="_httpiconttitlof_" width=_widthttitlx_ height=_heightttitlx_
105 border=0 alt="_textimageTitle_"></a>}
106_imageTitle_[v=1] {<a href="_httpbrowseTitle_">_textimageTitle_</a><br>
107}
108
109_imageList_ {<a href="_httpbrowseList_"
110 onMouseover = "img\_on('list')"
111 onMouseout = "img\_off('list')"><img name="list"
112 src="_httpicontlistof_" width=_widthtlistx_ height=_heighttlistx_
113 border=0 alt="_textimageList_"></a>}
114_imageList_[v=1] {<a href="_httpbrowseList_">_textimageList_</a><br>
115}
116
117
118_imageCreator_ {<a href="_httpbrowseCreator_"
119 onMouseover = "img\_on('authors')"
120 onMouseout = "img\_off('authors')"><img name="authors"
121 src="_httpicontauthof_" width=_widthtauthx_ height=_heighttauthx_
122 border=0 alt="_textimageCreator_"></a>}
123_imageCreator_[v=1] {<a href="_httpbrowseCreator_">_textimageCreator_</a><br>
124}
125
126_imageSeries_ {<a href="_httpbrowseSeries_"
127 onMouseover = "img\_on('series')"
128 onMouseout = "img\_off('series')"><img name="series"
129 src="_httpicontserof_" width="_widthtserx_" height="_heighttserx_"
130 border="0" alt="_textimageSeries_"></a>}
131_imageSeries_[v=1] {<a href="_httpbrowseSeries_">_textimageSeries_</a><br>
132}
133
134_imageDate_ {<a href="_httpbrowseDate_"
135 onMouseover = "img\_on('dates')"
136 onMouseout = "img\_off('dates')"><img name="dates"
137 src="_httpicontdateof_" width="_widthtdatex_" height="_heighttdatex_"
138 border="0" alt="_textimageDate_"></a>}
139_imageDate_[v=1] {<a href="_httpbrowseDate_">_textimageDate_</a><br>
140}
141
142_imageSubject_ {<a href="_httpbrowseSubject_"
143 onMouseover = "img\_on('subjects')"
144 onMouseout = "img\_off('subjects')"><img name="subjects"
145 src="_httpicontsubjof_" width="_widthtsubjx_" height="_heighttsubjx_"
146 border="0" alt="_textimageSubject_"></a>}
147_imageSubject_[v=1] {<a href="_httpbrowseSubject_">_textimageSubject_</a><br>
148}
149
150_imageOrganization_ {<a href="_httpbrowseOrganization_"
151 onMouseover = "img\_on('org')"
152 onMouseout = "img\_off('org')"><img name="org"
153 src="_httpicontorgof_" width="_widthtorgx_" height="_heighttorgx_"
154 border="0" alt="_textimageOrganization_"></a>}
155_imageOrganization_[v=1] {<a href="_httpbrowseOrganization_">_textimageOrganization_</a><br>
156}
157
158_imageHowto_ {<a href="_httpbrowseHowto_"
159 onMouseover = "img\_on('how')"
160 onMouseout = "img\_off('how')"><img name="how"
161 src="_httpiconthowof_" width="_widththowx_" height="_heightthowx_"
162 border="0" alt="_textimageHowto_"></a>}
163_imageHowto_[v=1] {<a href="_httpbrowseHowto_">_textimageHowto_</a><br>
164}
165
166_imageTopic_ {<a href="_httpbrowseTopic_"
167 onMouseover = "img\_on('topic')"
168 onMouseout = "img\_off('topic')"><img name="topic"
169 src="_httpiconttopicof_" width="_widthttopicx_" height="_heightttopicx_"
170 border="0" alt="_textimageTopic_"></a>}
171_imageTopic_[v=1] {<a href="_httpbrowseTopic_">_textimageTopic_</a><br>
172}
173
174_imageBrowse_ {<a href="_httpbrowseBrowse_"
175 onMouseover = "img\_on('browse')"
176 onMouseout = "img\_off('browse')"><img name="browse"
177 src="_httpicontbrwseof_" width="_widthtbrwsex_" height="_heighttbrwsex_"
178 border="0" alt="_textimageBrowse_"></a>}
179_imageBrowse_[v=1] {<a href="_httpbrowseBrowse_">_textimageBrowse_</a><br>
180}
181
182_imagePeople_ {<a href="_httpbrowsePeople_"
183 onMouseover = "img\_on('People')"
184 onMouseout = "img\_off('People')"><img name="People"
185 src="_httpicontpeopof_" width=_widthtpeopx_ height=_heighttpeopx_
186 border=0 alt="_textimagePeople_"></a>}
187_imagePeople_[v=1] {<a href="_httpbrowsePeople_">_textimagePeople_</a><br>
188}
189
190
191#######################################################################
192# java images/scripts
193#######################################################################
194
195# the _javalinks_ macros are the flashy image links at the top right of
196# the page.
197
198_javalinks_ {_imagehome__imagehelp__imagepref_}
199_javalinks_ [v=1] {
200_imagehome_<br>
201_imagehelp_<br>
202_imagepref_<br>
203}
204
205# the javaimages macros contain the javascript code required
206# by each flashy javascript image. _javaimagesheader_ contains those
207# images at the top right of the page, _javaimagesnavbar_ (set
208# from within the server) contains those images in the navigation bar,
209# and _javaimagescontent_ (also set in server) contains any other
210# javascript images that occur in the page.
211# the javaimages macros should contain _javaX_ macros for each javascript
212# image link within the page.
213
214_javaimagesheader_ {_javahome__javahelp__javapref_}
215_javaimagesheader_ [v=1] {}
216
217_javaabout_ {
218 about\_on = new Image(_widthcabtx_, _heightcabtx_);
219 about\_on.src = "_httpiconcabton_";
220 about\_off = new Image(_widthcabtx_, _heightcabtx_);
221 about\_off.src = "_httpiconcabtof_";
222}
223
224_javahome_ {
225 home\_on = new Image(_widthchomex_, _heightchomex_);
226 home\_on.src = "_httpiconchomeon_";
227 home\_off = new Image(_widthchomex_, _heightchomex_);
228 home\_off.src = "_httpiconchomeof_";
229}
230
231_javahelp_ {
232 help\_on = new Image(_widthchelpx_, _heightchelpx_);
233 help\_on.src = "_httpiconchelpon_";
234 help\_off = new Image(_widthchelpx_, _heightchelpx_);
235 help\_off.src = "_httpiconchelpof_";
236}
237
238_javapref_ {
239 pref\_on = new Image(_widthcprefx_, _heightcprefx_);
240 pref\_on.src = "_httpiconcprefon_";
241 pref\_off = new Image(_widthcprefx_, _heightcprefx_);
242 pref\_off.src = "_httpiconcprefof_";
243}
244
245_javasearch_ {
246 search\_on = new Image(_widthtsrchx_, _heighttsrchx_);
247 search\_on.src = "_httpicontsrchon_";
248 search\_off = new Image(_widthtsrchx_, _heighttsrchx_);
249 search\_off.src = "_httpicontsrchof_";
250}
251
252_javaTitle_ {
253 titles\_on = new Image(_widthttitlx_, _heightttitlx_);
254 titles\_on.src = "_httpiconttitlon_";
255 titles\_off = new Image(_widthttitlx_, _heightttitlx_);
256 titles\_off.src = "_httpiconttitlof_";
257}
258
259_javaList_ {
260 list\_on = new Image(_widthtlistx_, _heighttlistx_);
261 list\_on.src = "_httpicontliston_";
262 list\_off = new Image(_widthtlistx_, _heighttlistx_);
263 list\_off.src = "_httpicontlistof_";
264}
265
266_javaCreator_ {
267 authors\_on = new Image(_widthtauthx_, _heighttauthx_);
268 authors\_on.src = "_httpicontauthon_";
269 authors\_off = new Image(_widthtauthx_, _heighttauthx_);
270 authors\_off.src = "_httpicontauthof_";
271}
272
273_javaSeries_ {
274 series\_on = new Image(_widthtserx_, _heighttserx_);
275 series\_on.src = "_httpicontseron_";
276 series\_off = new Image(_widthtserx_, _heighttserx_);
277 series\_off.src = "_httpicontserof_";
278}
279
280_javaDate_ {
281 dates\_on = new Image(_widthtdatex_, _heighttdatex_);
282 dates\_on.src = "_httpicontdateon_";
283 dates\_off = new Image(_widthtdatex_, _heighttdatex_);
284 dates\_off.src = "_httpicontdateof_";
285}
286
287_javaSubject_ {
288 subjects\_on = new Image(_widthtsubjx_, _heighttsubjx_);
289 subjects\_on.src = "_httpicontsubjon_";
290 subjects\_off = new Image(_widthtsubjx_, _heighttsubjx_);
291 subjects\_off.src = "_httpicontsubjof_";
292}
293
294_javaHowto_ {
295 how\_on = new Image(_widththowx_, _heightthowx_);
296 how\_on.src = "_httpiconthowon_";
297 how\_off = new Image(_widththowx_, _heightthowx_);
298 how\_off.src = "_httpiconthowof_";
299}
300
301_javaOrganization_ {
302 org\_on = new Image(_widthtorgx_, _heighttorgx_);
303 org\_on.src = "_httpicontorgon_";
304 org\_off = new Image(_widthtorgx_, _heighttorgx_);
305 org\_off.src = "_httpicontorgof_";
306}
307
308_javaTopic_ {
309 topic\_on = new Image(_widthttopicx_, _heightttopicx_);
310 topic\_on.src = "_httpiconttopicon_";
311 topic\_off = new Image(_widthttopicx_, _heightttopicx_);
312 topic\_off.src = "_httpiconttopicof_";
313}
314
315_javaBrowse_ {
316 browse\_on = new Image(_widthtbrwsex_, _heighttbrwsex_);
317 browse\_on.src = "_httpicontbrwseon_";
318 browse\_off = new Image(_widthtbrwsex_, _heighttbrwsex_);
319 browse\_off.src = "_httpicontbrwseof_";
320}
321
322_javaPeople_ {
323 People\_on = new Image(_widthtpeopx_, _heighttpeopx_);
324 People\_on.src = "_httpicontpeopon_";
325 People\_off = new Image(_widthtpeopx_, _heighttpeopx_);
326 People\_off.src = "_httpicontpeopof_";
327}
328
329
330#######################################################################
331# general web macros
332#######################################################################
333
334_mailaddr_ {[email protected]}
335
336_gsdltop_ {_top}
337
338#######################################################################
339# http macros
340#
341# These contain the url without any quotes
342#######################################################################
343
344_httpcollimg_ {_httpcollection_/index/assoc}
345
346_httpcollection_{_httpprefix_/collect/_cgiargc_}
347
348_httppagex_ {_gwcgi_?e=_compressedoptions_&a=p&p=_1_}
349_httppagestatus_ {_gwcgi_?e=_compressedoptions_&a=status}
350_httppageabout_ {_httppagex_(about)}
351#_httppagehome_ {_httppagex_(home)}
352#_httppagehome_ {_gwcgi_?a=p&p=home}
353_httppagehome_ {http://www.nzdl.org/fast-cgi-bin/library?a=p&p=home}
354_httppagehelp_ {_httppagex_(help)}
355_httppagepref_ {_httppagex_(preferences)}
356
357_httpgreenstone_ {_httppagex_(gsdl)}
358
359_httpcurrentdocument_ {_gwcgi_?e=_compressedoptions_&cl=_cgiargcl_&d=_cgiargd_}
360_httpquery_ {_gwcgi_?e=_compressedoptions_&a=q}
361
362# _httpdoc_ is the same as _httpdocument_ - _httpdocument_
363# may occasionally be altered by the server however
364_httpdocument_ {_gwcgi_?e=_compressedoptions_&a=d}
365_httpdoc_ {_gwcgi_?e=_compressedoptions_&a=d}
366
367_httpextlink_ {_gwcgi_?e=_compressedoptions_&a=extlink}
368_httpbuild_ {_gwcgi_?e=_compressedoptions_&a=bc}
369
370_httpiconchalk_ {_httpimg_/chalk.gif}
371_widthchalk_ {2000}
372_heightchalk_ {10}
373
374_httpiconchelpof_ {_httpimg_/chelpof.gif}
375_httpiconchelpof_ [l=mi] {_httpimg_/mchelpof.gif}
376_httpiconchelpof_[l=zh] {_httpimg_/zhchelpof.gif}
377_httpiconchelpon_ {_httpimg_/chelpon.gif}
378_httpiconchelpon_ [l=mi] {_httpimg_/mchelpon.gif}
379_httpiconchelpon_[l=zh] {_httpimg_/zhchelpon.gif}
380_widthchelpx_ {36}
381_widthchelpx_ [l=mi] {57}
382_widthchelpx_[l=zh] {41}
383_heightchelpx_ {20}
384_heightchelpx_[l=zh] {20}
385
386_httpiconchomeof_ {_httpimg_/chomeof.gif}
387_httpiconchomeof_ [l=mi] {_httpimg_/mchomeof.gif}
388_httpiconchomeof_[l=zh] {_httpimg_/zhchomeof.gif}
389_httpiconchomeon_ {_httpimg_/chomeon.gif}
390_httpiconchomeon_ [l=mi] {_httpimg_/mchomeon.gif}
391_httpiconchomeon_[l=zh] {_httpimg_/zhchomeon.gif}
392_widthchomex_ {43}
393_widthchomex_ [l=mi] {54}
394_widthchomex_[l=zh] {41}
395_heightchomex_ {20}
396_heightchomex_[l=zh] {20}
397
398_httpiconcprefof_ {_httpimg_/cprefof.gif}
399_httpiconcprefof_ [l=mi] {_httpimg_/mcprefof.gif}
400_httpiconcprefof_[l=zh] {_httpimg_/zhcprefof.gif}
401_httpiconcprefon_ {_httpimg_/cprefon.gif}
402_httpiconcprefon_ [l=mi] {_httpimg_/mcprefon.gif}
403_httpiconcprefon_[l=zh] {_httpimg_/zhcprefon.gif}
404_widthcprefx_ {87}
405_widthcprefx_ [l=mi] {103}
406_widthcprefx_[l=zh] {41}
407_heightcprefx_ {20}
408_heightcprefx_[l=zh] {20}
409
410_httpiconcabtof_ {_httpimg_/cabtof.gif}
411_httpiconcabton_ {_httpimg_/cabton.gif}
412_widthcabtx_ {50}
413_heightcabtx_ {20}
414
415_httpicondivb_ {_httpimg_/divb.gif}
416_widthdivb_ {_pagewidth_}
417_heightdivb_ {17}
418
419_httpicongsdl_ {_httpimg_/gsdl.gif}
420_widthgsdl_ {140}
421_heightgsdl_ {77}
422
423_httpiconhhelp_ {_httpimg_/h\_help.gif}
424_httpiconhhelp_[l=zh] {_httpimg_/zhh\_help.gif}
425_widthhhelp_ {200}
426_heighthhelp_ {57}
427
428_httpiconitext_ {_httpimg_/itext.gif}
429_widthitext_ {16}
430_heightitext_ {21}
431
432_httpiconibtext_ {_httpimg_/ibtext.gif}
433_widthibtext_ {16}
434_heightibtext_ {21}
435
436_httpiconless_ {_httpimg_/less.gif}
437_widthless_ {30}
438_heightless_ {16}
439
440_httpiconmore_ {_httpimg_/more.gif}
441_widthmore_ {30}
442_heightmore_ {16}
443
444_httpiconstop_ {_httpimg_/stop.gif}
445_widthstop_ {30}
446_heightstop_ {16}
447
448_httpiconqryresb_ {_httpimg_/qryresb.gif}
449_httpiconqryresb_ [l=mi] {_httpimg_/mqryresb.gif}
450_widthqryresb_ {_pagewidth_}
451_heightqryresb_ {17}
452
453_httpiconspacer_ {_httpimg_/spacer.gif}
454_widthspacer_ {42}
455_heightspacer_ {4}
456
457_httpicontabspace_ {_httpimg_/tabspace.gif}
458_widthtabspace_ {23}
459_heighttabspace_ {1}
460
461_httpicontauthgr_ {_httpimg_/tauthgr.gif}
462_httpicontauthof_ {_httpimg_/tauthof.gif}
463_httpicontauthon_ {_httpimg_/tauthon.gif}
464_widthtauthx_ {110}
465_heighttauthx_ {17}
466
467_httpicontauthgr_[l=zh] {_httpimg_/zhtauthgr.gif}
468_httpicontauthof_[l=zh] {_httpimg_/zhtauthof.gif}
469_httpicontauthon_[l=zh] {_httpimg_/zhtauthon.gif}
470_widthtauthx_[l=zh] {110}
471_heighttauthx_[l=zh] {17}
472
473
474_httpicontsergr_ {_httpimg_/tsergr.gif}
475_httpicontsergr_ [l=mi] {_httpimg_/mtsergr.gif}
476_httpicontserof_ {_httpimg_/tserof.gif}
477_httpicontserof_ [l=mi] {_httpimg_/mtserof.gif}
478_httpicontseron_ {_httpimg_/tseron.gif}
479_httpicontseron_ [l=mi] {_httpimg_/mtseron.gif}
480_widthtserx_ {87}
481_widthtserx_ [l=mi] {192}
482_heighttserx_ {17}
483
484_httpicontdategr_ {_httpimg_/tdategr.gif}
485_httpicontdategr_ [l=mi] {_httpimg_/mtdategr.gif}
486_httpicontdateof_ {_httpimg_/tdateof.gif}
487_httpicontdateof_ [l=mi] {_httpimg_/mtdateof.gif}
488_httpicontdateon_ {_httpimg_/tdateon.gif}
489_httpicontdateon_ [l=mi] {_httpimg_/mtdateon.gif}
490_widthtdatex_ {87}
491_heighttdatex_ {17}
492
493_httpicontsubjgr_ {_httpimg_/tsubjgr.gif}
494_httpicontsubjon_ {_httpimg_/tsubjon.gif}
495_httpicontsubjof_ {_httpimg_/tsubjof.gif}
496_widthtsubjx_ {87}
497_heighttsubjx_ {17}
498
499_httpicontorggr_{_httpimg_/torggr.gif}
500_httpicontorgon_{_httpimg_/torgon.gif}
501_httpicontorgof_{_httpimg_/torgof.gif}
502_widthtorgx_ {109}
503_heighttorgx_ {17}
504
505_httpiconthowgr_{_httpimg_/thowgr.gif}
506_httpiconthowon_{_httpimg_/thowon.gif}
507_httpiconthowof_{_httpimg_/thowof.gif}
508_widththowx_ {87}
509_heightthowx_ {17}
510
511_httpiconttopicgr_{_httpimg_/ttopicgr.gif}
512_httpiconttopicon_{_httpimg_/ttopicon.gif}
513_httpiconttopicof_{_httpimg_/ttopicof.gif}
514_widthttopicx_ {87}
515_heightttopicx_ {17}
516
517_httpicontbrwsegr_{_httpimg_/tbrwsegr.gif}
518_httpicontbrwseon_{_httpimg_/tbrwseon.gif}
519_httpicontbrwseof_{_httpimg_/tbrwseof.gif}
520_widthtbrwsex_ {87}
521_heighttbrwsex_ {17}
522
523_httpicontsrchgr_ {_httpimg_/tsrchgr.gif}
524_httpicontsrchgr_ [l=mi] {_httpimg_/mtsrchgr.gif}
525_httpicontsrchof_ {_httpimg_/tsrchof.gif}
526_httpicontsrchof_ [l=mi] {_httpimg_/mtsrchof.gif}
527_httpicontsrchon_ {_httpimg_/tsrchon.gif}
528_httpicontsrchon_ [l=mi] {_httpimg_/mtsrchon.gif}
529_widthtsrchx_ {87}
530_heighttsrchx_ {17}
531
532_httpicontsrchgr_[l=zh] {_httpimg_/zhtsrchgr.gif}
533_httpicontsrchof_[l=zh] {_httpimg_/zhtsrchof.gif}
534_httpicontsrchon_[l=zh] {_httpimg_/zhtsrchon.gif}
535_widthtsrchx_[l=zh] {87}
536_heighttsrchx_[l=zh] {17}
537
538_httpiconcontoff_[l=zh] {_httpimg_/zhcontoff.gif}
539_httpiconconton_[l=zh] {_httpimg_/zhconton.gif}
540_widthcontx_[l=zh] {76}
541_heightcontx_[l=zh] {17}
542
543_httpiconhauth_[l=zh] {_httpimg_/zhh\_auth.gif}
544_widthhauth_[l=zh] {200}
545_heighthauth_[l=zh] {57}
546
547_httpicontlistgr_ {_httpimg_/tlistgr.gif}
548_httpicontlistof_ {_httpimg_/tlistof.gif}
549_httpicontliston_ {_httpimg_/tliston.gif}
550_widthtlistx_ {87}
551_heighttlistx_ {17}
552
553_httpiconttitlgr_ {_httpimg_/ttitlgr.gif}
554_httpiconttitlof_ {_httpimg_/ttitlof.gif}
555_httpiconttitlon_ {_httpimg_/ttitlon.gif}
556_widthttitlx_ {87}
557_heightttitlx_ {17}
558
559_httpiconttitlgr_[l=zh] {_httpimg_/zhttitlgr.gif}
560_httpiconttitlof_[l=zh] {_httpimg_/zhttitlof.gif}
561_httpiconttitlon_[l=zh] {_httpimg_/zhttitlon.gif}
562_widthttitlx_[l=zh] {87}
563_heightttitlx_[l=zh] {17}
564
565_httpicontpeopgr_ {_httpimg/tpeopgr.gif}
566_httpicontpeopof_ {_httpimg/tpeopof.gif}
567_httpicontpeopon_ {_httpimg/tpeopon.gif}
568_widthtpeopx_ {97}
569_heighttpeopx_ {17}
570
571_httpicontspace_ {_httpimg_/tspace.gif}
572_heighttspace_ {17}
573
574_httpiconwarning_ {_httpimg_/warning.gif}
575_widthwarning_ {30}
576_heightwarning_ {29}
577
578_httpiconhabout_ {_httpimg_/h\_about.gif}
579_httpiconhabout_ [l=mi] {_httpimg_/mh\_about.gif}
580_widthhabout_ {200}
581_widthhabout_ [l=mi] {262}
582_heighthabout_ {57}
583
584_httpiconhhome_ {_httpimg_/h\_home.gif}
585_widthhhome_ {200}
586_heighthhome_ {57}
587
588_httpiconhname_ {_httpimg_/h\_name.gif}
589_widthhname_ {200}
590_heighthname_ {57}
591
592_httpicontnamegr_ {_httpimg_/tnamegr.gif}
593_httpicontnameof_ {_httpimg_/tnameof.gif}
594_httpicontnameon_ {_httpimg_/tnameon.gif}
595_widthtnamex_ {95}
596_heighttnamex_ {17}
597
598_httpiconarrrght_ {_httpimg_/arrrght.gif}
599_widtharrrght_ {23}
600_heightarrrght_ {15}
601
602_httpiconopenbook_ {_httpimg_/openbook.gif}
603_widthopenbook_ {28}
604_heightopenbook_ {23}
605
606_httpiconaopenbk_ {_httpimg_/aopenbk.gif}
607_widthaopenbk_ {28}
608_heightaopenbk_ {23}
609
610_httpiconopenfldr_ {_httpimg_/openfldr.gif}
611_widthopenfldr_ {23}
612_heightopenfldr_ {15}
613
614_httpiconaopenfdr_ {_httpimg_/aopenfdr.gif}
615_widthaopenfdr_ {23}
616_heightaopenfdr_ {15}
617
618_httpiconbook_ {_httpimg_/book.gif}
619_widthbook_ {18}
620_heightbook_ {11}
621
622_httpiconabook_ {_httpimg_/abook.gif}
623_widthabook_ {18}
624_heightabook_ {11}
625
626_httpiconbshelf_ {_httpimg_/bshelf.gif}
627_widthbshelf_ {20}
628_heightbshelf_ {16}
629
630_httpiconabshelf_ {_httpimg_/abshelf.gif}
631_widthabshelf_ {20}
632_heightabshelf_ {16}
633
634_httpiconsmtext_ {_httpimg_/smtext.gif}
635_widthsmtext_ {23}
636_heightsmtext_ {15}
637
638_httpiconasmtext_ {_httpimg_/asmtext.gif}
639_widthasmtext_ {23}
640_heightasmtext_ {15}
641
642_httpiconclsdfldr_ {_httpimg_/clsdfldr.gif}
643_widthclsdfldr_ {23}
644_heightclsdfldr_ {15}
645
646_httpiconaclsdfdr_ {_httpimg_/aclsdfdr.gif}
647_widthaclsdfdr_ {23}
648_heightaclsdfdr_ {15}
649
650_httpiconhpref_[l=zh] {_httpimg_/zhh\_pref.gif}
651_widthhpref_[l=zh] {200}
652_heighthpref_[l=zh] {57}
653
654_httpiconhsearch_[l=zh] {_httpimg_/zhh\_sear.gif}
655_widthhsearch_[l=zh] {200}
656_heighthsearch_[l=zh] {57}
657
658_httpiconhtitle_[l=zh] {_httpimg_/zhh\_title.gif}
659_widthhtitle_[l=zh] {200}
660_heighthtitle_[l=zh] {57}
661
662_httpiconqryresb_[l=zh] {_httpimg_/zhqryresb.gif}
663_widthqryresb_[l=zh] {537}
664_heightqryresb_[l=zh] {17}
665
666
667#######################################################################
668# Icons
669#
670# Must not include links (so they can be used as links). If you want to
671# include links use _image
672#######################################################################
673
674_iconnext_{<img src="_httpiconmore_" align=absbottom
675width=_widthmore_ height=_heightmore_ border=0 alt="_texticonnext_">}
676_iconnext_[v=1] {_texticonnext_}
677
678_iconprev_{<img src="_httpiconless_" align=absbottom
679width=_widthless_ height=_heightless_ border=0 alt="_texticonprev_">}
680_iconprev_[v=1] {_texticonprev_}
681
682_icontabsearchgreen_ {<img
683src="_httpicontsrchgr_" height=_heighttsrchx_ width=_widthtsrchx_ border=0>}
684_icontabsearchgreen_[v=1] {_texticontabsearchgreen_}
685
686_icontabListgreen_ {<img
687src="_httpicontlistgr_" height=_heighttlistx_ width=_widthtlistx_ border=0>}
688_icontablistgreen_ [v=1] {_texticontablistgreen_}
689
690_icontabTitlegreen_ {<img
691src="_httpiconttitlgr_" height=_heightttitlx_ width=_widthttitlx_ border=0>}
692_icontabTitlegreen_[v=1] {_texticontabtitlegreen_}
693
694_icontabCreatorgreen_ {<img
695src="_httpicontauthgr_" height=_heighttauthx_ width=_widthtauthx_ border=0>}
696_icontabCreatorgreen_[v=1] {_texticontabauthorgreen_}
697
698_icontabSeriesgreen_ {<img
699src="_httpicontsergr_" height=_heighttserx_ width=_widthtserx_ border=0>}
700_icontabSeriesgreen_[v=1] {_texticontabseriesgreen_}
701
702_icontabDategreen_ {<img
703src="_httpicontdategr_" height=_heighttdatex_ width=_widthtdatex_ border=0>}
704_icontabDategreen_[v=1] {_texticontabdategreen_}
705
706_icontabSubjectgreen_ {<img
707src="_httpicontsubjgr_" height=_heighttsubjx_ width=widthtsubjx_ border=0>}
708_icontabSubjectgreen_[v=1] {_texticontabsubjectgreen_}
709
710_icontabHowtogreen_ {<img
711src="_httpiconthowgr_" height=_heightthowx_ width=_widththowx_ border=0>}
712_icontabHowtogreen_[v=1] {_texticontabhowgreen_}
713
714_icontabTopicgreen_ {<img
715src="_httpiconttopicgr_" height=_heightttopicx_ width=_widthttopicx_ border=0>}
716_icontabTopicgreen_[v=1] {_texticontabtopicgreen_}
717
718_icontabBrowsegreen_ {<img
719src="_httpicontbrwsegr_" height=_heighttbrwsex_ width=_widthtbrwsex_ border=0>}
720_icontabBrowsegreen_[v=1] {_texticontabbrwsegreen_}
721
722_icontabOrganizationgreen_ {<img
723src="_httpicontorggr_" height=_heighttorggr_ width=_widthtorggr_ border=0>}
724_icontabOrganizationgreen_[v=1] {_texticontaborggreen_}
725
726_icontabPeoplegreen_ {<img
727src="_httpicontpeopgr_" height=_heighttpeopx_ width=_widthtpeopx_ border=0>}
728_icontabPeoplegreen_[v=1] {_texticontabPeoplegreen_}
729
730_iconblankbar_ {<center><img src="_httpicondivb_" width=_widthdivb_ height=6></center>}
731_iconblankbar_[v=1] {<br><hr><br>}
732
733_icontext_ {<img border=0 align=absmiddle src="_httpiconitext_" width=_widthitext_ height=_heightitext_ alt="_texticontext_">}
734_icontext_[v=1] {_texticontext_}
735
736_iconblanktext_ {<img border=0 align=absmiddle src="_httpiconibtext_" width=_widthibtext_ height=_heightibtext_>}
737_iconblanktext_[v=1] {}
738
739_iconclosedbook_ {<img src="_httpiconbook_" width=_widthbook_ height=_heightbook_ border=0 alt="_texticonclosedbook_">}
740_iconclosedbook_ [v=1] {<small><b>_texticonclosedbook_: </b></small>}
741_iconclosedbook_ [v=1,l=zh]{<small><_font_><b>_texticonclosedbook_: </b></font></small>}
742
743
744#######################################################################
745# Image links
746#
747# These might include a link (not like an _icon_
748#######################################################################
749
750
751_imageabout_ {<a href="_httppageabout_"
752 onMouseover = "img\_on('about')"
753 onMouseout = "img\_off('about')"><img name="about"
754 src="_httpiconcabtof_" width=_widthcabtx_ height=_heightcabtx_
755 border=0 alt="_textimageabout_"></a>}
756
757_imageabout_[v=1] {
758<a href="_httppageabout_">_textimageabout_</a>
759}
760
761_imagehome_ {<a href="_httppagehome_"
762 onMouseover = "img\_on('home')"
763 onMouseout = "img\_off('home')"><img name="home"
764 src="_httpiconchomeof_" width="_widthchomex_" height="_heightchomex_"
765 border="0" alt="_textimagehome_"></a>}
766
767_imagehome_[v=1] {
768<a href="_httppagehome_">_textimagehome_</a>
769}
770
771
772_imagehelp_ {<a href="_httppagehelp_"
773 onMouseover = "img\_on('help')"
774 onMouseout = "img\_off('help')"><img name="help"
775 src="_httpiconchelpof_" width="_widthchelpx_" height="_heightchelpx_"
776 border="0" alt="_textimagehelp_"></a>}
777
778_imagehelp_[v=1] {
779<a href="_httppagehelp_">_textimagehelp_</a>
780}
781
782
783_imagepref_ {<a href="_httppagepref_"
784 onMouseover = "img\_on('pref')"
785 onMouseout = "img\_off('pref')"><img name="pref"
786 src="_httpiconcprefof_" width="_widthcprefx_" height="_heightcprefx_" border="0" alt="_textimagepref_"></a>}
787
788_imagepref_[v=1] {
789<a href="_httppagepref_">_textimagepref_</a>
790}
791
792_imagegreenstone_ {<img src="_httpicongsdl_" width="_widthgsdl_" height="_heightgsdl_" border="0" alt="_textimagegreenstone_" hspace=0>}
793
794_imagegreenstone_[v=1] {_textimagegreenstone_}
795
796
797################################
798# English Macros #
799################################
800
801# moved to english.dm
802
803################################
804# Maori Macros #
805################################
806
807# moved to maori.dm
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
Note: See TracBrowser for help on using the repository browser.