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

Last change on this file since 1406 was 1406, checked in by paynter, 24 years ago

Fixed bug with acronym images (Metadata element is called "Acronym"
but images assumed it was called "Acronyms").

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 22.5 KB
Line 
1#######################################################################
2# GLOBAL MACROS
3#######################################################################
4
5package Global
6
7##########
8
9_htmlextra_ {}
10
11_starthighlight_ {<b><u>}
12_endhighlight_ {</u></b>}
13
14#######################################################################
15# page content
16#
17# these should always be overridden for each page/collection
18#######################################################################
19
20_content_ {<p><h2>oops</h2>
21_textdefaultcontent_}
22_pagetitle_ {_textdefaulttitle_}
23_imagethispage_ {}
24_iconcollection_ {}
25_collectionname_ {}
26
27_imagecollection_ {_If_("_iconcollection_" ne "",
28<a href="_httppageabout_"><img src="_iconcollection_" border=0></a>,
29_imagecollectionv_}
30_imagecollection_ [v=1] {_imagecollectionv_}
31_imagecollectionv_ {_If_(_collectionname_,<br><br><h2><a href="_httppageabout_">_collectionname_</a></h2>)}
32
33#######################################################################
34# these width macros are read in by the server when calculating
35# width of navigation bar etc. There should be one for each
36# classification that this receptionist supports, one for the
37# search button, and the _pagewidth_ macro which is the total width
38# of the page
39#######################################################################
40
41# width of tabs when displaying tables of contents
42_tabwidth_ {25}
43
44_pagewidth_ {537}
45# defaultwidth is the width buttons default to if not included in this list
46_defaultwidth_ {87}
47_searchwidth_ {_widthtsrchx_}
48_Titlewidth_ {_widthttitlx_}
49_Listwidth_ {_widthtlistx_}
50_Creatorwidth_ {_widthtauthx_}
51_Serieswidth_ {_widthtserx_}
52_Datewidth_ {_widthtdatex_}
53_Subjectwidth_ {_widthtsubjx_}
54_Towidth_ {_widthttox_}
55_Fromwidth_ {_widthtfromx_}
56_Organizationwidth_ {_widthtorgx_}
57_Howtowidth_ {_widththowx_}
58_Topicwidth_ {_widthttopicx_}
59_Browsewidth_ {_widthtbrwsex_}
60_Peoplewidth_ {_widthtpeopx_}
61_Languagewidth_ {_widthtlangx_}
62_Acronymwidth_ {_widthtacrox_}
63
64#######################################################################
65# Macros whose values are set from within the server at runtime. These
66# are here only for reference and to set default values if required.
67#######################################################################
68
69# _win32_ will be set to 1 if we're on windows
70_win32_ {}
71
72_navigationbar_ {}
73_javaimagesnavbar_ {}
74_javaimagescontent_ {}
75_widthtspace_ {2}
76
77# all cgi args are set as _cgiargX_ macros - those I've put here
78# are those that need to default to something
79_cgiargd_ {}
80_cgiargcl_ {}
81
82# set from within the query action
83_hselection_ {}
84_jselection_ {}
85_nselection_ {}
86#granularity selection for mgpp
87_gselection_ {}
88#######################################################################
89# navigation bar images
90#
91#######################################################################
92
93# the spacer image - the width of this is set from server
94_imagespacer_ {<img
95src="_httpicontspace_" width="_widthtspace_" height="_heighttspace_">}
96_imagespacer_[v=1] {<br>
97}
98
99# image macros for all the classifications currently supported by
100# this receptionist.
101#
102# image macros for to and from added by gwp on 2000 june 13
103
104_imagesearch_ {<a href="_httpquery_"
105 onMouseover = "img\_on('search')"
106 onMouseout = "img\_off('search')"><img name="search"
107 src="_httpicontsrchof_" width="_widthtsrchx_" height="_heighttsrchx_"
108 border="0" alt="_textimagesearch_"></a>}
109_imagesearch_[v=1] {<a href="_httpquery_">_textimagesearch_</a><br>
110}
111
112_imageTitle_ {<a href="_httpbrowseTitle_"
113 onMouseover = "img\_on('titles')"
114 onMouseout = "img\_off('titles')"><img name="titles"
115 src="_httpiconttitlof_" width=_widthttitlx_ height=_heightttitlx_
116 border=0 alt="_textimageTitle_"></a>}
117_imageTitle_[v=1] {<a href="_httpbrowseTitle_">_textimageTitle_</a><br>
118}
119
120_imageCreator_ {<a href="_httpbrowseCreator_"
121 onMouseover = "img\_on('authors')"
122 onMouseout = "img\_off('authors')"><img name="authors"
123 src="_httpicontauthof_" width=_widthtauthx_ height=_heighttauthx_
124 border=0 alt="_textimageCreator_"></a>}
125_imageCreator_[v=1] {<a href="_httpbrowseCreator_">_textimageCreator_</a><br>
126}
127
128_imageSeries_ {<a href="_httpbrowseSeries_"
129 onMouseover = "img\_on('series')"
130 onMouseout = "img\_off('series')"><img name="series"
131 src="_httpicontserof_" width="_widthtserx_" height="_heighttserx_"
132 border="0" alt="_textimageSeries_"></a>}
133_imageSeries_[v=1] {<a href="_httpbrowseSeries_">_textimageSeries_</a><br>
134}
135
136_imageDate_ {<a href="_httpbrowseDate_"
137 onMouseover = "img\_on('dates')"
138 onMouseout = "img\_off('dates')"><img name="dates"
139 src="_httpicontdateof_" width="_widthtdatex_" height="_heighttdatex_"
140 border="0" alt="_textimageDate_"></a>}
141_imageDate_[v=1] {<a href="_httpbrowseDate_">_textimageDate_</a><br>
142}
143
144_imageSubject_ {<a href="_httpbrowseSubject_"
145 onMouseover = "img\_on('subjects')"
146 onMouseout = "img\_off('subjects')"><img name="subjects"
147 src="_httpicontsubjof_" width="_widthtsubjx_" height="_heighttsubjx_"
148 border="0" alt="_textimageSubject_"></a>}
149_imageSubject_[v=1] {<a href="_httpbrowseSubject_">_textimageSubject_</a><br>
150}
151
152_imageTo_ {<a href="_httpbrowseTo_"
153 onMouseover = "img\_on('to')"
154 onMouseout = "img\_off('to')"><img name="to"
155 src="_httpiconttoof_" width="_widthttox_" height="_heightttox_"
156 border="0" alt="_textimageTo_"></a>}
157_imageTo_[v=1] {<a href="_httpbrowseTo_">_textimageTo_</a><br>
158}
159
160_imageFrom_ {<a href="_httpbrowseFrom_"
161 onMouseover = "img\_on('from')"
162 onMouseout = "img\_off('from')"><img name="from"
163 src="_httpicontfromof_" width="_widthtfromx_" height="_heighttfromx_"
164 border="0" alt="_textimageFrom_"></a>}
165_imageFrom_[v=1] {<a href="_httpbrowseFrom_">_textimageFrom_</a><br>
166}
167
168_imageOrganization_ {<a href="_httpbrowseOrganization_"
169 onMouseover = "img\_on('org')"
170 onMouseout = "img\_off('org')"><img name="org"
171 src="_httpicontorgof_" width="_widthtorgx_" height="_heighttorgx_"
172 border="0" alt="_textimageOrganization_"></a>}
173_imageOrganization_[v=1] {<a href="_httpbrowseOrganization_">_textimageOrganization_</a><br>
174}
175
176_imageHowto_ {<a href="_httpbrowseHowto_"
177 onMouseover = "img\_on('how')"
178 onMouseout = "img\_off('how')"><img name="how"
179 src="_httpiconthowof_" width="_widththowx_" height="_heightthowx_"
180 border="0" alt="_textimageHowto_"></a>}
181_imageHowto_[v=1] {<a href="_httpbrowseHowto_">_textimageHowto_</a><br>
182}
183
184_imageTopic_ {<a href="_httpbrowseTopic_"
185 onMouseover = "img\_on('topic')"
186 onMouseout = "img\_off('topic')"><img name="topic"
187 src="_httpiconttopicof_" width="_widthttopicx_" height="_heightttopicx_"
188 border="0" alt="_textimageTopic_"></a>}
189_imageTopic_[v=1] {<a href="_httpbrowseTopic_">_textimageTopic_</a><br>
190}
191
192_imageBrowse_ {<a href="_httpbrowseBrowse_"
193 onMouseover = "img\_on('browse')"
194 onMouseout = "img\_off('browse')"><img name="browse"
195 src="_httpicontbrwseof_" width="_widthtbrwsex_" height="_heighttbrwsex_"
196 border="0" alt="_textimageBrowse_"></a>}
197_imageBrowse_[v=1] {<a href="_httpbrowseBrowse_">_textimageBrowse_</a><br>
198}
199
200_imagePeople_ {<a href="_httpbrowsePeople_"
201 onMouseover = "img\_on('People')"
202 onMouseout = "img\_off('People')"><img name="People"
203 src="_httpicontpeopof_" width=_widthtpeopx_ height=_heighttpeopx_
204 border=0 alt="_textimagePeople_"></a>}
205_imagePeople_[v=1] {<a href="_httpbrowsePeople_">_textimagePeople_</a><br>
206}
207
208_imageLanguage_ {<a href="_httpbrowseLanguage_"
209 onMouseover = "img\_on('Language')"
210 onMouseout = "img\_off('Language')"><img name="Language"
211 src="_httpicontlangof_" width=_widthtlangx_ height=_heighttlangx_
212 border=0 alt="_textimageLanguage_"></a>}
213_imageLanguage_[v=1] {<a href="_httpbrowseLanguage_">_textimageLanguage_</a><br>
214}
215
216_imageAcronym_ {<a href="_httpbrowseAcronym_"
217 onMouseover = "img\_on('Acronym')"
218 onMouseout = "img\_off('Acronym')"><img name="Acronym"
219 src="_httpicontacroof_" width=_widthtacrox_ height=_heighttacrox_
220 border=0 alt="_textimageAcronym_"></a>}
221_imageAcronym_[v=1] {<a href="_httpbrowseAcronym_">_textimageAcronym_</a><br>
222}
223
224
225#######################################################################
226# java images/scripts
227#######################################################################
228
229# the _javalinks_ macros are the flashy image links at the top right of
230# the page.
231
232_javalinks_ {_imagehome__imagehelp__imagepref_}
233_javalinks_ [v=1] {
234_imagehome_<br>
235_imagehelp_<br>
236_imagepref_<br>
237}
238
239# the javaimages macros contain the javascript code required
240# by each flashy javascript image. _javaimagesheader_ contains those
241# images at the top right of the page, _javaimagesnavbar_ (set
242# from within the server) contains those images in the navigation bar,
243# and _javaimagescontent_ (also set in server) contains any other
244# javascript images that occur in the page.
245# the javaimages macros should contain _javaX_ macros for each javascript
246# image link within the page.
247
248_javaimagesheader_ {_javahome__javahelp__javapref_}
249_javaimagesheader_ [v=1] {}
250
251_javaabout_ {
252 about\_on = new Image(_widthcabtx_, _heightcabtx_);
253 about\_on.src = "_httpiconcabton_";
254 about\_off = new Image(_widthcabtx_, _heightcabtx_);
255 about\_off.src = "_httpiconcabtof_";
256}
257
258_javahome_ {
259 home\_on = new Image(_widthchomex_, _heightchomex_);
260 home\_on.src = "_httpiconchomeon_";
261 home\_off = new Image(_widthchomex_, _heightchomex_);
262 home\_off.src = "_httpiconchomeof_";
263}
264
265_javahelp_ {
266 help\_on = new Image(_widthchelpx_, _heightchelpx_);
267 help\_on.src = "_httpiconchelpon_";
268 help\_off = new Image(_widthchelpx_, _heightchelpx_);
269 help\_off.src = "_httpiconchelpof_";
270}
271
272_javapref_ {
273 pref\_on = new Image(_widthcprefx_, _heightcprefx_);
274 pref\_on.src = "_httpiconcprefon_";
275 pref\_off = new Image(_widthcprefx_, _heightcprefx_);
276 pref\_off.src = "_httpiconcprefof_";
277}
278
279_javasearch_ {
280 search\_on = new Image(_widthtsrchx_, _heighttsrchx_);
281 search\_on.src = "_httpicontsrchon_";
282 search\_off = new Image(_widthtsrchx_, _heighttsrchx_);
283 search\_off.src = "_httpicontsrchof_";
284}
285
286_javaTitle_ {
287 titles\_on = new Image(_widthttitlx_, _heightttitlx_);
288 titles\_on.src = "_httpiconttitlon_";
289 titles\_off = new Image(_widthttitlx_, _heightttitlx_);
290 titles\_off.src = "_httpiconttitlof_";
291}
292
293_javaList_ {
294 list\_on = new Image(_widthtlistx_, _heighttlistx_);
295 list\_on.src = "_httpicontliston_";
296 list\_off = new Image(_widthtlistx_, _heighttlistx_);
297 list\_off.src = "_httpicontlistof_";
298}
299
300_javaCreator_ {
301 authors\_on = new Image(_widthtauthx_, _heighttauthx_);
302 authors\_on.src = "_httpicontauthon_";
303 authors\_off = new Image(_widthtauthx_, _heighttauthx_);
304 authors\_off.src = "_httpicontauthof_";
305}
306
307_javaSeries_ {
308 series\_on = new Image(_widthtserx_, _heighttserx_);
309 series\_on.src = "_httpicontseron_";
310 series\_off = new Image(_widthtserx_, _heighttserx_);
311 series\_off.src = "_httpicontserof_";
312}
313
314_javaDate_ {
315 dates\_on = new Image(_widthtdatex_, _heighttdatex_);
316 dates\_on.src = "_httpicontdateon_";
317 dates\_off = new Image(_widthtdatex_, _heighttdatex_);
318 dates\_off.src = "_httpicontdateof_";
319}
320
321_javaSubject_ {
322 subjects\_on = new Image(_widthtsubjx_, _heighttsubjx_);
323 subjects\_on.src = "_httpicontsubjon_";
324 subjects\_off = new Image(_widthtsubjx_, _heighttsubjx_);
325 subjects\_off.src = "_httpicontsubjof_";
326}
327
328_javaTo_ {
329 to\_on = new Image(_widthttox_, _heightttox_);
330 to\_on.src = "_httpiconttoon_";
331 to\_off = new Image(_widthttox_, _heightttox_);
332 to\_off.src = "_httpiconttoof_";
333}
334
335_javaFrom_ {
336 from\_on = new Image(_widthtfromx_, _heighttfromx_);
337 from\_on.src = "_httpicontfromon_";
338 from\_off = new Image(_widthtfromx_, _heighttfromx_);
339 from\_off.src = "_httpicontfromof_";
340}
341
342_javaHowto_ {
343 how\_on = new Image(_widththowx_, _heightthowx_);
344 how\_on.src = "_httpiconthowon_";
345 how\_off = new Image(_widththowx_, _heightthowx_);
346 how\_off.src = "_httpiconthowof_";
347}
348
349_javaOrganization_ {
350 org\_on = new Image(_widthtorgx_, _heighttorgx_);
351 org\_on.src = "_httpicontorgon_";
352 org\_off = new Image(_widthtorgx_, _heighttorgx_);
353 org\_off.src = "_httpicontorgof_";
354}
355
356_javaTopic_ {
357 topic\_on = new Image(_widthttopicx_, _heightttopicx_);
358 topic\_on.src = "_httpiconttopicon_";
359 topic\_off = new Image(_widthttopicx_, _heightttopicx_);
360 topic\_off.src = "_httpiconttopicof_";
361}
362
363_javaBrowse_ {
364 browse\_on = new Image(_widthtbrwsex_, _heighttbrwsex_);
365 browse\_on.src = "_httpicontbrwseon_";
366 browse\_off = new Image(_widthtbrwsex_, _heighttbrwsex_);
367 browse\_off.src = "_httpicontbrwseof_";
368}
369
370_javaPeople_ {
371 People\_on = new Image(_widthtpeopx_, _heighttpeopx_);
372 People\_on.src = "_httpicontpeopon_";
373 People\_off = new Image(_widthtpeopx_, _heighttpeopx_);
374 People\_off.src = "_httpicontpeopof_";
375}
376
377_javaLanguage_ {
378 Language\_on = new Image(_widthtlangx_, _heighttlangx_);
379 Language\_on.src = "_httpicontlangon_";
380 Language\_off = new Image(_widthtlangx_, _heighttlangx_);
381 Language\_off.src = "_httpicontlangof_";
382}
383
384_javaAcronym_ {
385 Acronym\_on = new Image(_widthtacrox_, _heighttacrox_);
386 Acronym\_on.src = "_httpicontacroon_";
387 Acronym\_off = new Image(_widthtacrox_, _heighttacrox_);
388 Acronym\_off.src = "_httpicontacroof_";
389}
390
391
392#######################################################################
393# general web macros
394#######################################################################
395
396_mailaddr_ {[email protected]}
397
398_gsdltop_ {_top}
399
400#######################################################################
401# http macros
402#
403# These contain the url without any quotes
404#######################################################################
405
406_httpcollimg_ {_httpcollection_/index/assoc}
407_httpdocimg_ {_httpcollimg_/_thisOID_}
408
409_httpcollection_ {http://www.cs.waikato.ac.nz/~paynter/gsdl/collect/_cgiargc_}
410
411_httppagex_ {_gwcgi_?e=_compressedoptions_&a=p&p=_1_}
412_httppagestatus_ {_gwcgi_?e=_compressedoptions_&a=status}
413_httppageabout_ {_httppagex_(about)}
414#_httppagehome_ {_httppagex_(home)}
415_httppagehome_ {_gwcgi_?a=p&p=home}
416_httppagehelp_ {_httppagex_(help)}
417_httppagepref_ {_httppagex_(preferences)}
418_httpclearhistory_ {_gwcgi_?e=_compressedoptions_&a=dh}
419
420_httpgreenstone_ {_httppagex_(gsdl)}
421_httpdownload_ {http://www.nzdl.org/download}
422_httppublications_ {_httpdownload_/greenstone/publications}
423
424_httpcurrentdocument_ {_gwcgi_?e=_compressedoptions_&cl=_cgiargcl_&d=_cgiargd_}
425_httpquery_ {_gwcgi_?e=_compressedoptions_&a=q}
426
427# _httpdoc_ is the same as _httpdocument_ - _httpdocument_
428# may occasionally be altered by the server however
429_httpdocument_ {_gwcgi_?e=_compressedoptions_&a=d}
430_httpdoc_ {_gwcgi_?e=_compressedoptions_&a=d}
431
432_httpextlink_ {_gwcgi_?e=_compressedoptions_&a=extlink}
433_httpbuild_ {_gwcgi_?e=_compressedoptions_&a=bc}
434
435_httpiconchalk_ {_httpimg_/chalk.gif}
436_widthchalk_ {2000}
437_heightchalk_ {10}
438
439_httpicondivb_ {_httpimg_/divb.gif}
440_widthdivb_ {_pagewidth_}
441_heightdivb_ {17}
442
443_httpicongsdl_ {_httpimg_/gsdl.gif}
444_widthgsdl_ {140}
445_heightgsdl_ {77}
446
447_httpiconitext_ {_httpimg_/itext.gif}
448_widthitext_ {16}
449_heightitext_ {21}
450
451_httpiconibtext_ {_httpimg_/ibtext.gif}
452_widthibtext_ {16}
453_heightibtext_ {21}
454
455_httpiconimpegvideo_ {_httpimg_/impegvideo.gif}
456_widthimpegvideo_ {29}
457_heightimpegvideo_ {32}
458
459_httpiconiqtvideo_ {_httpimg_/iqtvideo.gif}
460_widthiqtvideo_ {29}
461_heightiqtvideo_ {32}
462
463_httpiconirmvideo_ {_httpimg_/irmvideo.gif}
464_widthirmvideo_ {29}
465_heightirmvideo_ {32}
466
467_httpiconless_ {_httpimg_/less.gif}
468_widthless_ {30}
469_heightless_ {16}
470
471_httpiconmore_ {_httpimg_/more.gif}
472_widthmore_ {30}
473_heightmore_ {16}
474
475_httpiconspacer_ {_httpimg_/spacer.gif}
476_widthspacer_ {42}
477_heightspacer_ {4}
478
479_httpicontabspace_ {_httpimg_/tabspace.gif}
480_widthtabspace_ {23}
481_heighttabspace_ {1}
482
483_httpicontspace_ {_httpimg_/tspace.gif}
484_heighttspace_ {17}
485
486_httpiconwarning_ {_httpimg_/warning.gif}
487_widthwarning_ {30}
488_heightwarning_ {29}
489
490_httpiconhhome_ {_httpimg_/h\_home.gif}
491_widthhhome_ {200}
492_heighthhome_ {57}
493
494_httpiconarrrght_ {_httpimg_/arrrght.gif}
495_widtharrrght_ {23}
496_heightarrrght_ {15}
497
498_httpiconopenbook_ {_httpimg_/openbook.gif}
499_widthopenbook_ {28}
500_heightopenbook_ {23}
501
502_httpiconaopenbk_ {_httpimg_/aopenbk.gif}
503_widthaopenbk_ {28}
504_heightaopenbk_ {23}
505
506_httpiconopenfldr_ {_httpimg_/openfldr.gif}
507_widthopenfldr_ {23}
508_heightopenfldr_ {15}
509
510_httpiconaopenfdr_ {_httpimg_/aopenfdr.gif}
511_widthaopenfdr_ {23}
512_heightaopenfdr_ {15}
513
514_httpiconbook_ {_httpimg_/book.gif}
515_widthbook_ {18}
516_heightbook_ {11}
517
518_httpiconabook_ {_httpimg_/abook.gif}
519_widthabook_ {18}
520_heightabook_ {11}
521
522_httpiconbshelf_ {_httpimg_/bshelf.gif}
523_widthbshelf_ {20}
524_heightbshelf_ {16}
525
526_httpiconabshelf_ {_httpimg_/abshelf.gif}
527_widthabshelf_ {20}
528_heightabshelf_ {16}
529
530_httpiconsmtext_ {_httpimg_/smtext.gif}
531_widthsmtext_ {23}
532_heightsmtext_ {15}
533
534_httpiconasmtext_ {_httpimg_/asmtext.gif}
535_widthasmtext_ {23}
536_heightasmtext_ {15}
537
538_httpiconclsdfldr_ {_httpimg_/clsdfldr.gif}
539_widthclsdfldr_ {23}
540_heightclsdfldr_ {15}
541
542_httpiconaclsdfdr_ {_httpimg_/aclsdfdr.gif}
543_widthaclsdfdr_ {23}
544_heightaclsdfdr_ {15}
545
546
547#######################################################################
548# Icons
549#
550# Must not include links (so they can be used as links). If you want to
551# include links use _image
552#######################################################################
553
554_iconnext_{<img src="_httpiconmore_" align=absbottom
555width=_widthmore_ height=_heightmore_ border=0 alt="_texticonnext_">}
556_iconnext_[v=1] {_texticonnext_}
557
558_iconprev_{<img src="_httpiconless_" align=absbottom
559width=_widthless_ height=_heightless_ border=0 alt="_texticonprev_">}
560_iconprev_[v=1] {_texticonprev_}
561
562_icontabsearchgreen_ {<img
563src="_httpicontsrchgr_" height=_heighttsrchx_ width=_widthtsrchx_ border=0>}
564_icontabsearchgreen_[v=1] {_texticontabsearchgreen_}
565
566_icontabListgreen_ {<img
567src="_httpicontlistgr_" height=_heighttlistx_ width=_widthtlistx_ border=0>}
568_icontablistgreen_ [v=1] {_texticontablistgreen_}
569
570_icontabTitlegreen_ {<img
571src="_httpiconttitlgr_" height=_heightttitlx_ width=_widthttitlx_ border=0>}
572_icontabTitlegreen_[v=1] {_texticontabtitlegreen_}
573
574_icontabCreatorgreen_ {<img
575src="_httpicontauthgr_" height=_heighttauthx_ width=_widthtauthx_ border=0>}
576_icontabCreatorgreen_[v=1] {_texticontabauthorgreen_}
577
578_icontabSeriesgreen_ {<img
579src="_httpicontsergr_" height=_heighttserx_ width=_widthtserx_ border=0>}
580_icontabSeriesgreen_[v=1] {_texticontabseriesgreen_}
581
582_icontabDategreen_ {<img
583src="_httpicontdategr_" height=_heighttdatex_ width=_widthtdatex_ border=0>}
584_icontabDategreen_[v=1] {_texticontabdategreen_}
585
586_icontabSubjectgreen_ {<img
587src="_httpicontsubjgr_" height=_heighttsubjx_ width=_widthtsubjx_ border=0>}
588_icontabSubjectgreen_[v=1] {_texticontabsubjectgreen_}
589
590_icontabTogreen_ {<img
591src="_httpiconttogr_" height=_heightttox_ width=_widthttox_ border=0>}
592_icontabTogreen_[v=1] {_texticontabtogreen_}
593
594_icontabFromgreen_ {<img
595src="_httpicontfromgr_" height=_heighttfromx_ width=_widthtfromx_ border=0>}
596_icontabFromgreen_[v=1] {_texticontabfromgreen_}
597
598_icontabHowtogreen_ {<img
599src="_httpiconthowgr_" height=_heightthowx_ width=_widththowx_ border=0>}
600_icontabHowtogreen_[v=1] {_texticontabhowgreen_}
601
602_icontabTopicgreen_ {<img
603src="_httpiconttopicgr_" height=_heightttopicx_ width=_widthttopicx_ border=0>}
604_icontabTopicgreen_[v=1] {_texticontabtopicgreen_}
605
606_icontabBrowsegreen_ {<img
607src="_httpicontbrwsegr_" height=_heighttbrwsex_ width=_widthtbrwsex_ border=0>}
608_icontabBrowsegreen_[v=1] {_texticontabbrwsegreen_}
609
610_icontabOrganizationgreen_ {<img
611src="_httpicontorggr_" height=_heighttorgx_ width=_widthtorgx_ border=0>}
612_icontabOrganizationgreen_[v=1] {_texticontaborggreen_}
613
614_icontabPeoplegreen_ {<img
615src="_httpicontpeopgr_" height=_heighttpeopx_ width=_widthtpeopx_ border=0>}
616_icontabPeoplegreen_[v=1] {_texticontabPeoplegreen_}
617
618_icontabLanguagegreen_ {<img
619src="_httpicontlanggr_" height=_heighttlangx_ width=_widthtlangx_ border=0>}
620_icontabLanguagegreen_[v=1] {_texticontabLanguagegreen_}
621
622_icontabAcronymgreen_ {<img
623src="_httpicontacrogr_" height=_heighttacrox_ width=_widthtacrox_ border=0>}
624_icontabAcronymgreen_[v=1] {_texticontabAcronymgreen_}
625
626_iconblankbar_ {<center><img src="_httpicondivb_" width=_widthdivb_ height=6></center>}
627_iconblankbar_[v=1] {<br><hr><br>}
628
629_icontext_ {<img border=0 align=absmiddle src="_httpiconitext_" width=_widthitext_ height=_heightitext_ alt="_texticontext_">}
630_icontext_[v=1] {_texticontext_}
631
632_iconblanktext_ {<img border=0 align=absmiddle src="_httpiconibtext_" width=_widthibtext_ height=_heightibtext_>}
633_iconblanktext_[v=1] {}
634
635_iconclosedbook_ {<img src="_httpiconbook_" width=_widthbook_ height=_heightbook_ border=0 alt="_texticonclosedbook_">}
636_iconclosedbook_ [v=1] {<small><b>_texticonclosedbook_: </b></small>}
637_iconclosedbook_ [v=1,l=zh]{<small><_font_><b>_texticonclosedbook_: </b></font></small>}
638
639
640#######################################################################
641# Image links
642#
643# These might include a link (not like an _icon_
644#######################################################################
645
646
647_imageabout_ {<a href="_httppageabout_"
648 onMouseover = "img\_on('about')"
649 onMouseout = "img\_off('about')"><img name="about"
650 src="_httpiconcabtof_" width=_widthcabtx_ height=_heightcabtx_
651 border=0 alt="_textimageabout_"></a>}
652
653_imageabout_[v=1] {
654<a href="_httppageabout_">_textimageabout_</a>
655}
656
657_imagehome_ {<a href="_httppagehome_"
658 onMouseover = "img\_on('home')"
659 onMouseout = "img\_off('home')"><img name="home"
660 src="_httpiconchomeof_" width="_widthchomex_" height="_heightchomex_"
661 border="0" alt="_textimagehome_"></a>}
662
663_imagehome_[v=1] {
664<a href="_httppagehome_">_textimagehome_</a>
665}
666
667
668_imagehelp_ {<a href="_httppagehelp_"
669 onMouseover = "img\_on('help')"
670 onMouseout = "img\_off('help')"><img name="help"
671 src="_httpiconchelpof_" width="_widthchelpx_" height="_heightchelpx_"
672 border="0" alt="_textimagehelp_"></a>}
673
674_imagehelp_[v=1] {
675<a href="_httppagehelp_">_textimagehelp_</a>
676}
677
678
679_imagepref_ {<a href="_httppagepref_"
680 onMouseover = "img\_on('pref')"
681 onMouseout = "img\_off('pref')"><img name="pref"
682 src="_httpiconcprefof_" width="_widthcprefx_" height="_heightcprefx_" border="0" alt="_textimagepref_"></a>}
683
684_imagepref_[v=1] {
685<a href="_httppagepref_">_textimagepref_</a>
686}
687
688_imagegreenstone_ {<img src="_httpicongsdl_" width="_widthgsdl_" height="_heightgsdl_" border="0" alt="_textimagegreenstone_" hspace=0>}
689
690_imagegreenstone_[v=1] {_textimagegreenstone_}
Note: See TracBrowser for help on using the repository browser.