source: trunk/gsdl/macros/base.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: 30.4 KB
Line 
1#######################################################################
2# GLOBAL MACROS
3#######################################################################
4
5package Global
6
7
8#######################################################################
9# page content
10#
11# these should always be overridden for each page/collection
12#######################################################################
13
14_content_ {<center><blink><b><font size="7" color="#FF0000">UNDEFINED PAGE</font></b></blink></center>}
15_imagethispage_ {}
16_imagecollection_ {}
17
18
19#######################################################################
20# Macros whose values are set from within the server at runtime. These
21# are here only for reference and to set default values if required.
22#######################################################################
23
24_gwcgi_ {http://nowhere.nzdl.org/cgi-bin/gw}
25_httpprefix_ {http://nowhere.nzdl.org}
26
27_cookie_ {}
28_g_ {00}
29_collection_ {}
30_compressedoptions_ {}
31_querystring_ {}
32_urlsafequerystring_ {}
33_notdetached_ {0}
34_istitle_ {0}
35
36
37
38#######################################################################
39# navigation bar
40#
41# these macros must be overridden for any collections using
42# options different from the default (i.e. search, titles and authors)
43#######################################################################
44
45_imagestandardbar_ {<center>
46<nobr>_icontabsearchgreen__icontabspacer__imagebrowsetitles__icontabspacer2__imagebrowseauthors_</nobr>
47</center>
48<p>
49}
50
51_imagestandardbar_[version=text] {
52_imagesearch_<br>
53_imagebrowsetitles_<br>
54_imagebrowseauthors_<br>
55<p>
56}
57
58
59#######################################################################
60# scripts
61#######################################################################
62
63# the _javalinks_ macros are the flashy image links at the top right of
64# the page. this macro should be overridden for those collections/pages
65# needing links different from the default (i.e. about, home, help,
66# and preferences.
67
68_javalinks_ {_imageabout__imagehome__imagehelp__imagepref_}
69_javalinks_ [version=text] }
70_imageabout_<br>
71_imagehome_<br>
72_imagehelp_<br>
73_imagepref_<br>
74}
75
76# the javaimages macros should contain _javaX_ macros for each javascript
77# image link within the page. it should be overridden for collections/pages
78# containing image links other than the default (i.e. home, help, preferences,
79# search, titles, and authors.
80
81# those java image links appearing at top right of page
82_javaimagesheader_ {
83_javaabout_
84_javahome_
85_javahelp_
86_javapref_
87}
88
89# those java image links appearing in navigation bar
90_javaimagesnavbar_ {
91_javasearch_
92_javatitles_
93_javaauthors_
94}
95
96# any other java image links appearing in page
97_javaimagescontent_ {}
98
99
100_globalscripts_{
101<script>
102<!--
103 function img\_on(imgName) \{
104 if (version == "n3") \{
105 imgOn = eval(imgName + "\_on.src");
106 document [imgName].src = imgOn;
107 \}
108 \}
109
110 function img\_off(imgName) \{
111 if (version == "n3") \{
112 imgOff = eval(imgName + "\_off.src");
113 document [imgName].src = imgOff;
114 \}
115 \}
116
117 browserName = navigator.appName;
118 browserVer = parseInt(navigator.appVersion);
119 if ((browserName == "Netscape" || browserName == "Microsoft Internet Explorer")
120 && browserVer >= 3) version = "n3";
121 else version = "n2";
122
123 if (version == "n3") \{
124 _javaimagesheader_
125 _javaimagesnavbar_
126 _javaimagescontent_
127 \}
128// -->
129</script>
130}
131
132_javaabout_ {
133 about\_on = new Image(_widthtaboutx_, _heighttaboutx_);
134 about\_on.src = "_httpicontabouton_";
135 about\_off = new Image(_widthtaboutx_, _heighttaboutx_);
136 about\_off.src = "_httpicontaboutof_";
137}
138
139_javahome_ {
140 home\_on = new Image(_widthchomex_, _heightchomex_);
141 home\_on.src = "_httpiconchomeon_";
142 home\_off = new Image(_widthchomex_, _heightchomex_);
143 home\_off.src = "_httpiconchomeof_";
144}
145
146_javahelp_ {
147 help\_on = new Image(_widthchelpx_, _heightchelpx_);
148 help\_on.src = "_httpiconchelpon_";
149 help\_off = new Image(_widthchelpx_, _heightchelpx_);
150 help\_off.src = "_httpiconchelpof_";
151}
152
153_javapref_ {
154 pref\_on = new Image(_widthcprefx_, _heightcprefx_);
155 pref\_on.src = "_httpiconcprefon_";
156 pref\_off = new Image(_widthcprefx_, _heightcprefx_);
157 pref\_off.src = "_httpiconcprefof_";
158}
159
160_javasearch_ {
161 search\_on = new Image(_widthtsrchx_, _heighttsrchx_);
162 search\_on.src = "_httpicontsrchon_";
163 search\_off = new Image(_widthtsrchx_, _heighttsrchx_);
164 search\_off.src = "_httpicontsrchof_";
165}
166
167_javatitles_ {
168 titles\_on = new Image(_widthttitlx_, _heightttitlx_);
169 titles\_on.src = "_httpiconttitlon_";
170 titles\_off = new Image(_widthttitlx_, _heightttitlx_);
171 titles\_off.src = "_httpiconttitlof_";
172}
173
174_javaauthors_ {
175 authors\_on = new Image(_widthtauthx_, _heighttauthx_);
176 authors\_on.src = "_httpicontauthon_";
177 authors\_off = new Image(_widthtauthx_, _heighttauthx_);
178 authors\_off.src = "_httpicontauthof_";
179}
180
181_javaseries_ {
182 series\_on = new Image(_widthtserx_, _heighttserx_);
183 series\_on.src = "_httpicontseron_";
184 series\_off = new Image(_widthtserx_, _heighttserx_);
185 series\_off.src = "_httpicontserof_";
186}
187
188_javadates_ {
189 dates\_on = new Image(_widthtdatex_, _heighttdatex_);
190 dates\_on.src = "_httpicontdateon_";
191 dates\_off = new Image(_widthtdatex_, _heighttdatex_);
192 dates\_off.src = "_httpicontdateof_";
193}
194
195_javadetach_ {
196 detach\_on = new Image(_widthedtchx_, _heightedtchx_);
197 detach\_on.src = "_httpiconedtchon_";
198 detach\_off = new Image(_widthedtchx_, _heightedtchx_);
199 detach\_off.src = "_httpiconedtchof_";
200}
201
202_javaexpandcontents_ {
203 expcon\_on = new Image(_widtheexpcx_, _heighteexpcx_);
204 expcon\_on.src = "_httpiconeexpcon_";
205 expcon\_off = new Image(_widtheexpcx_, _heighteexpcx_);
206 expcon\_off.src = "_httpiconeexpcof_";
207}
208
209_javacontractcontents_ {
210 concon\_on = new Image(_widtheconcx_, _heighteconcx_);
211 concon\_on.src = "_httpiconeconcon_";
212 concon\_off = new Image(_widtheconcx_, _heighteconcx_);
213 concon\_off.src = "_httpiconeconcof_";
214}
215
216_javaexpandtext_ {
217 alltext\_on = new Image(_widthealltx_, _heightealltx_);
218 alltext\_on.src = "_httpiconeallton_";
219 alltext\_off = new Image(_widthealltx_, _heightealltx_);
220 alltext\_off.src = "_httpiconealltof_";
221}
222
223_javacontracttext_ {
224 thissec\_on = new Image(_widthetsecx_, _heightetsecx_);
225 thissec\_on.src = "_httpiconetsecon_";
226 thissec\_off = new Image(_widthetsecx_, _heightetsecx_);
227 thissec\_off.src = "_httpiconetsecof_";
228}
229
230_javacontinue_ {
231 cont\_on = new Image(_widthcontx_, _heightcontx_);
232 cont\_on.src = "_httpiconconton_";
233 cont\_off = new Image(_widthcontx_, _heightcontx_);
234 cont\_off.src = "_httpiconcontoff_";
235}
236
237
238#######################################################################
239# general web macros
240#######################################################################
241
242_mailaddr_ {[email protected]}
243
244
245#######################################################################
246# link macros
247#######################################################################
248
249_linkotherversion_ {
250<a href="_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&v=1&g=_g_">
251_textgotext_
252</a>
253}
254
255_linkotherversion_[version=text] {
256<a href="_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&v=0&g=_g_">
257_textgographics_
258</a>
259}
260
261_linkotherlanguage_ {
262<a href="_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&l=mi&g=_g_">
263_textgomaori_
264</a>
265}
266
267_linkotherlanguage_[language=mi] {
268<a href="_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&l=e&g=_g_">
269_textgoenglish_
270</a>
271}
272
273
274#######################################################################
275# http macros
276#
277# These contain the url without any quotes
278#######################################################################
279
280_httpimg_ {_httpprefix_/images}
281
282_httpcollection_{_httpprefix_/collect/_collection_}
283
284_httppagex_ {_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&a=p&p=_1_}
285_httppageabout_ {_httppagex_(about)}
286_httppagehome_ {_httppagex_(home)}
287_httppagehelp_ {_httppagex_(help)}
288_httppagepref_ {_httppagex_(preferences)}
289
290_httpgreenstone_ {_httppagex_(gsdl)}
291
292
293_httpquery_ {_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&a=q}
294_httpqueryresults_ {_httpquery_}
295_httpbrowse_ {_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&a=b}
296_httptext_ {_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&a=t}
297_httpbrowsetitles_ {_httpbrowse_&d=T.1}
298_httpbrowseauthors_ {_httpbrowse_&d=A.1}
299_httpbrowseseries_ {_httpbrowse_&d=C.1}
300_httpbrowsedates_ {_httpbrowse_&d=D.1}
301
302_httpiconchalk_ {_httpimg_/chalk.gif}
303_widthchalk_ {2000}
304_heightchalk_ {10}
305
306_httpiconchelpof_ {_httpimg_/chelpof.gif}
307_httpiconchelpof_ [language=mi] {_httpimg_/mchelpof.gif}
308_httpiconchelpon_ {_httpimg_/chelpon.gif}
309_httpiconchelpon_ [language=mi] {_httpimg_/mchelpon.gif}
310_widthchelpx_ {38}
311_widthchelpx_ [language=mi] {59}
312_heightchelpx_ {20}
313
314_httpiconchomeof_ {_httpimg_/chomeof.gif}
315_httpiconchomeof_ [language=mi] {_httpimg_/mchomeof.gif}
316_httpiconchomeon_ {_httpimg_/chomeon.gif}
317_httpiconchomeon_ [language=mi] {_httpimg_/mchomeon.gif}
318_widthchomex_ {41}
319_widthchomex_ [language=mi] {52}
320_heightchomex_ {20}
321
322_httpiconclsdfldr_ {_httpimg_/clsdfldr.gif}
323_widthclsdfldr_ {23}
324_heightclsdfldr_ {15}
325
326_httpiconcontoff_ {_httpimg_/contoff.gif}
327_httpiconconton_ {_httpimg_/conton.gif}
328_widthcontx_ {76}
329_heightcontx_ {17}
330
331_httpiconcprefof_ {_httpimg_/cprefof.gif}
332_httpiconcprefof_ [language=mi] {_httpimg_/mcprefof.gif}
333_httpiconcprefon_ {_httpimg_/cprefon.gif}
334_httpiconcprefon_ [language=mi] {_httpimg_/mcprefon.gif}
335_widthcprefx_ {85}
336_widthcprefx_ [language=mi] {101}
337_heightcprefx_ {20}
338
339_httpicondivb_ {_httpimg_/divb.gif}
340_widthdivb_ {537}
341_heightdivb_ {17}
342
343_httpiconealltof_ {_httpimg_/ealltof.gif}
344_httpiconealltof_ [language=mi] {_httpimg_/mealltof.gif}
345_httpiconeallton_ {_httpimg_/eallton.gif}
346_httpiconeallton_ [language=mi] {_httpimg_/meallton.gif}
347_widthealltx_ {44}
348_widthealltx_ [language=mi] {40}
349_heightealltx_ {30}
350
351_httpiconeconcof_ {_httpimg_/econcof.gif}
352_httpiconeconcon_ {_httpimg_/econcon.gif}
353_widtheconcx_ {65}
354_heighteconcx_ {30}
355
356_httpiconedtchof_ {_httpimg_/edtchof.gif}
357_httpiconedtchof_ [language=mi] {_httpimg_/medtchof.gif}
358_httpiconedtchon_ {_httpimg_/edtchon.gif}
359_httpiconedtchon_ [language=mi] {_httpimg_/medtchon.gif}
360_widthedtchx_ {45}
361_widthedtchx_ [language=mi] {54}
362_heightedtchx_ {30}
363
364_httpiconeexpcof_ {_httpimg_/eexpcof.gif}
365_httpiconeexpcon_ {_httpimg_/eexpcon.gif}
366_widtheexpcx_ {62}
367_heighteexpcx_ {30}
368
369_httpiconetsecof_ {_httpimg_/etsecof.gif}
370_httpiconetsecof_ [language=mi] {_httpimg_/metsecof.gif}
371_httpiconetsecon_ {_httpimg_/etsecon.gif}
372_httpiconetsecon_ [language=mi] {_httpimg_/metsecon.gif}
373_widthetsecx_ {61}
374_widthetsecx_ [language=mi] {51}
375_heightetsecx_ {30}
376
377_httpicongsdl_ {_httpimg_/gsdl.gif}
378_widthgsdl_ {140}
379_heightgsdl_ {77}
380
381_httpiconglob_ {_httpimg_/glob.gif}
382_widthglob_ {72}
383_heightglob_ {73}
384
385_httpiconhhelp_ {_httpimg_/h\_help.gif}
386_widthhhelp_ {200}
387_heighthhelp_ {57}
388
389_httpiconhsearch_ {_httpimg_/h\_search.gif}
390_widthhsearch_ {200}
391_heighthsearch_ {57}
392
393_httpiconitext_ {_httpimg_/itext.gif}
394_widthitext_ {16}
395_heightitext_ {21}
396
397_httpiconless_ {_httpimg_/less.gif}
398_widthless_ {30}
399_heightless_ {16}
400
401_httpiconmore_ {_httpimg_/more.gif}
402_widthmore_ {30}
403_heightmore_ {16}
404
405_httpiconopenbook_ {_httpimg_/openbook.gif}
406_widthopenbook_ {28}
407_heightopenbook_ {23}
408
409_httpiconopenfldr_ {_httpimg_/openfldr.gif}
410_widthopenfldr_ {23}
411_heightopenfldr_ {15}
412
413_httpiconqryresb_ {_httpimg_/qryresb.gif}
414_widthqryresb_ {537}
415_heightqryresb_ {17}
416
417_httpiconsmtext_ {_httpimg_/smtext.gif}
418_widthsmtext_ {23}
419_heightsmtext_ {15}
420
421_httpiconspacer_ {_httpimg_/spacer.gif}
422_widthspacer_ {42}
423_heightspacer_ {4}
424
425_httpicontabspace_ {_httpimg_/tabspace.gif}
426_widthtabspace_ {23}
427_heighttabspace_ {15}
428
429_httpicontauthgr_ {_httpimg_/tauthgr.gif}
430_httpicontauthof_ {_httpimg_/tauthof.gif}
431_httpicontauthon_ {_httpimg_/tauthon.gif}
432_widthtauthx_ {110}
433_heighttauthx_ {17}
434
435_httpicontsergr_ {_httpimg_/tsergr.gif}
436_httpicontsergr_ [language=mi] {_httpimg_/mtsergr.gif}
437_httpicontsergr_ [language=mi] {_httpimg_/mtsergr.gif}
438_httpicontserof_ {_httpimg_/tserof.gif}
439_httpicontserof_ [language=mi] {_httpimg_/mtserof.gif}
440_httpicontseron_ {_httpimg_/tseron.gif}
441_httpicontseron_ [language=mi] {_httpimg_/mtseron.gif}
442_widthtserx_ {87}
443_widthtserx_ [language=mi] {192}
444_heighttserx_ {17}
445
446_httpicontdategr_ {_httpimg_/tdategr.gif}
447_httpicontdategr_ [language=mi] {_httpimg_/mtdategr.gif}
448_httpicontdateof_ {_httpimg_/tdateof.gif}
449_httpicontdateof_ [language=mi] {_httpimg_/mtdateof.gif}
450_httpicontdateon_ {_httpimg_/tdateon.gif}
451_httpicontdateon_ [language=mi] {_httpimg_/mtdateon.gif}
452_widthtdatex_ {87}
453_heighttdatex_ {17}
454
455_httpicontsrchgr_ {_httpimg_/tsrchgr.gif}
456_httpicontsrchgr_ [language=mi] {_httpimg_/mtsrchgr.gif}
457_httpicontsrchof_ {_httpimg_/tsrchof.gif}
458_httpicontsrchof_ [language=mi] {_httpimg_/mtsrchof.gif}
459_httpicontsrchon_ {_httpimg_/tsrchon.gif}
460_httpicontsrchon_ [language=mi] {_httpimg_/tsrchon.gif}
461_widthtsrchx_ {87}
462_heighttsrchx_ {17}
463
464_httpiconttitlgr_ {_httpimg_/ttitlgr.gif}
465_httpiconttitlof_ {_httpimg_/ttitlof.gif}
466_httpiconttitlon_ {_httpimg_/ttitlon.gif}
467_widthttitlx_ {87}
468_heightttitlx_ {17}
469
470_httpicontspace_ {_httpimg_/tspace.gif}
471_widthtspace_ {138}
472_widthtspace_ [language=mi] {85}
473_widthtspace2_ {115}
474_heighttspace_ {17}
475
476_httpiconwarning_ {_httpimg_/warning.gif}
477_widthwarning_ {30}
478_heightwarning_ {29}
479
480_httpiconhabout_ {_httpimg_/h\_about.gif}
481_widthhabout_ {200}
482_heighthabout_ {57}
483
484_httpiconhhome_ {_httpimg_/h\_home.gif}
485_widthhhome_ {200}
486_heighthhome_ {57}
487
488_httpiconhname_ {_httpimg_/h\_name.gif}
489_widthhname_ {200}
490_heighthname_ {57}
491
492_httpicontaboutof_ {_httpimg_/taboutof.gif}
493_httpicontabouton_ {_httpimg_/tabouton.gif}
494_widthtaboutx_ {50}
495_heighttaboutx_ {20}
496
497_httpicontnamegr_ {_httpimg_/tnamegr.gif}
498_httpicontnameof_ {_httpimg_/tnameof.gif}
499_httpicontnameon_ {_httpimg_/tnameon.gif}
500_widthtnamex_ {95}
501_heighttnamex_ {17}
502
503_httpiconarrrght_ {_httpimg_/arrrght.gif}
504_widtharrrght_ {23}
505_heightarrrght_ {15}
506
507_httpiconbook_ {_httpimg_/book.gif}
508_widthbook_ {18}
509_heightbook_ {11}
510
511_httpiconbshelf_ {_httpimg_/bshelf.gif}
512_widthbshelf_ {20}
513_heightbshelf_ {16}
514
515
516#######################################################################
517# Icons
518#
519# Must not include links (so they can be used as links). If you want to
520# include links use _image
521#######################################################################
522
523_iconmore_{<img src="_httpiconmore_" align=absbottom width="_widthmore_" height="_heightmore_" border="0" alt="_textnext_">}
524_iconmore_[version=text] {<_font_>_textnext2_</font>}
525
526_iconalphmore_{<img src="_httpiconmore_" align=absbottom width="_widthmore_" height="_heightmore_" border="0" alt="_textnext3_">}
527_iconalphmore_[version=text] {<_font_>_textnext4_</font>}
528
529_iconnext_{<img src="_httpiconmore_" align=absbottom width="_widthmore_" height="_heightmore_" border="0">}
530_iconnext_[version=text] {}
531
532_iconless_{<img src="_httpiconless_" align=absbottom width="_widthless_" height="_heightless_" border="0" alt="_textprev_">}
533_iconless_[version=text] {<_font_>_textprev2_</font>}
534
535_iconalphless_{<img src="_httpiconless_" align=absbottom width="_widthless_" height="_heightless_" border="0" alt="_textprev3_">}
536_iconalphless_[version=text] {<_font_>_textprev4_</font>}
537
538_iconprev_{<img src="_httpiconless_" align=absbottom width="_widthless_" height="_heightless_" border="0">}
539_iconprev_[version=text] {}
540
541_icontabspacer_ {<img src="_httpicontspace_" width="_widthtspace_" height="_heighttspace_">}
542_icontabspacer_ [version=text] {}
543_icontabspacer2_ {<img src="_httpicontspace_" width="_widthtspace2_" height="_heighttspace_">}
544_icontabspacer2_ [version=text] {}
545
546_icontabsearchgreen_ {<img src="_httpicontsrchgr_" height=_heighttsrchx_ width=_widthtsrchx_ alt="_texticontabsearchgreen_" border=0>}
547_icontabsearchgreen_[version=text] {_texticontabsearchgreen_}
548
549_icontabtitlegreen_ {<img src="_httpiconttitlgr_" height=_heightttitlx_ width=_widthttitlx_ alt="_texticontabtitlegreen_" border=0>}
550_icontabtitlegreen_[version=text] {_texticontabtitlegreen_}
551
552_icontabauthorgreen_ {<img src="_httpicontauthgr_" height=_heighttauthx_ width=_widthtauthx_ alt="_texticontabauthorgreen_" border=0>}
553_icontabauthorgreen_[version=text] {_texticontabauthorgreen_}
554
555_icontabseriesgreen_ {<img src="_httpicontsergr_" height="_heighttserx_" width="_widthtserx_" alt="_texticontabseriesgreen_" border="0">}
556_icontabseriesgreen_[version=text] {_texticontabseriesgreen_}
557
558_icontabdatesgreen_ {<img src="_httpicontdategr_" height="_heighttdatex_" width="_widthtdatex_" alt="_texticontabdatesgreen_" border="0">}
559_icontabdatesgreen_[version=text] {_texticontabdatesgreen_}
560
561_iconblankbar_ {<center><img src="_httpicondivb_" width="_widthdivb_" height="_heightdivb_"></center>}
562_iconblankbar_[version=text] {<br><hr><br>}
563
564_icontext_ {<img border=0 align=absmiddle src="_httpiconitext_" width="_widthitext_" height="_heightitext_" alt="_texticontext_">}
565_icontext_[version=text] {<_font_>_texticontext_</font>}
566
567_iconsmalltext_ {<img src="_httpiconsmtext_" border="0" width="_widthsmtext_" height="_heightsmtext_" alt="_texticonsmalltext_">}
568_iconsmalltext_ [version=text] {<small><_font_><b>_texticonsmalltext2_</b></font></small>}
569
570_iconclosedfolder_ {<img src="_httpiconclsdfldr_" border="0" width="_widthclsdfldr_" height="_heightclsdfldr_" alt="_texticonclosedfolder_">}
571_iconclosedfolder_ [version=text] {<small><_font_><b>_texticonclosedfolder2_</b></font></small>}
572
573_iconopenfolder_ {<img src="_httpiconopenfldr_" border="0" width="_widthopenfldr_" height="_heightopenfldr_" alt="_texticonopenfolder_">}
574_iconopenfolder_ [version=text] {<small><_font_><b>_texticonopenfolder2_</b></font></small>}
575
576_iconclosedbook_ {<img src="_httpiconbook_" width=_widthbook_ height=_heightbook_ border=0 alt="_texticonclosedbook_">}
577_iconclosedbook_ [version=text] {<small><_font_><b>_texticonclosedbook_: </b></font></small>}
578
579_iconopenbook_ {<img src="_httpiconopenbook_" width="_widthopenbook_" height="_heightopenbook_" border="0" alt="_texticonopenbook_">}
580_iconopenbook_ [version=text] {<small><_font_><b>_texticonopenbook_: </b></font></small>}
581
582_iconopenbookshelf_ {<img src="_httpiconbshelf_" border=0 width=_widthbshelf_ height=_heightbshelf_ alt="_texticonopenbookshelf_">}
583_iconopenbookshelf_ [version=text] {<small><_font_><b>_texticonopenbookshelf_: </b></font></small>}
584
585_iconclosedbookshelf_ {<img src="_httpiconbshelf_" border="0" width="_widthbshelf_" height="_heightbshelf_" alt="_texticonclosedbookshelf_">}
586_iconclosedbookshelf_ [version=text] {<small><_font_><b>_texticonclosedbookshelf_: </b></font></small>}
587
588_iconpointer_ {<img src="_httpiconarrrght_" border=0 width=_widtharrrght_ height=_heightarrrght_>}
589_iconpointer_ [version=text] {<small><_font_><b>_texticonpointer_-> </b></font></small>}
590
591_icontab_ {<img src="_httpicontabspace_" width="_widthtabspace_" height="_heighttabspace_">}
592
593_iconcontracttoc_ {<img name="concon" src="_httpiconeconcof_" width="_widtheconcx_" height="_heighteconcof_" alt="_texticoncontracttoc_" border="0">}
594_iconcontracttoc_[version=text] {_texticoncontracttoc_}
595
596_iconexpandtoc_ {<img name="expcon" src="_httpiconeexpcof_" width="_widtheexpx_" height="_heighteexpcx_" alt="_texticonexpandtoc_" border="0">}
597_iconexpandtoc_[version=text] {_texticonexpandtoc_}
598
599_iconcontracttext_ {<img name="thissec" src="_httpiconetsecof_" width="_widthetsecx_" height="_heightetsecx_" alt="_texticoncontracttext_" border="0">}
600_iconcontracttext_[version=text] {_texticoncontracttext_}
601
602_iconexpandtext_ {<img name="alltext" src="_httpiconealltof_" width="_widthealltx_" height="_heightealltx_" alt="_texticonexpandtext_" border="0">}
603_iconexpandtext_[version=text] {_texticonexpandtext_}
604
605_icondetach_ {<img name="detach" src="_httpiconedtchof_" width="_widthedtchx_" height="_heightedtchx_" alt="_texticondetach_" border="0">}
606_icondetach_[version=text] {_texticondetach_}
607
608_iconwarning_ {<img src="_httpiconwarning_" width="_widthwarning_" height="_heightwarning_" border="0" align="left">}
609_iconwarning_ [version=text] {_texticonwarning_}
610
611_iconcont_ {<img name="cont" src="_httpiconcontoff_" width="_widthcontx_" height="_heightcontx_" border="0">}
612_iconcont_ [version=text] {_texticoncont_}
613
614_iconglobhelp_ {<img src="_httpiconglob_" width="_widthglob_" height="_heightglob_" alt="_texticonglobhelp_" border="0">}
615_iconglobhelp_ [version=text] {_texticonglobhelp_}
616
617
618#######################################################################
619# Image links
620#
621# These might include a link (not like an _icon_
622#######################################################################
623
624
625_imageabout_ {<a href="_httppageabout_"
626 onMouseover = "img\_on('about')"
627 onMouseout = "img\_off('about')"><img name="about"
628 src="_httpicontaboutof_" width=_widthtaboutx_ height=_heighttaboutx_
629 border=0 alt="_textimageabout_"></a>}
630
631_imageabout_[version=text] {
632<a href="_httppageabout_">_textimageabout_</a>
633}
634
635_imagehome_ {<a href="_httppagehome_"
636 onMouseover = "img\_on('home')"
637 onMouseout = "img\_off('home')"><img name="home"
638 src="_httpiconchomeof_" width="_widthchomex_" height="_heightchomex_"
639 border="0" alt="_textimagehome_"></a>}
640
641_imagehome_[version=text] {
642<a href="_httppagehome_">_textimagehome_</a>
643}
644
645
646_imagehelp_ {<a href="_httppagehelp_"
647 onMouseover = "img\_on('help')"
648 onMouseout = "img\_off('help')"><img name="help"
649 src="_httpiconchelpof_" width="_widthchelpx_" height="_heightchelpx_"
650 border="0" alt="_textimagehelp_"></a>}
651
652_imagehelp_[version=text] {
653<a href="_httppagehelp_">_textimagehelp_</a>
654}
655
656
657_imagepref_ {<a href="_httppagepref_"
658 onMouseover = "img\_on('pref')"
659 onMouseout = "img\_off('pref')"><img name="pref"
660 src="_httpiconcprefof_" width="_widthcprefx_" height="_heightcprefx_" border="0" alt="_textimagepref_"></a>}
661
662_imagepref_[version=text] {
663<a href="_httppagepref_">_textimagepref_</a>
664}
665_imagepref_[style=htmlonly] {}
666
667
668_imagegreenstone_ {<a href="_httpgreenstone_"><img src="_httpicongsdl_" width="_widthgsdl_" height="_heightgsdl_" border="0" alt="_textimagegreenstone_" hspace=0></a>
669}
670
671_imagegreenstone_[version=text] {
672<a href="_httpgreenstone_">_textimagegreenstone_</a>
673}
674
675
676_imageglobhelp_ {<a href="_httppagex_(globhelp)">_iconglobhelp_</a>
677}
678
679
680_imagesearch_ {<a href="_httpquery_"
681 onMouseover = "img\_on('search')"
682 onMouseout = "img\_off('search')"><img name="search"
683 src="_httpicontsrchof_" width="_widthtsrchx_" height="_heighttsrchx_"
684 border="0" alt="_textimagesearch_"></a>}
685
686_imagesearch_[version=text] {<a href="_httpquery_"><_font_>_textimagesearch_</font></a><br>
687}
688
689_imagesearch_[style=htmlonly] {<img src="_httpicontspace_" alt="" width="_widthtsrchx_" height="_heighttsrchx_">}
690
691_imagesearch_[style=htmlonly,version=text] {}
692
693
694_imagebrowsetitles_ {<a href="_httpbrowsetitles_"
695 onMouseover = "img\_on('titles')"
696 onMouseout = "img\_off('titles')"><img name="titles"
697 src="_httpiconttitlof_" width=_widthttitlx_ height=_heightttitlx_
698 border=0 alt="_textimagebrowsetitles_"></a>}
699
700_imagebrowsetitles_[version=text] {<a href="_httpbrowsetitles_"><_font_>_textimagebrowsetitles_</font></a><br>
701}
702
703_imagebrowseauthors_ {<a href="_httpbrowseauthors_"
704 onMouseover = "img\_on('authors')"
705 onMouseout = "img\_off('authors')"><img name="authors"
706 src="_httpicontauthof_" width=_widthtauthx_ height=_heighttauthx_
707 border=0 alt="_textimagebrowseauthors_"></a>}
708
709_imagebrowseauthors_[version=text] {<a href="_httpbrowseauthors_"><_font_>_textimagebrowseauthors_</font></a><br>
710}
711
712
713_imagebrowseseries_ {<a href="_httpbrowseseries_"
714 onMouseover = "img\_on('series')"
715 onMouseout = "img\_off('series')"><img name="series"
716 src="_httpicontserof_" width="_widthtserx_" height="_heighttserx_"
717 border="0" alt="_textimagebrowseseries_"></a>}
718
719_imagebrowseseries_[version=text] {<a href="_httpbrowseseries_"><_font_>_textimagebrowseseries_</font></a><br>
720}
721
722_imagebrowsedates_ {<a href="_httpbrowsedates_"
723 onMouseover = "img\_on('dates')"
724 onMouseout = "img\_off('dates')"><img name="dates"
725 src="_httpicontdateof_" width="_widthtdatex_" height="_heighttdatex_"
726 border="0" alt="_textimagebrowsedates_"></a>}
727
728_imagebrowsedates_[version=text] {<a href="_httpbrowsedates_"><_font_>_textimagebrowsedates_</font></a><br>
729}
730
731_imagedetach_ {onMouseover = "img\_on('detach')"
732onMouseout = "img\_off('detach')">_icondetach_</a>}
733_imagedetach_[version=text] {><_font_>_texticondetach_</font></a><br>}
734
735_imagecontracttoc_ {" onMouseover = "img\_on('concon')"
736onMouseout = "img\_off('concon')">_iconcontracttoc_</a>}
737_imagecontracttoc_[version=text] {"><_font_>_texticoncontracttoc_</font></a><br>}
738_imagecontracttoc_[style=htmlonly] {}
739
740_imageexpandtoc_ {" onMouseover = "img\_on('expcon')"
741onMouseout = "img\_off('expcon')">_iconexpandtoc_</a>}
742_imageexpandtoc_ [version=text] {"><_font_>_texticonexpandtoc_</font></a><br>}
743_imageexpandtoc_ [style=htmlonly] {}
744
745_imagecontracttext_ {0" onMouseover = "img\_on('thissec')"
746onMouseout = "img\_off('thissec')">_iconcontracttext_</a>}
747_imagecontracttext_[version=text] {0"><_font_>display only current section</font></a><br>}
748_imagecontracttext_[style=htmlonly] {}
749
750_imageexpandtext_ {1" onMouseover = "img\_on('alltext')"
751onMouseout = "img\_off('alltext')">_iconexpandtext_</a>}
752_imageexpandtext_[version=text] {1"><_font_>display all text</font></a><br>}
753_imageexpandtext_[style=htmlonly] {}
754
755_imagecontracttoc_ {" onMouseover = "img\_on('concon')"
756onMouseout = "img\_off('concon')">_iconcontracttoc_</a>}
757_imagecontracttoc_[version=text] {"><_font_>_texticoncontracttoc_</font></a><br>}
758_imagecontracttoc_[style=htmlonly] {}
759
760_imageexpandtoc_ {" onMouseover = "img\_on('expcon')"
761onMouseout = "img\_off('expcon')">_iconexpandtoc_</a>}
762_imageexpandtoc_ [version=text] {"><_font_>_texticonexpandtoc_</font></a><br>}
763_imageexpandtoc_ [style=htmlonly] {}
764
765_imagecontracttext_ {0" onMouseover = "img\_on('thissec')"
766onMouseout = "img\_off('thissec')">_iconcontracttext_</a>}
767_imagecontracttext_[version=text] {0"><_font_>display only current section</font></a><br>}
768_imagecontracttext_[style=htmlonly] {}
769
770_imageexpandtext_ {1" onMouseover = "img\_on('alltext')"
771onMouseout = "img\_off('alltext')">_iconexpandtext_</a>}
772_imageexpandtext_[version=text] {1"><_font_>display all text</font></a><br>}
773_imageexpandtext_[style=htmlonly] {}
774
775_imagecont_ {onMouseover = "img\_on('cont')"
776onMouseout = "img\_off('cont')">_iconcont_</a>
777}
778_imagecont_[version=text] {>_texticoncont_</a><br>}
779
780
781
782################################
783# English Macros #
784################################
785
786_textimagecollection_ {}
787_textimageabout_ {About page}
788_textimagehome_ {Home page}
789_textimagehelp_ {Help page}
790_textimagepref_ {Preferences page}
791_textimagegreenstone_ {Greenstone Digital Library Software}
792
793_textimagesearch_ {Search for specific terms}
794_textimagebrowsetitles_ {Browse alphabetical list of titles}
795_textimagebrowseauthors_ {Browse alphabetical list of authors}
796_textimagebrowseseries_ {Browse newspapers by issue}
797_textimagebrowsedates_ {Browse newspapers by date}
798
799
800_textgotext_ {View this page in text format}
801_textgographics_ {View this page in graphics format}
802
803_texticontabsearchgreen_{Search}
804_texticontabdatesgreen_{Dates}
805_texticontabseriesgreen_{Series}
806_texticontabauthorgreen_{Authors A-Z}
807_texticontabtitlegreen_{Titles A-Z}
808_texticontext_ {View the document}
809_texticonopenbookshelf_ {close this section of the library}
810_texticonclosedbookshelf_ {open this section of the library and view contents}
811_texticonclosedbook_ {open this book and view contents}
812_texticonopenbook_ {close this book}
813_texticonclosedfolder_ {Open this folder and view contents}
814_texticonclosedfolder2_ {open sub-section: }
815_texticonopenfolder_ {close this folder}
816_texticonopenfolder2_ {close sub-section: }
817_texticonsmalltext_ {View this section of the text}
818_texticonsmalltext2_ {view text: }
819_texticonpointer_ {current section}
820_texticondetach_ {Open this page in a new window}
821_texticoncontracttoc_ {Collapse table of contents}
822_texticonexpandtoc_ {Expand table of contents}
823_texticonexpandtext_ {Display all text}
824_texticoncontracttext_ {Display text only for currently selected section}
825_texticonglobhelp_ {Global Help Projects}
826
827_texticonwarning_ {<b>Warning: </b>}
828_texticoncont_ {continue?}
829_textnext_ {to next section of book}
830_textnext2_ {view next section}
831_textnext3_ {to next alphabetical section}
832_textnext4_ {next section}
833_textprev_ {to previous section of book}
834_textprev2_ {view previous section}
835_textprev3_ {to previous alphabetical section}
836_textprev4_ {previous section}
837
838_page_ {page}
839_of_ {of}
840_vol_ {Volume}
841_num_ {Number}
842
843_jan_ {January}
844_feb_ {February}
845_mar_ {March}
846_apr_ {April}
847_may_ {May}
848_jun_ {June}
849_jul_ {July}
850_aug_ {August}
851_sep_ {September}
852_oct_ {October}
853_nov_ {November}
854_dec_ {December}
855
856
857_textgomaori_ {Tirohia t&euml;nei wh&auml;rangi i te reo M&auml;ori}
858_textgoenglish_ {change to English language version}
859
860################################
861# Maori Macros #
862################################
863
864_textimagehelp_ [language=mi] {Te wh&auml;rangi whakam&auml;rama}
865_textimagepref_ [language=mi] {Te wh&auml;rangi o ng&auml; whiriwhiringa}
866_textimagehome_ [language=mi] {Te wh&auml;rangi k&auml;inga}
867_textimagesearch_ [language=mi] {rapua he kupu}
868_textimagebrowseseries_ [language=mi] {Tirohia te whakar&auml;rangi o ng&auml; niupepa}
869_textimagebrowsedates_ [language=mi] {Tirohia te w&auml; i puta mai ai ng&auml; niupepa}
870
871_textgotext_ [language=mi] {Tirohia t&euml;nei wh&auml;rangi i te takotoranga text}
872_page_ [language=mi] {wh&auml;rangi}
873_vol_ [language=mi] {Pukapuka}
874_num_ [language=mi] {Nama}
875_jan_ [language=mi] {Hanuere}
876_feb_ [language=mi] {Pepuere}
877_mar_ [language=mi] {Maehe}
878_apr_ [language=mi] {Aperira}
879_may_ [language=mi] {Mei}
880_jun_ [language=mi] {Hune}
881_jul_ [language=mi] {Hurae}
882_aug_ [language=mi] {Akuhata}
883_sep_ [language=mi] {Hepetema}
884_oct_ [language=mi] {Oketopa}
885_nov_ [language=mi] {Noema}
886_dec_ [language=mi] {Tihema}
887_of_ [language=mi] {i te}
888
889
890_texticontabsearchgreen_ [language=mi] {rapu}
891_texticontabdatesgreen_ [language=mi] {w&auml;taka}
892_texticontabseriesgreen_ [language=mi] {whakar&auml;rangi niupepa}
893_texticondetach_ [language=mi] {Huakina mai he matapihi hou m&ouml; t&euml;nei k&ouml;rero}
894_texticonexpandtext_ [language=mi] {Titiro ki ng&auml; kupu katoa o t&euml;nei niupepa}
895_texticoncontracttext_ [language=mi] {Titiro ki ng&auml; kupu o t&euml;nei wh&auml;rangi anake}
896_textnext_ [language=mi] {titiro ki te wh&auml;rangi o muri}
897_textprev_ [language=mi] {titiro ki te wh&auml;rangi o mua}
898_texticontext_ [language=mi] {Tirohia te wh&auml;rangi}
899_texticonopenbookshelf_ [language=mi] {k&auml;tia}
900_texticonclosedbookshelf_ [language=mi] {whakat&uuml;whera mai}
901_texticonclosedbook_ [language=mi] {whakat&uuml;whera mai}
902_texticonopenbook_ [language=mi] {k&auml;tia}
903_texticonpointer_ [language=mi] {w&auml;hanga e tiro ana}
Note: See TracBrowser for help on using the repository browser.