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

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

lots of little changes to macro files

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