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

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

Changes for the Chinese translation.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 22.7 KB
Line 
1###############
2# PAGE STYLES #
3###############
4
5package Style
6
7# _content_ is outputted from the library program
8_content_ {<center><blink><b><font size="7" color="#FF0000">UNDEFINED PAGE</font></b></blink></center>}
9
10# to use this style system output
11# _header_
12# all your page content, then
13# _footer_
14
15# use the page parameter 'style' to choose the appropriate style
16
17# the style system uses
18# _pagetitle_ - what gets displayed at the top of the browser window
19# _pagebannerextra_ - anything extra you want displayed in the page banner
20# _pagefooterextra_ - anything extra you want displayed in the footer
21# _imagethispage_
22# _linkotherlanguages_
23
24# defaults for the above macros
25_pagetitle_ {_collectionname_}
26_pagebannerextra_ {}
27_pagefooterextra_ {}
28_imagethispage_ {}
29
30# it also relies on lots of Globals, the most important of these are:
31# _cookie_ - put in the cgi header
32# _globalscripts_ - javascript stuff
33# _httpiconchalk_ - the image down the left of the page
34# _imagecollection_
35# _imagehome_
36# _imageabout_
37# _imagehelp_
38# _imagepref_
39# _linkotherversion_
40
41_header_ {_cgihead_
42_htmlhead_('background="_httpiconchalk_"')_startspacer__pagebanner_
43}
44
45# this declaration ends up being the same as style=restrict, never mind
46_header_[version=text] {_cgihead_
47_htmlhead__pagebanner_
48}
49
50# style=restrict lacks the sidestripe, version links and
51# language links
52_header_[style=restrict] {_cgihead_
53_htmlhead__pagebanner_
54}
55
56
57# _cgihead_ {Content-type: text/html
58# _cookie_
59#
60# }
61_cgihead_{}
62
63
64# htmlhead uses:
65# _1_ - extra parameters for the body tag
66# _pagetitle_
67# _globalscripts_
68_htmlhead_ {
69<html>
70<head>
71<title>_pagetitle_</title>
72_globalscripts_
73
74</head>
75<body bgcolor="\#ffffff" text="\#000000" link="\#006666"
76 alink="\#cc9900" vlink="\#666633" _1_>
77}
78
79
80# _startspacer_ is a spacer to get past the 10010 graphic. It contains an open
81# <table> tag which must eventually be closed by _endspacer_.
82_startspacer_ {
83<table border=0 cellspacing=0 cellpadding=0 width=100%>
84<tr><td valign=top width=_widthspacer_><img src="_httpiconspacer_" width=_widthspacer_ height=_heightspacer_ alt="" border=0></td>
85<td><center><table width=80%><tr><td>
86}
87
88
89# pagebanner uses :
90# _imagecollection_
91# _imagehome_
92# _imageabout_
93# _imagehelp_
94# _imagepref_
95# _imagethispage_
96# _pagebannerextra_
97_pagebanner_ {
98<center>
99<table width=537 cellspacing=0 cellpadding=0>
100 <tr valign=top>
101 <td rowspan=2 _alignleft_>_imagecollection_</td>
102 <td _alignright_>_imagehome__imageabout__imagehelp__imagepref_</td>
103 </tr>
104
105 <tr>
106 <td _alignright_>_imagethispage_</td>
107 </tr>
108
109 <tr>
110 <td colspan=2>_pagebannerextra_</td>
111 </tr>
112</table>
113</center>
114}
115
116_pagebanner_[version=text] {
117<_font_>
118<center><h2><b><u>_imagecollection_</u></b></h2></center><p>
119_imagehome_<br>
120_imageabout_<br>
121_imagehelp_<br>
122_imagepref_<br>
123_pagebannerextra_
124</font>
125<p>
126}
127
128
129
130# note that _pagefooter_ is for individual pages
131_footer_ {
132<p>
133<_font_>
134_pagefooterextra_
135<center>
136_linkotherlanguages_
137_linkotherversion_
138</center>
139</font>
140</table>
141_endspacer__htmlfooter_
142}
143
144
145_footer_[style=restrict] {_pagefooterextra_
146_htmlfooter_
147}
148
149_footer_[style=htmlonly] {_pagefooterextra_
150_endspacer__htmlfooter_
151}
152
153_endspacer_ {
154</td></tr></table>
155</center>
156</td></tr>
157</table>
158}
159
160_htmlfooter_ {
161</body>
162</html>
163}
164
165
166# _alignleft_ and _alignright_ are overriden for right-to-left
167# writing systems
168_alignleft_ {align=left}
169_alignright_ {align=right}
170
171#_smallfont_ {font face="Arial,Helvetica,Times" size="-2"}
172#_font_ {font face="Arial,Helvetica,Times" size="-1"}
173_font_ {font}
174_smallfont_ {font size="-1"}
175
176_globalscripts_{
177<script>
178<!--
179 function img\_on(imgName) \{
180 if (version == "n3") \{
181 imgOn = eval(imgName + "\_on.src");
182 document [imgName].src = imgOn;
183 \}
184 \}
185
186 function img\_off(imgName) \{
187 if (version == "n3") \{
188 imgOff = eval(imgName + "\_off.src");
189 document [imgName].src = imgOff;
190 \}
191 \}
192
193 browserName = navigator.appName;
194 browserVer = parseInt(navigator.appVersion);
195 if ((browserName == "Netscape" || browserName == "Microsoft Internet Explorer")
196 && browserVer >= 3) version = "n3";
197 else version = "n2";
198
199 if (version == "n3") \{
200 home\_on = new Image(_widthchomex_, _heightchomex_);
201 home\_on.src = "_httpiconchomeon_";
202 about\_on = new Image(_widthtaboutx_, _heighttaboutx_);
203 about\_on.src = "_httpicontabouton_";
204 help\_on = new Image(_widthchelpx_, _heightchelpx_);
205 help\_on.src = "_httpiconchelpon_";
206 pref\_on = new Image(_widthcprefx_, _heightcprefx_);
207 pref\_on.src = "_httpiconcprefon_";
208 search\_on = new Image(_widthtsrchx_, _heighttsrchx_);
209 search\_on.src = "_httpicontsrchon_";
210 titles\_on = new Image(_widthttitlx_, _heightttitlx_);
211 titles\_on.src = "_httpiconttitlon_";
212 authors\_on = new Image(_widthtauthx_, _heighttauthx_);
213 authors\_on.src = "_httpicontauthon_";
214
215 home\_off = new Image(_widthchomex_, _heightchomex_);
216 home\_off.src = "_httpiconchomeof_";
217 about\_off = new Image(_widthtaboutx_, _heighttaboutx_);
218 about\_off.src = "_httpicontaboutof_";
219 help\_off = new Image(_widthchelpx_, _heightchelpx_);
220 help\_off.src = "_httpiconchelpof_";
221 pref\_off = new Image(_widthcprefx_, _heightcprefx_);
222 pref\_off.src = "_httpiconcprefof_";
223 search\_off = new Image(_widthtsrchx_, _heighttsrchx_);
224 search\_off.src = "_httpicontsrchof_";
225 titles\_off = new Image(_widthttitlx_, _heightttitlx_);
226 titles\_off.src = "_httpiconttitlof_";
227 authors\_off = new Image(_widthtauthx_, _heighttauthx_);
228 authors\_off.src = "_httpicontauthof_";
229 \}
230// -->
231</script>
232}
233
234
235#################
236# GLOBAL MACROS #
237#################
238
239package Global
240
241_linkotherlanguages_ {}
242
243
244############################################################################
245# Macros whose values are set from within the server at runtime. These are #
246# here only for reference and to set default values if required. #
247############################################################################
248
249_gwcgi_ {http://nowhere.nzdl.org/cgi-bin/gw}
250_httpprefix_ {http://nowhere.nzdl.org}
251
252_cookie_ {}
253
254_collection_ {}
255_compressedoptions_ {}
256_querystring_ {}
257_urlsafequerystring_ {}
258_notdetached_ {0}
259_istitle_ {0}
260
261######################
262# general web macros #
263######################
264
265_mailaddr_ {[email protected]}
266
267
268###############
269# link macros #
270###############
271
272_g_ {00} # default
273
274_linkotherversion_ {
275<a href="_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&v=1&g=_g_">
276_textgotext_
277</a><br>
278}
279
280_linkotherversion_[version=text] {
281<a href="_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&v=0&g=_g_">
282_textgographics_
283</a><br>
284}
285
286
287###############
288# http macros #
289###############
290
291# These contain the url without any quotes
292
293
294_httpimg_ {_httpprefix_/images}
295
296_httpcollection_{_httpprefix_/collect/_collection_}
297
298_httppagex_ {_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&a=p&p=_1_}
299_httppagehome_ {_httppagex_(home)}
300_httppageabout_ {_httppagex_(about)}
301_httppagehelp_ {_httppagex_(help)}
302_httppagepref_ {_httppagex_(preferences)}
303_httpgreenstone_ {_httppagex_(gsdl)}
304
305
306_httpquery_ {_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&a=q}
307_httpqueryresults_ {_httpquery_}
308_httpbrowse_ {_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&a=b}
309_httptext_ {_gwcgi_?e=_compressedoptions_&q=_urlsafequerystring_&a=t}
310_httpbrowsetitles_ {_httpbrowse_&d=T.1}
311_httpbrowseauthors_ {_httpbrowse_&d=A.1}
312
313
314_httpiconarrrght_ {_httpimg_/arrrght.gif}
315_widtharrrght_ {23}
316_heightarrrght_ {15}
317
318_httpiconbook_ {_httpimg_/book.gif}
319_widthbook_ {18}
320_heightbook_ {11}
321
322_httpiconbshelf_ {_httpimg_/bshelf.gif}
323_widthbshelf_ {20}
324_heightbshelf_ {16}
325
326_httpiconchalk_ {_httpimg_/chalk.gif}
327_widthchalk_ {2000}
328_heightchalk_ {10}
329
330_httpiconchelpof_ {_httpimg_/chelpof.gif}
331_httpiconchelpon_ {_httpimg_/chelpon.gif}
332_widthchelpx_ {38}
333_heightchelpx_ {20}
334
335_httpiconchomeof_ {_httpimg_/chomeof.gif}
336_httpiconchomeon_ {_httpimg_/chomeon.gif}
337_widthchomex_ {41}
338_heightchomex_ {20}
339
340_httpiconclsdfldr_ {_httpimg_/clsdfldr.gif}
341_widthclsdfldr_ {23}
342_heightclsdfldr_ {15}
343
344_httpiconcontoff_ {_httpimg_/contoff.gif}
345_httpiconconton_ {_httpimg_/conton.gif}
346_widthcontx_ {76}
347_heightcontx_ {17}
348
349_httpiconcprefof_ {_httpimg_/cprefof.gif}
350_httpiconcprefon_ {_httpimg_/cprefon.gif}
351_widthcprefx_ {85}
352_heightcprefx_ {20}
353
354_httpicondivb_ {_httpimg_/divb.gif}
355_widthdivb_ {537}
356_heightdivb_ {17}
357
358_httpiconealltof_ {_httpimg_/ealltof.gif}
359_httpiconeallton_ {_httpimg_/eallton.gif}
360_widthealltx_ {44}
361_heightealltx_ {30}
362
363_httpiconeconcof_ {_httpimg_/econcof.gif}
364_httpiconeconcon_ {_httpimg_/econcon.gif}
365_widtheconcx_ {65}
366_heighteconcx_ {30}
367
368_httpiconedtchof_ {_httpimg_/edtchof.gif}
369_httpiconedtchon_ {_httpimg_/edtchon.gif}
370_widthedtchx_ {45}
371_heightedtchx_ {30}
372
373_httpiconeexpcof_ {_httpimg_/eexpcof.gif}
374_httpiconeexpcon_ {_httpimg_/eexpcon.gif}
375_widtheexpcx_ {62}
376_heighteexpcx_ {30}
377
378_httpiconetsecof_ {_httpimg_/etsecof.gif}
379_httpiconetsecon_ {_httpimg_/etsecon.gif}
380_widthetsecx_ {61}
381_heightetsecx_ {30}
382
383_httpicongsdl_ {_httpimg_/gsdl.gif}
384_widthgsdl_ {140}
385_heightgsdl_ {77}
386
387_httpiconhauth_ {_httpimg_/h\_auth.gif}
388_widthhauth_ {200}
389_heighthauth_ {57}
390
391_httpiconhhelp_ {_httpimg_/h\_help.gif}
392_widthhhelp_ {200}
393_heighthhelp_ {57}
394
395_httpiconhpref_ {_httpimg_/h\_pref.gif}
396_widthhpref_ {200}
397_heighthpref_ {57}
398
399_httpiconhsearch_ {_httpimg_/h\_search.gif}
400_widthhsearch_ {200}
401_heighthsearch_ {57}
402
403_httpiconhtitle_ {_httpimg_/h\_title.gif}
404_widthhtitle_ {200}
405_heighthtitle_ {57}
406
407_httpiconitext_ {_httpimg_/itext.gif}
408_widthitext_ {16}
409_heightitext_ {21}
410
411_httpiconless_ {_httpimg_/less.gif}
412_widthless_ {30}
413_heightless_ {16}
414
415_httpiconmore_ {_httpimg_/more.gif}
416_widthmore_ {30}
417_heightmore_ {16}
418
419_httpiconopenbook_ {_httpimg_/openbook.gif}
420_widthopenbook_ {28}
421_heightopenbook_ {23}
422
423_httpiconopenfldr_ {_httpimg_/openfldr.gif}
424_widthopenfldr_ {23}
425_heightopenfldr_ {15}
426
427_httpiconqryresb_ {_httpimg_/qryresb.gif}
428_widthqryresb_ {537}
429_heightqryresb_ {17}
430
431_httpiconsmtext_ {_httpimg_/smtext.gif}
432_widthsmtext_ {23}
433_heightsmtext_ {15}
434
435_httpiconspacer_ {_httpimg_/spacer.gif}
436_widthspacer_ {42}
437_heightspacer_ {4}
438
439_httpicontabspace_ {_httpimg_/tabspace.gif}
440_widthtabspace_ {23}
441_heighttabspace_ {15}
442
443_httpicontauthgr_ {_httpimg_/tauthgr.gif}
444_httpicontauthof_ {_httpimg_/tauthof.gif}
445_httpicontauthon_ {_httpimg_/tauthon.gif}
446_widthtauthx_ {110}
447_heighttauthx_ {17}
448
449_httpicontspace_ {_httpimg_/tspace.gif}
450_widthtspace_ {20}
451_heighttspace_ {17}
452
453_httpicontsrchgr_ {_httpimg_/tsrchgr.gif}
454_httpicontsrchof_ {_httpimg_/tsrchof.gif}
455_httpicontsrchon_ {_httpimg_/tsrchon.gif}
456_widthtsrchx_ {87}
457_heighttsrchx_ {17}
458
459_httpiconttitlgr_ {_httpimg_/ttitlgr.gif}
460_httpiconttitlof_ {_httpimg_/ttitlof.gif}
461_httpiconttitlon_ {_httpimg_/ttitlon.gif}
462_widthttitlx_ {87}
463_heightttitlx_ {17}
464
465_httpiconwarning_ {_httpimg_/warning.gif}
466_widthwarning_ {30}
467_heightwarning_ {29}
468
469
470_httpiconhabout_ {_httpimg_/h\_about.gif}
471_widthhabout_ {200}
472_heighthabout_ {57}
473
474_httpiconhhome_ {_httpimg_/h\_home.gif}
475_widthhhome_ {200}
476_heighthhome_ {57}
477
478_httpiconhname_ {_httpimg_/h\_name.gif}
479_widthhname_ {200}
480_heighthname_ {57}
481
482_httpicontaboutof_ {_httpimg_/taboutof.gif}
483_httpicontabouton_ {_httpimg_/tabouton.gif}
484_widthtaboutx_ {50}
485_heighttaboutx_ {20}
486
487_httpicontnamegr_ {_httpimg_/tnamegr.gif}
488_httpicontnameof_ {_httpimg_/tnameof.gif}
489_httpicontnameon_ {_httpimg_/tnameon.gif}
490_widthtnamex_ {95}
491_heighttnamex_ {17}
492
493
494
495
496
497#########
498# Icons #
499#########
500
501# Must not include links (so they can be used as links). If you want to
502# include links use _image
503# The _icon family should consist of _iconX_, _iconX_[version=text] and _texticonX_
504
505_iconless_{<img src="_httpiconless_" align=absbottom width=_widthless_
506 height=_heightless_ border=0 alt="to previous section of book">}
507_iconless_[version=text] {<_font_>view previous section</font>}
508
509_iconmore_{<img src="_httpiconmore_" align=absbottom width=_widthmore_
510 height=_heightmore_ border=0 alt="to next section of book">}
511_iconmore_[version=text] {<_font_>view next section</font>}
512
513_iconalphless_{<img src="_httpiconless_" align=absbottom width=_widthless_
514 height=_heightless_ border=0 alt="to previous alphabetical section">}
515_iconalphless_[version=text] {<_font_>previous section</font>}
516
517_iconalphmore_{<img src="_httpiconmore_" align=absbottom width=_widthmore_
518 height=_heightmore_ border=0 alt="to next alphabetical section">}
519_iconalphmore_[version=text] {<_font_>next section</font>}
520
521_iconprev_{<img src="_httpiconless_" align=absbottom width=_widthless_
522 height=_heightless_ border=0 alt="">}
523_iconprev_[version=text] {}
524
525_iconnext_{<img src="_httpiconmore_" align=absbottom width=_widthmore_
526 height=_heightmore_ border=0 alt="">}
527_iconnext_[version=text] {}
528
529_icontabspacer_ {<img src="_httpicontspace_" width=126 height=_heighttspace_ alt="">}
530_icontabspacer_[version=text] {}
531_icontabspacer2_ {<img src="_httpicontspace_" width=127 height=_heighttspace_ alt="">}
532_icontabspacer2_[version=text] {}
533
534
535_icontabsearchgreen_ {<img src="_httpicontsrchgr_" height=_heighttsrchx_ width=_widthtsrchx_ alt="_texticontabsearchgreen_" border=0>}
536_icontabsearchgreen_[version=text] {_texticontabsearchgreen_}
537
538_icontabtitlegreen_ {<img src="_httpiconttitlgr_" height=_heightttitlx_ width=_widthttitlx_ alt="_texticontabtitlegreen_" border=0>}
539_icontabtitlegreen_[version=text] {_texticontabtitlegreen_}
540
541_icontabauthorgreen_ {<img src="_httpicontauthgr_" height=_heighttauthx_ width=_widthtauthx_ alt="_texticontabauthorgreen_" border=0>}
542_icontabauthorgreen_[version=text] {_texticontabauthorgreen_}
543
544
545_iconblankbar_ {<center><img src="_httpicondivb_" width=_widthdivb_ height=_heightdivb_ alt=""></center>}
546_iconblankbar_[version=text] {<br><hr><br>}
547
548
549_icontext_ {<img border=0 align=absmiddle src="_httpiconitext_" width=_widthitext_ height=_heightitext_ alt="_texticontext_">}
550_icontext_[version=text] {<_font_>_texticontext_</font>}
551
552_iconsmalltext_ {<img src="_httpiconsmtext_" border=0 width=_widthsmtext_ height=_heightsmtext_
553alt="_texticonsmalltext_">}
554_iconsmalltext_ [version=text] {<small><_font_><b>view text: </b></font></small>}
555_texticonsmalltext_ {View this section of the text}
556
557_iconclosedfolder_ {<img src="_httpiconclsdfldr_" border=0 width=_widthclsdfldr_ height=_heightclsdfldr_
558alt="_texticonclosedfolder_">}
559_texticonclosedfolder_{Open this folder and view contents}
560_iconclosedfolder_ [version=text] {<small><_font_><b>open sub-section: </b></font></small>}
561
562_iconopenfolder_ {<img src="_httpiconopenfldr_" border=0 width=_widthopenfldr_ height=_heightopenfldr_
563alt="close this folder">}
564_iconopenfolder_ [version=text] {<small><_font_><b>close sub-section: </b></font></small>}
565_iconclosedbook_ {<img src="_httpiconbook_" width=_widthbook_ height=_heightbook_ border=0
566alt="open this book and view contents">}
567_iconclosedbook_ [version=text] {<small><_font_><b>open book: </b></font></small>}
568_iconopenbook_ {<img src="_httpiconopenbook_" width=_widthopenbook_ height=_heightopenbook_ border=0
569alt="close this book">}
570_iconopenbook_ [version=text] {<small><_font_><b>close book: </b></font></small>}
571_iconopenbookshelf_ {<img src="_httpiconbshelf_" border=0 width=_widthbshelf_ height=_heightbshelf_
572alt="close this section of the library">}
573_iconopenbookshelf_ [version=text] {<small><_font_><b>close section: </b></font></small>}
574_iconclosedbookshelf_ {<img src="_httpiconbshelf_" border=0 width=_widthbshelf_ height=_heightbshelf_
575alt="open this section of the library and view contents">}
576_iconclosedbookshelf_ [version=text] {<small><_font_><b>open section: </b></font></small>}
577_iconpointer_ {<img src="_httpiconarrrght_" border=0 width=_widtharrrght_ height=_heightarrrght_>}
578_iconpointer_ [version=text] {<small><_font_><b>current section-> </b></font></small>}
579_icontab_ {<img src="_httpicontabspace_" width=_widthtabspace_ height=_heighttabspace_>}
580
581_iconcontracttoc_ {<img name="concon" src="_httpiconeconcof_" width=_widtheconcx_ height=_heighteconcx_ alt="_texticoncontracttoc_" border=0>}
582_iconcontracttoc_[version=text] {_texticoncontracttoc_}
583
584_iconexpandtoc_ {<img name="expcon" src="_httpiconeexpcof_" width=_widtheexpcx_ height=_heighteexpcx_
585alt="_texticonexpandtoc_" border=0>}
586_iconexpandtoc_[version=text] {_texticonexpandtoc_}
587
588_iconcontracttext_ {<img name="thissec" src="_httpiconetsecof_" width=_widthetsecx_ height=_heightetsecx_
589alt="_texticoncontracttext_" border=0>}
590_iconcontracttext_[version=text] {_texticoncontracttext_}
591
592_iconexpandtext_ {<img name="alltext" src="_httpiconealltof_" width=_widthealltx_ height=_heightealltx_ alt="_texticonexpandtext_" border=0>}
593_iconexpandtext_[version=text] {_texticonexpandtext_}
594
595_icondetach_ {<img name="detach" src="_httpiconedtchof_" width=_widthedtchx_ height=_heightedtchx_
596alt="_texticondetach_" border=0>}
597_icondetach_[version=text] {_texticondetach_}
598
599_iconwarning_ {<img src="_httpiconwarning_" width=_widthwarning_ height=_heightwarning_ border=0 align="left">}
600_iconwarning_ [version=text] {_texticonwarning_}
601
602_iconcont_ {<img name="cont" src="_httpiconcontoff_" width=_widthcontx_ height=_heightcontx_ border=0>}
603_iconcont_ [version=text] {_texticoncont_}
604
605
606###############
607# Image links #
608###############
609
610# These might include a link (not like an _icon_
611# An _image family should consist of _imageX_ _imageX_[version=text] and _textimageX_
612_imagecollection_ {}
613_imagecollection_[version=text] {}
614
615_imagehome_ {<a href="_httppagehome_"
616 onMouseover = "img\_on('home')"
617 onMouseout = "img\_off('home')"><img name="home"
618 src="_httpiconchomeof_" width=_widthchomex_ height=_heightchomex_
619 border=0 alt="_textimagehome_"></a>}
620
621_imagehome_[version=text] {
622<a href="_httppagehome_">_textimagehome_</a>
623}
624
625
626_imageabout_ {<a href="_httppageabout_"
627 onMouseover = "img\_on('about')"
628 onMouseout = "img\_off('about')"><img name="about"
629 src="_httpicontaboutof_" width=_widthtaboutx_ height=_heighttaboutx_
630 border=0 alt="_textimageabout_"></a>}
631
632_imageabout_[version=text] {
633<a href="_httppageabout_">_textimageabout_</a>
634}
635
636
637_imagehelp_ {<a href="_httppagehelp_"
638 onMouseover = "img\_on('help')"
639 onMouseout = "img\_off('help')"><img name="help"
640 src="_httpiconchelpof_" width=_widthchelpx_ height=_heightchelpx_
641 border=0 alt="_textimagehelp_"></a>}
642
643_imagehelp_[version=text] {
644<a href="_httppagehelp_">_textimagehelp_</a>
645}
646
647
648_imagepref_ {<a href="_httppagepref_"
649 onMouseover = "img\_on('pref')"
650 onMouseout = "img\_off('pref')"><img name="pref"
651 src="_httpiconcprefof_" width=_widthcprefx_ height=_heightcprefx_
652 border=0 alt="_textimagepref_"></a>}
653
654_imagepref_[version=text] {
655<a href="_httppagepref_">_textimagepref_</a>
656}
657_imagepref_[style=htmlonly] {}
658
659
660_imagegreenstone_ {<a href="_httpgreenstone_"><img src="_httpicongsdl_" width=_widthgsdl_ height=_heightgsdl_
661border=0 alt="_textimagegreenstone_" hspace=0></a>
662}
663
664_imagegreenstone_[version=text] {
665<a href="_httpgreenstone_">_textimagegreenstone_</a>
666}
667
668
669_imagesearch_ {<a href="_httpquery_"
670 onMouseover = "img\_on('search')"
671 onMouseout = "img\_off('search')"><img name="search"
672 src="_httpicontsrchof_" width=_widthtsrchx_ height=_heighttsrchx_
673 border=0 alt="_textimagesearch_"></a>}
674
675_imagesearch_[version=text] {<a href="_httpquery_"><_font_>_textimagesearch_</font></a><br>
676}
677
678_imagesearch_[style=htmlonly] {<img src="_httpicontspace_" alt="" width=_widthtspace_ height=_heighttspace_>}
679_imagesearch_[style=htmlonly,version=text] {}
680
681_imagebrowsetitles_ {<a href="_httpbrowsetitles_"
682 onMouseover = "img\_on('titles')"
683 onMouseout = "img\_off('titles')"><img name="titles"
684 src="_httpiconttitlof_" width=_widthttitlx_ height=_heightttitlx_
685 border=0 alt="_textimagebrowsetitles_"></a>}
686
687_imagebrowsetitles_[version=text] {<a href="_httpbrowsetitles_"><_font_>_textimagebrowsetitles_</font></a><br>
688}
689
690_imagebrowseauthors_ {<a href="_httpbrowseauthors_"
691 onMouseover = "img\_on('authors')"
692 onMouseout = "img\_off('authors')"><img name="authors"
693 src="_httpicontauthof_" width=_widthtauthx_ height=_heighttauthx_
694 border=0 alt="_textimagebrowseauthors_"></a>}
695
696_imagebrowseauthors_[version=text] {<a href="_httpbrowseauthors_"><_font_>_textimagebrowseauthors_</font></a><br>
697}
698
699_imagedetach_ {onMouseover = "img\_on('detach')"
700onMouseout = "img\_off('detach')">_icondetach_</a>}
701_imagedetach_[version=text] {><_font_>_texticondetach_</font></a><br>}
702
703_imagecontracttoc_ {" onMouseover = "img\_on('concon')"
704onMouseout = "img\_off('concon')">_iconcontracttoc_</a>}
705_imagecontracttoc_[version=text] {"><_font_>_texticoncontracttoc_</font></a><br>}
706_imagecontracttoc_[style=htmlonly] {}
707
708_imageexpandtoc_ {" onMouseover = "img\_on('expcon')"
709onMouseout = "img\_off('expcon')">_iconexpandtoc_</a>}
710_imageexpandtoc_ [version=text] {"><_font_>_texticonexpandtoc_</font></a><br>}
711_imageexpandtoc_ [style=htmlonly] {}
712
713_imagecontracttext_ {0" onMouseover = "img\_on('thissec')"
714onMouseout = "img\_off('thissec')">_iconcontracttext_</a>}
715_imagecontracttext_[version=text] {0"><_font_>display only current section</font></a><br>}
716_imagecontracttext_[style=htmlonly] {}
717
718_imageexpandtext_ {1" onMouseover = "img\_on('alltext')"
719onMouseout = "img\_off('alltext')">_iconexpandtext_</a>}
720_imageexpandtext_[version=text] {1"><_font_>display all text</font></a><br>}
721_imageexpandtext_[style=htmlonly] {}
722
723_imagecont_ {onMouseover = "img\_on('cont')"
724onMouseout = "img\_off('cont')">_iconcont_</a>
725}
726_imagecont_[version=text] {><_font_>_texticoncont_</font></a><br>}
727
728
729_imagestandardbar_ {<center>
730<nobr>_imagesearch__icontabspacer__imagebrowsetitles__icontabspacer2__imagebrowseauthors_</nobr>
731</center>
732<p>
733}
734
735_imagestandardbar_[version=text] {
736<_font_>
737_imagesearch_<br>
738_imagebrowsetitles_<br>
739_imagebrowseauthors_<br>
740</font>
741<p>
742}
743
744
745################################
746# English Language Text Macros #
747################################
748
749_collectionname_ {Untitled collection}
750_textimagecollection_ {_collectionname_}
751_textimagehome_ {Home page}
752_textimageabout_ {About page}
753_textimagehelp_ {Help page}
754_textimagepref_ {Preferences page}
755_textimagegreenstone_ {Greenstone Digital Library Software}
756
757_textimagesearch_ {Search for specific terms}
758_textimagebrowsetitles_ {Browse alphabetical list of titles}
759_textimagebrowseauthors_ {Browse alphabetical list of authors}
760
761
762_textgotext_ {<i>View this page in text format</i>}
763_textgographics_ {<i>View this page in graphics format</i>}
764
765_texticontabsearchgreen_{Search}
766_texticontabauthorgreen_{Authors A-Z}
767_texticontabtitlegreen_{Titles A-Z}
768_texticontext_ {View the document}
769
770_texticondetach_ {Open this page in a new window}
771_texticoncontracttoc_ {Collapse table of contents}
772_texticonexpandtoc_ {Expand table of contents}
773_texticonexpandtext_ {Display all text}
774_texticoncontracttext_ {Display text only for currently selected section}
775
776_texticonwarning_ {<b>Warning: </b>}
777_texticoncont_ {continue?}
Note: See TracBrowser for help on using the repository browser.