source: gsdl/tags/Commited-z3950/gsdl/macros/base.dm@ 18509

Last change on this file since 18509 was 1305, checked in by sjboddie, 24 years ago

some more tidying up of end-user collection building

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 20.9 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
62#######################################################################
63# Macros whose values are set from within the server at runtime. These
64# are here only for reference and to set default values if required.
65#######################################################################
66
67# _win32_ will be set to 1 if we're on windows
68_win32_ {}
69
70_navigationbar_ {}
71_javaimagesnavbar_ {}
72_javaimagescontent_ {}
73_widthtspace_ {2}
74
75# all cgi args are set as _cgiargX_ macros - those I've put here
76# are those that need to default to something
77_cgiargd_ {}
78_cgiargcl_ {}
79
80# set from within the query action
81_hselection_ {}
82_jselection_ {}
83_nselection_ {}
84#granularity selection for mgpp
85_gselection_ {}
86#######################################################################
87# navigation bar images
88#
89#######################################################################
90
91# the spacer image - the width of this is set from server
92_imagespacer_ {<img
93src="_httpicontspace_" width="_widthtspace_" height="_heighttspace_">}
94_imagespacer_[v=1] {<br>
95}
96
97# image macros for all the classifications currently supported by
98# this receptionist.
99#
100# image macros for to and from added by gwp on 2000 june 13
101
102_imagesearch_ {<a href="_httpquery_"
103 onMouseover = "img\_on('search')"
104 onMouseout = "img\_off('search')"><img name="search"
105 src="_httpicontsrchof_" width="_widthtsrchx_" height="_heighttsrchx_"
106 border="0" alt="_textimagesearch_"></a>}
107_imagesearch_[v=1] {<a href="_httpquery_">_textimagesearch_</a><br>
108}
109
110_imageTitle_ {<a href="_httpbrowseTitle_"
111 onMouseover = "img\_on('titles')"
112 onMouseout = "img\_off('titles')"><img name="titles"
113 src="_httpiconttitlof_" width=_widthttitlx_ height=_heightttitlx_
114 border=0 alt="_textimageTitle_"></a>}
115_imageTitle_[v=1] {<a href="_httpbrowseTitle_">_textimageTitle_</a><br>
116}
117
118_imageCreator_ {<a href="_httpbrowseCreator_"
119 onMouseover = "img\_on('authors')"
120 onMouseout = "img\_off('authors')"><img name="authors"
121 src="_httpicontauthof_" width=_widthtauthx_ height=_heighttauthx_
122 border=0 alt="_textimageCreator_"></a>}
123_imageCreator_[v=1] {<a href="_httpbrowseCreator_">_textimageCreator_</a><br>
124}
125
126_imageSeries_ {<a href="_httpbrowseSeries_"
127 onMouseover = "img\_on('series')"
128 onMouseout = "img\_off('series')"><img name="series"
129 src="_httpicontserof_" width="_widthtserx_" height="_heighttserx_"
130 border="0" alt="_textimageSeries_"></a>}
131_imageSeries_[v=1] {<a href="_httpbrowseSeries_">_textimageSeries_</a><br>
132}
133
134_imageDate_ {<a href="_httpbrowseDate_"
135 onMouseover = "img\_on('dates')"
136 onMouseout = "img\_off('dates')"><img name="dates"
137 src="_httpicontdateof_" width="_widthtdatex_" height="_heighttdatex_"
138 border="0" alt="_textimageDate_"></a>}
139_imageDate_[v=1] {<a href="_httpbrowseDate_">_textimageDate_</a><br>
140}
141
142_imageSubject_ {<a href="_httpbrowseSubject_"
143 onMouseover = "img\_on('subjects')"
144 onMouseout = "img\_off('subjects')"><img name="subjects"
145 src="_httpicontsubjof_" width="_widthtsubjx_" height="_heighttsubjx_"
146 border="0" alt="_textimageSubject_"></a>}
147_imageSubject_[v=1] {<a href="_httpbrowseSubject_">_textimageSubject_</a><br>
148}
149
150_imageTo_ {<a href="_httpbrowseTo_"
151 onMouseover = "img\_on('to')"
152 onMouseout = "img\_off('to')"><img name="to"
153 src="_httpiconttoof_" width="_widthttox_" height="_heightttox_"
154 border="0" alt="_textimageTo_"></a>}
155_imageTo_[v=1] {<a href="_httpbrowseTo_">_textimageTo_</a><br>
156}
157
158_imageFrom_ {<a href="_httpbrowseFrom_"
159 onMouseover = "img\_on('from')"
160 onMouseout = "img\_off('from')"><img name="from"
161 src="_httpicontfromof_" width="_widthtfromx_" height="_heighttfromx_"
162 border="0" alt="_textimageFrom_"></a>}
163_imageFrom_[v=1] {<a href="_httpbrowseFrom_">_textimageFrom_</a><br>
164}
165
166_imageOrganization_ {<a href="_httpbrowseOrganization_"
167 onMouseover = "img\_on('org')"
168 onMouseout = "img\_off('org')"><img name="org"
169 src="_httpicontorgof_" width="_widthtorgx_" height="_heighttorgx_"
170 border="0" alt="_textimageOrganization_"></a>}
171_imageOrganization_[v=1] {<a href="_httpbrowseOrganization_">_textimageOrganization_</a><br>
172}
173
174_imageHowto_ {<a href="_httpbrowseHowto_"
175 onMouseover = "img\_on('how')"
176 onMouseout = "img\_off('how')"><img name="how"
177 src="_httpiconthowof_" width="_widththowx_" height="_heightthowx_"
178 border="0" alt="_textimageHowto_"></a>}
179_imageHowto_[v=1] {<a href="_httpbrowseHowto_">_textimageHowto_</a><br>
180}
181
182_imageTopic_ {<a href="_httpbrowseTopic_"
183 onMouseover = "img\_on('topic')"
184 onMouseout = "img\_off('topic')"><img name="topic"
185 src="_httpiconttopicof_" width="_widthttopicx_" height="_heightttopicx_"
186 border="0" alt="_textimageTopic_"></a>}
187_imageTopic_[v=1] {<a href="_httpbrowseTopic_">_textimageTopic_</a><br>
188}
189
190_imageBrowse_ {<a href="_httpbrowseBrowse_"
191 onMouseover = "img\_on('browse')"
192 onMouseout = "img\_off('browse')"><img name="browse"
193 src="_httpicontbrwseof_" width="_widthtbrwsex_" height="_heighttbrwsex_"
194 border="0" alt="_textimageBrowse_"></a>}
195_imageBrowse_[v=1] {<a href="_httpbrowseBrowse_">_textimageBrowse_</a><br>
196}
197
198_imagePeople_ {<a href="_httpbrowsePeople_"
199 onMouseover = "img\_on('People')"
200 onMouseout = "img\_off('People')"><img name="People"
201 src="_httpicontpeopof_" width=_widthtpeopx_ height=_heighttpeopx_
202 border=0 alt="_textimagePeople_"></a>}
203_imagePeople_[v=1] {<a href="_httpbrowsePeople_">_textimagePeople_</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_ [v=1] {
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_ [v=1] {}
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_javaTo_ {
311 to\_on = new Image(_widthttox_, _heightttox_);
312 to\_on.src = "_httpiconttoon_";
313 to\_off = new Image(_widthttox_, _heightttox_);
314 to\_off.src = "_httpiconttoof_";
315}
316
317_javaFrom_ {
318 from\_on = new Image(_widthtfromx_, _heighttfromx_);
319 from\_on.src = "_httpicontfromon_";
320 from\_off = new Image(_widthtfromx_, _heighttfromx_);
321 from\_off.src = "_httpicontfromof_";
322}
323
324_javaHowto_ {
325 how\_on = new Image(_widththowx_, _heightthowx_);
326 how\_on.src = "_httpiconthowon_";
327 how\_off = new Image(_widththowx_, _heightthowx_);
328 how\_off.src = "_httpiconthowof_";
329}
330
331_javaOrganization_ {
332 org\_on = new Image(_widthtorgx_, _heighttorgx_);
333 org\_on.src = "_httpicontorgon_";
334 org\_off = new Image(_widthtorgx_, _heighttorgx_);
335 org\_off.src = "_httpicontorgof_";
336}
337
338_javaTopic_ {
339 topic\_on = new Image(_widthttopicx_, _heightttopicx_);
340 topic\_on.src = "_httpiconttopicon_";
341 topic\_off = new Image(_widthttopicx_, _heightttopicx_);
342 topic\_off.src = "_httpiconttopicof_";
343}
344
345_javaBrowse_ {
346 browse\_on = new Image(_widthtbrwsex_, _heighttbrwsex_);
347 browse\_on.src = "_httpicontbrwseon_";
348 browse\_off = new Image(_widthtbrwsex_, _heighttbrwsex_);
349 browse\_off.src = "_httpicontbrwseof_";
350}
351
352_javaPeople_ {
353 People\_on = new Image(_widthtpeopx_, _heighttpeopx_);
354 People\_on.src = "_httpicontpeopon_";
355 People\_off = new Image(_widthtpeopx_, _heighttpeopx_);
356 People\_off.src = "_httpicontpeopof_";
357}
358
359
360#######################################################################
361# general web macros
362#######################################################################
363
364_mailaddr_ {[email protected]}
365
366_gsdltop_ {_top}
367
368#######################################################################
369# http macros
370#
371# These contain the url without any quotes
372#######################################################################
373
374_httpcollimg_ {_httpcollection_/index/assoc}
375_httpdocimg_ {_httpcollimg_/_thisOID_}
376
377_httpcollection_ {_httpprefix_/collect/_cgiargc_}
378
379_httppagex_ {_gwcgi_?e=_compressedoptions_&a=p&p=_1_}
380_httppagestatus_ {_gwcgi_?e=_compressedoptions_&a=status}
381_httppageabout_ {_httppagex_(about)}
382#_httppagehome_ {_httppagex_(home)}
383_httppagehome_ {_gwcgi_?a=p&p=home}
384_httppagehelp_ {_httppagex_(help)}
385_httppagepref_ {_httppagex_(preferences)}
386_httpclearhistory_ {_gwcgi_?e=_compressedoptions_&a=dh}
387
388_httpgreenstone_ {_httppagex_(gsdl)}
389_httpdownload_ {http://www.nzdl.org/download}
390_httppublications_ {_httpdownload_/greenstone/publications}
391
392_httpcurrentdocument_ {_gwcgi_?e=_compressedoptions_&cl=_cgiargcl_&d=_cgiargd_}
393_httpquery_ {_gwcgi_?e=_compressedoptions_&a=q}
394
395# _httpdoc_ is the same as _httpdocument_ - _httpdocument_
396# may occasionally be altered by the server however
397_httpdocument_ {_gwcgi_?e=_compressedoptions_&a=d}
398_httpdoc_ {_gwcgi_?e=_compressedoptions_&a=d}
399
400_httpextlink_ {_gwcgi_?e=_compressedoptions_&a=extlink}
401_httpbuild_ {_gwcgi_?e=_compressedoptions_&a=bc}
402
403_httpiconchalk_ {_httpimg_/chalk.gif}
404_widthchalk_ {2000}
405_heightchalk_ {10}
406
407_httpicondivb_ {_httpimg_/divb.gif}
408_widthdivb_ {_pagewidth_}
409_heightdivb_ {17}
410
411_httpicongsdl_ {_httpimg_/gsdl.gif}
412_widthgsdl_ {140}
413_heightgsdl_ {77}
414
415_httpiconitext_ {_httpimg_/itext.gif}
416_widthitext_ {16}
417_heightitext_ {21}
418
419_httpiconibtext_ {_httpimg_/ibtext.gif}
420_widthibtext_ {16}
421_heightibtext_ {21}
422
423_httpiconimpegvideo_ {_httpimg_/impegvideo.gif}
424_widthimpegvideo_ {29}
425_heightimpegvideo_ {32}
426
427_httpiconiqtvideo_ {_httpimg_/iqtvideo.gif}
428_widthiqtvideo_ {29}
429_heightiqtvideo_ {32}
430
431_httpiconirmvideo_ {_httpimg_/irmvideo.gif}
432_widthirmvideo_ {29}
433_heightirmvideo_ {32}
434
435_httpiconless_ {_httpimg_/less.gif}
436_widthless_ {30}
437_heightless_ {16}
438
439_httpiconmore_ {_httpimg_/more.gif}
440_widthmore_ {30}
441_heightmore_ {16}
442
443_httpiconspacer_ {_httpimg_/spacer.gif}
444_widthspacer_ {42}
445_heightspacer_ {4}
446
447_httpicontabspace_ {_httpimg_/tabspace.gif}
448_widthtabspace_ {23}
449_heighttabspace_ {1}
450
451_httpicontspace_ {_httpimg_/tspace.gif}
452_heighttspace_ {17}
453
454_httpiconwarning_ {_httpimg_/warning.gif}
455_widthwarning_ {30}
456_heightwarning_ {29}
457
458_httpiconhhome_ {_httpimg_/h\_home.gif}
459_widthhhome_ {200}
460_heighthhome_ {57}
461
462_httpiconarrrght_ {_httpimg_/arrrght.gif}
463_widtharrrght_ {23}
464_heightarrrght_ {15}
465
466_httpiconopenbook_ {_httpimg_/openbook.gif}
467_widthopenbook_ {28}
468_heightopenbook_ {23}
469
470_httpiconaopenbk_ {_httpimg_/aopenbk.gif}
471_widthaopenbk_ {28}
472_heightaopenbk_ {23}
473
474_httpiconopenfldr_ {_httpimg_/openfldr.gif}
475_widthopenfldr_ {23}
476_heightopenfldr_ {15}
477
478_httpiconaopenfdr_ {_httpimg_/aopenfdr.gif}
479_widthaopenfdr_ {23}
480_heightaopenfdr_ {15}
481
482_httpiconbook_ {_httpimg_/book.gif}
483_widthbook_ {18}
484_heightbook_ {11}
485
486_httpiconabook_ {_httpimg_/abook.gif}
487_widthabook_ {18}
488_heightabook_ {11}
489
490_httpiconbshelf_ {_httpimg_/bshelf.gif}
491_widthbshelf_ {20}
492_heightbshelf_ {16}
493
494_httpiconabshelf_ {_httpimg_/abshelf.gif}
495_widthabshelf_ {20}
496_heightabshelf_ {16}
497
498_httpiconsmtext_ {_httpimg_/smtext.gif}
499_widthsmtext_ {23}
500_heightsmtext_ {15}
501
502_httpiconasmtext_ {_httpimg_/asmtext.gif}
503_widthasmtext_ {23}
504_heightasmtext_ {15}
505
506_httpiconclsdfldr_ {_httpimg_/clsdfldr.gif}
507_widthclsdfldr_ {23}
508_heightclsdfldr_ {15}
509
510_httpiconaclsdfdr_ {_httpimg_/aclsdfdr.gif}
511_widthaclsdfdr_ {23}
512_heightaclsdfdr_ {15}
513
514
515#######################################################################
516# Icons
517#
518# Must not include links (so they can be used as links). If you want to
519# include links use _image
520#######################################################################
521
522_iconnext_{<img src="_httpiconmore_" align=absbottom
523width=_widthmore_ height=_heightmore_ border=0 alt="_texticonnext_">}
524_iconnext_[v=1] {_texticonnext_}
525
526_iconprev_{<img src="_httpiconless_" align=absbottom
527width=_widthless_ height=_heightless_ border=0 alt="_texticonprev_">}
528_iconprev_[v=1] {_texticonprev_}
529
530_icontabsearchgreen_ {<img
531src="_httpicontsrchgr_" height=_heighttsrchx_ width=_widthtsrchx_ border=0>}
532_icontabsearchgreen_[v=1] {_texticontabsearchgreen_}
533
534_icontabListgreen_ {<img
535src="_httpicontlistgr_" height=_heighttlistx_ width=_widthtlistx_ border=0>}
536_icontablistgreen_ [v=1] {_texticontablistgreen_}
537
538_icontabTitlegreen_ {<img
539src="_httpiconttitlgr_" height=_heightttitlx_ width=_widthttitlx_ border=0>}
540_icontabTitlegreen_[v=1] {_texticontabtitlegreen_}
541
542_icontabCreatorgreen_ {<img
543src="_httpicontauthgr_" height=_heighttauthx_ width=_widthtauthx_ border=0>}
544_icontabCreatorgreen_[v=1] {_texticontabauthorgreen_}
545
546_icontabSeriesgreen_ {<img
547src="_httpicontsergr_" height=_heighttserx_ width=_widthtserx_ border=0>}
548_icontabSeriesgreen_[v=1] {_texticontabseriesgreen_}
549
550_icontabDategreen_ {<img
551src="_httpicontdategr_" height=_heighttdatex_ width=_widthtdatex_ border=0>}
552_icontabDategreen_[v=1] {_texticontabdategreen_}
553
554_icontabSubjectgreen_ {<img
555src="_httpicontsubjgr_" height=_heighttsubjx_ width=_widthtsubjx_ border=0>}
556_icontabSubjectgreen_[v=1] {_texticontabsubjectgreen_}
557
558_icontabTogreen_ {<img
559src="_httpiconttogr_" height=_heightttox_ width=_widthttox_ border=0>}
560_icontabTogreen_[v=1] {_texticontabtogreen_}
561
562_icontabFromgreen_ {<img
563src="_httpicontfromgr_" height=_heighttfromx_ width=_widthtfromx_ border=0>}
564_icontabFromgreen_[v=1] {_texticontabfromgreen_}
565
566_icontabHowtogreen_ {<img
567src="_httpiconthowgr_" height=_heightthowx_ width=_widththowx_ border=0>}
568_icontabHowtogreen_[v=1] {_texticontabhowgreen_}
569
570_icontabTopicgreen_ {<img
571src="_httpiconttopicgr_" height=_heightttopicx_ width=_widthttopicx_ border=0>}
572_icontabTopicgreen_[v=1] {_texticontabtopicgreen_}
573
574_icontabBrowsegreen_ {<img
575src="_httpicontbrwsegr_" height=_heighttbrwsex_ width=_widthtbrwsex_ border=0>}
576_icontabBrowsegreen_[v=1] {_texticontabbrwsegreen_}
577
578_icontabOrganizationgreen_ {<img
579src="_httpicontorggr_" height=_heighttorgx_ width=_widthtorgx_ border=0>}
580_icontabOrganizationgreen_[v=1] {_texticontaborggreen_}
581
582_icontabPeoplegreen_ {<img
583src="_httpicontpeopgr_" height=_heighttpeopx_ width=_widthtpeopx_ border=0>}
584_icontabPeoplegreen_[v=1] {_texticontabPeoplegreen_}
585
586_iconblankbar_ {<center><img src="_httpicondivb_" width=_widthdivb_ height=6></center>}
587_iconblankbar_[v=1] {<br><hr><br>}
588
589_icontext_ {<img border=0 align=absmiddle src="_httpiconitext_" width=_widthitext_ height=_heightitext_ alt="_texticontext_">}
590_icontext_[v=1] {_texticontext_}
591
592_iconblanktext_ {<img border=0 align=absmiddle src="_httpiconibtext_" width=_widthibtext_ height=_heightibtext_>}
593_iconblanktext_[v=1] {}
594
595_iconclosedbook_ {<img src="_httpiconbook_" width=_widthbook_ height=_heightbook_ border=0 alt="_texticonclosedbook_">}
596_iconclosedbook_ [v=1] {<small><b>_texticonclosedbook_: </b></small>}
597_iconclosedbook_ [v=1,l=zh]{<small><_font_><b>_texticonclosedbook_: </b></font></small>}
598
599
600#######################################################################
601# Image links
602#
603# These might include a link (not like an _icon_
604#######################################################################
605
606
607_imageabout_ {<a href="_httppageabout_"
608 onMouseover = "img\_on('about')"
609 onMouseout = "img\_off('about')"><img name="about"
610 src="_httpiconcabtof_" width=_widthcabtx_ height=_heightcabtx_
611 border=0 alt="_textimageabout_"></a>}
612
613_imageabout_[v=1] {
614<a href="_httppageabout_">_textimageabout_</a>
615}
616
617_imagehome_ {<a href="_httppagehome_"
618 onMouseover = "img\_on('home')"
619 onMouseout = "img\_off('home')"><img name="home"
620 src="_httpiconchomeof_" width="_widthchomex_" height="_heightchomex_"
621 border="0" alt="_textimagehome_"></a>}
622
623_imagehome_[v=1] {
624<a href="_httppagehome_">_textimagehome_</a>
625}
626
627
628_imagehelp_ {<a href="_httppagehelp_"
629 onMouseover = "img\_on('help')"
630 onMouseout = "img\_off('help')"><img name="help"
631 src="_httpiconchelpof_" width="_widthchelpx_" height="_heightchelpx_"
632 border="0" alt="_textimagehelp_"></a>}
633
634_imagehelp_[v=1] {
635<a href="_httppagehelp_">_textimagehelp_</a>
636}
637
638
639_imagepref_ {<a href="_httppagepref_"
640 onMouseover = "img\_on('pref')"
641 onMouseout = "img\_off('pref')"><img name="pref"
642 src="_httpiconcprefof_" width="_widthcprefx_" height="_heightcprefx_" border="0" alt="_textimagepref_"></a>}
643
644_imagepref_[v=1] {
645<a href="_httppagepref_">_textimagepref_</a>
646}
647
648_imagegreenstone_ {<img src="_httpicongsdl_" width="_widthgsdl_" height="_heightgsdl_" border="0" alt="_textimagegreenstone_" hspace=0>}
649
650_imagegreenstone_[v=1] {_textimagegreenstone_}
Note: See TracBrowser for help on using the repository browser.