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

Last change on this file since 10596 was 10596, checked in by jrm21, 19 years ago

remove usability stuff from the default macro files

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 23.3 KB
Line 
1# this file must be UTF-8 encoded
2#######################################################################
3# GLOBAL MACROS
4#######################################################################
5
6package Global
7
8##########
9
10_optsite_ {}
11
12
13##########
14
15_htmlextra_ {}
16
17#_starthighlight_ {<b><u>}
18#_endhighlight_ {</u></b>}
19
20_starthighlight_ {<span style="background: #FFFF77">}
21_endhighlight_ {</span>}
22
23#######################################################################
24# page content
25#
26# these should always be overridden for each page/collection
27#######################################################################
28
29_content_ {<p><h2>oops</h2>
30_textdefaultcontent_}
31_pagetitle_ {_textdefaulttitle_}
32_imagethispage_ {}
33_iconcollection_ {}
34_collectionname_ {}
35
36package Usability
37
38_content_ {
39<h2>_textaboutusabilitytitle_</h2>
40<p>_textaboutusability_
41}
42_pagetitle_{_textaboutusabilitypagetitle_}
43
44package Privacy
45_content_ {
46<h2>_textaboutprivacytitle_</h2>
47<p>_textaboutprivacy_
48}
49_pagetitle_{_textaboutprivacypagetitle_}
50
51package Global
52
53
54_imagecollection_ {_If_("_iconcollection_" ne "",
55<a href="_httppageabout_"><img src="_iconcollection_" border="0" title="_collectionname_"></a>,
56_imagecollectionv_)}
57_imagecollection_ [v=1] {_imagecollectionv_}
58_imagecollectionv_ {_If_(_collectionname_,<br><br><h2><a href="_httppageabout_">_collectionname_</a></h2>)}
59
60#######################################################################
61# these width macros are read in by the server when calculating
62# width of navigation bar etc. There should be one for each
63# classification that this receptionist supports, one for the
64# search button, and the _pagewidth_ macro which is the total width
65# of the page
66#######################################################################
67
68# width of tabs when displaying tables of contents
69_tabwidth_ {25}
70
71_pagewidth_ {537}
72# defaultwidth is the width buttons default to if not included in this list
73# but you need to define a _METAwidth_ tag as the server tests that it exists!
74_defaultwidth_ {87}
75_searchwidth_ {_widthtsrchx_}
76
77# Dublin Core Metadata Element Set, Version 1.1
78_Titlewidth_ {_widthttitlex_}
79_Creatorwidth_ {_widthtcreatx_}
80_Subjectwidth_ {_widthtsubjx_}
81_Descriptionwidth_ {_widthtdescx_}
82_Publisherwidth_ {_widthtpublx_}
83_Contributorwidth_ {_widthtcontrx_}
84_Datewidth_ {_widthtdatex_}
85_Typewidth_ {_widthttypex_}
86_Formatwidth_ {_widthtformx_}
87_Identifierwidth_ {_widthtidentx_}
88_Sourcewidth_ {_widthtsrcx_}
89_Languagewidth_ {_widthtlangx_}
90_Relationwidth_ {_widthtrelx_}
91_Coveragewidth_ {_widthtcoverx_}
92_Rightswidth_ {_widthtrightx_}
93
94_Collagewidth_ {_widthtcollx_}
95_Listwidth_ {_widthtlistx_}
96_Serieswidth_ {_widthtserx_}
97_Towidth_ {_widthttox_}
98_Fromwidth_ {_widthtfromx_}
99_Organizationwidth_ {_widthtorgx_}
100_Howtowidth_ {_widththowx_}
101_Topicwidth_ {_widthttopicx_}
102_Browsewidth_ {_widthtbrwsex_}
103_Peoplewidth_ {_widthtpeopx_}
104_Acronymwidth_ {_widthtacrox_}
105_Phrasewidth_ {_widthtphrsex_}
106_Artistwidth_ {_widthtartstx_}
107_Keywordwidth_ {_widthtkwx_}
108_Volumewidth_ {_widthtvolx_}
109_Captionswidth_ {_widthtcaptx_}
110_Countrieswidth_ {_widthcountx_}
111
112#######################################################################
113# Macros whose values are set from within the server at runtime. These
114# are here only for reference and to set default values if required.
115#######################################################################
116
117# _win32_ will be set to 1 if we're on windows
118_win32_ {}
119
120_navigationbar_ {}
121_widthtspace_ {2}
122
123# The following is useful if collection specific macro. Override
124# _optnavigationbar_ to be empty if you don't want the navigation bar to
125# appear in the standard place, and then specify _navigationbar_ elsewhere
126# in a collection specific macro file(s) to be where you do want it.
127_optnavigationbar_{_navigationbar_}
128
129# all cgi args are set as _cgiargX_ macros - those I've put here
130# are those that need to default to something
131_cgiargd_ {}
132_cgiargcl_ {}
133
134# set from within the query action
135_hselection_ {}
136_jselection_ {}
137_nselection_ {}
138#level (granularity) selection for mgpp
139_gselection_ {}
140#level selection for form searching - dont have paragraph
141_gformselection_ {_gselection_}
142_fqfselection_ {}
143
144#######################################################################
145# flashy rollover image macro
146#
147#######################################################################
148
149# imagescript should always be included in html header if there are
150# flashy images on the page
151_imagescript_ {
152var loaded = new Array();
153function gbutton (image, onimage) \{
154 if (image && image.src && (image.out == null || typeof(image.out) == typeof(void(0)))) \{
155 s = image.src;
156 image.out = new Image();
157 image.out.src = s;
158 image.over = new Image();
159 image.over.src = onimage;
160 loaded[image.name] = image;
161 \}
162\}
163
164function roll (imagename, over) \{
165 if (document.images) \{
166 if (over) i = "over";
167 else i = "out";
168 image = loaded[imagename];
169 if (image) image.src = eval("image."+i+".src");
170 \}
171\}
172}
173
174# gsimage should be used to define an instance of a flashy image
175# parameters are:
176# 1. the url to go to when the button is clicked
177# 2. the url of the "off" image
178# 3. the url of the "on" image
179# 4. the name of the image (must be unique)
180# 5. image alt text
181_gsimage_ {<a href="_1_" onMouseover="roll('_4_',1);" onMouseOut="roll('_4_',0);"><img
182name="_4_" src="_2_" onLoad="gbutton(this,'_3_');" border="0" alt="_5_" title="_5_"></a>}
183
184_gsimage_ [v=1] {<a href="_1_">_5_</a><br>}
185
186
187#######################################################################
188# navigation bar images
189#
190#######################################################################
191
192# the spacer image - the width of this is set from server
193_imagespacer_ {<img
194src="_httpicontspace_" width="_widthtspace_" height="_heighttspace_">}
195_imagespacer_[v=1] {<br>
196}
197
198# image macros for all the classifications currently supported by
199# this receptionist.
200
201_imagesearch_ {_If_("_cgiargu_" ne "1",_imagesearch2_,_iconnosearch_)}
202_imagesearch2_ {_gsimage_(_httpquery_,_httpicontsrchof_,_httpicontsrchon_,srch,_textimagesearch_)}
203
204# Dublin Core Metadata Element Set, Version 1.1
205_imageTitle_ {_gsimage_(_httpbrowseTitle_,_httpiconttitleof_,_httpiconttitleon_,titles,_textimageTitle_)}
206_imageCreator_ {_gsimage_(_httpbrowseCreator_,_httpicontcreatof_,_httpicontcreaton_,creators,_textimageCreator_)}
207_imageSubject_ {_gsimage_(_httpbrowseSubject_,_httpicontsubjof_,_httpicontsubjon_,subjects,_textimageSubject_)}
208_imageDescription_ {_gsimage_(_httpbrowseDescription_,_httpicontdescof_,_httpicontdescon_,descriptions,_textimageDescription_)}
209_imagePublisher_ {_gsimage_(_httpbrowsePublisher_,_httpicontpublof_,_httpicontpublon_,publishers,_textimagePublisher_)}
210_imageContributor_ {_gsimage_(_httpbrowseContributor_,_httpicontcontrof_,_httpicontcontron_,contributors,_textimageContributor_)}
211_imageDate_ {_gsimage_(_httpbrowseDate_,_httpicontdateof_,_httpicontdateon_,dates,_textimageDate_)}
212_imageType_ {_gsimage_(_httpbrowseType_,_httpiconttypeof_,_httpiconttypeon_,types,_textimageType_)}
213_imageFormat_ {_gsimage_(_httpbrowseFormat_,_httpicontformof_,_httpicontformon_,formats,_textimageFormat_)}
214_imageIdentifier_ {_gsimage_(_httpbrowseIdentifier_,_httpicontidentof_,_httpicontidenton_,identifiers,_textimageIdentifier_)}
215_imageSource_ {_gsimage_(_httpbrowseSource_,_httpicontsrcof_,_httpicontsrcon_,source,_textimageSource_)}
216_imageLanguage_ {_gsimage_(_httpbrowseLanguage_,_httpicontlangof_,_httpicontlangon_,language,_textimageLanguage_)}
217_imageRelation_ {_gsimage_(_httpbrowseRelation_,_httpicontrelof_,_httpicontrelon_,relations,_textimageRelation_)}
218_imageCoverage_ {_gsimage_(_httpbrowseCoverage_,_httpicontcoverof_,_httpicontcoveron_,coverage,_textimageCoverage_)}
219_imageRights_ {_gsimage_(_httpbrowseRights_,_httpicontrightof_,_httpicontrighton_,rights,_textimageRights_)}
220
221_imageSeries_ {_gsimage_(_httpbrowseSeries_,_httpicontserof_,_httpicontseron_,series,_textimageSeries_)}
222_imageTo_ {_gsimage_(_httpbrowseTo_,_httpiconttoof_,_httpiconttoon_,to,_textimageTo_)}
223_imageFrom_ {_gsimage_(_httpbrowseFrom_,_httpicontfromof_,_httpicontfromon_,from,_textimageFrom_)}
224_imageOrganization_ {_gsimage_(_httpbrowseOrganization_,_httpicontorgof_,_httpicontorgon_,org,_textimageOrganization_)}
225_imageHowto_ {_gsimage_(_httpbrowseHowto_,_httpiconthowof_,_httpiconthowon_,how,_textimageHowto_)}
226_imageTopic_ {_gsimage_(_httpbrowseTopic_,_httpiconttopicof_,_httpiconttopicon_,topic,_textimageTopic_)}
227_imageBrowse_ {_gsimage_(_httpbrowseBrowse_,_httpicontbrwseof_,_httpicontbrwseon_,browse,_textimageBrowse_}
228_imagePeople_ {_gsimage_(_httpbrowsePeople_,_httpicontpeopof_,_httpicontpeopon_,people,_textimagePeople_)}
229_imageAcronym_ {_gsimage_(_httpbrowseAcronym_,_httpicontacroof_,_httpicontacroon_,acronym,_textimageAcronym_)}
230_imageCollage_ {_gsimage_(_httpbrowseCollage_,_httpicontcollof_,_httpicontcollon_,collage,_textimageCollage_)}
231_imagePhrase_ {_gsimage_(_httpbrowsePhrase_,_httpicontphrseof_,_httpicontphrseon_,phrase,_textimagePhrase_)}
232_imageArtist_ {_gsimage_(_httpbrowseArtist_,_httpicontartstof_,_httpicontartston_,artist,_textimageArtist_)}
233_imageKeyword_ {_gsimage_(_httpbrowseKeyword_,_httpicontkwof_,_httpicontkwon_,kw,_textimageKeyword_)}
234_imageVolume_ {_gsimage_(_httpbrowseVolume_,_httpicontvolof_,_httpicontvolon_,volume,_textimageVolume_)}
235_imageCaptions_ {_gsimage_(_httpbrowseCaptions_,_httpicontcaptof_,_httpicontcapton_,captions,_textimageCaptions_)}
236_imageCountries_ {_gsimage_(_httpbrowseCountries_,_httpicontcountof_,_httpicontcounton_,countries,_textimageCountries_)}
237
238#######################################################################
239# java images/scripts
240#######################################################################
241
242# the _javalinks_ macros are the flashy image links at the top right of
243# the page.
244
245_javalinks_ {_imagehome_ _imagehelp_ _imagepref_}
246_javalinks_ [v=1] {
247_imagehome_<br>
248_imagehelp_<br>
249_imagepref_<br>
250}
251
252
253#######################################################################
254# general web macros
255#######################################################################
256
257_mailaddr_ {[email protected]}
258
259_gsdltop_ {_top}
260
261#######################################################################
262# http macros
263#
264# These contain the url without any quotes
265#######################################################################
266
267_httpcimages_ {_httpcollection_/images}
268_httpcollimg_ {_httpcollection_/index/assoc}
269_httpdocimg_ {_httpcollimg_/_thisOID_}
270
271_httpcollection_ {_httpprefix_/collect/_cgiargc_}
272
273_httppagex_ {_gwcgi_?e=_compressedoptions_&a=p&p=_1_}
274_httppagestatus_ {_gwcgi_?e=_compressedoptions_&a=status&p=frameset}
275_httppagetranslator_ {_gwcgi_?e=_compressedoptions_&a=gti&p=home}
276_httppagecollector_ {_gwcgi_?e=_compressedoptions_&a=collector&p=intro}
277_httppagegli_ {_httppagex_(gli)}
278_httppageabout_ {_httppagex_(about)}
279#_httppagehome_ {_httppagex_(home)}
280###_httppagehome_ {http://www.nzdl.org/cgi-bin/dblibrary?a=p&p=home}
281_httppagehome_ {_gwcgi_?a=p&p=home&l=_cgiargl_&w=_cgiargw_}
282_httppagehelp_ {_httppagex_(help)}
283_httppagepref_ {_httppagex_(preferences)}
284_httppagedocs_ {_httppagex_(docs)}
285_httpclearhistory_ {_gwcgi_?e=_compressedoptions_&a=dh}
286
287_httppageusab_ {javascript:usabilityfunction()}
288_httpgreenstone_ {_httppagex_(gsdl)}
289_httpdownload_ {http://www.nzdl.org/download}
290_httppublications_ {_httpdownload_/greenstone/publications}
291
292_httpcurrentdocument_ {_gwcgi_?e=_compressedoptions_&cl=_cgiargcl_&d=_cgiargd_}
293_httpquery_ {_gwcgi_?e=_compressedoptions_&a=q}
294_httpBrowse_ {_gwcgi_?e=_compressedoptions_&a=br}
295
296# _httpdoc_ is the same as _httpdocument_ - _httpdocument_
297# may occasionally be altered by the server however
298_httpdocument_ {_gwcgi_?e=_compressedoptions_&a=d}
299_httpdoc_ {_gwcgi_?e=_compressedoptions_&a=d}
300
301_httpextlink_ {_gwcgi_?e=_compressedoptions_&a=extlink}
302_httpbuild_ {_gwcgi_?e=_compressedoptions_&a=bc}
303
304_httpiconchalk_ {_httpimg_/chalk.gif}
305_widthchalk_ {2000}
306_heightchalk_ {10}
307
308_httpicondivb_ {_httpimg_/divb.gif}
309_widthdivb_ {_pagewidth_}
310_heightdivb_ {17}
311
312_httpicongsdl_ {_httpimg_/gsdl.gif}
313_widthgsdl_ {140}
314_heightgsdl_ {77}
315
316_httpusabbanner_ {_httpimg_/usabbnr.gif}
317
318_httpiconitext_ {_httpimg_/itext.gif}
319_widthitext_ {16}
320_heightitext_ {21}
321
322_httpiconiworld_ {_httpimg_/iworld.gif}
323_widthiworld_ {16}
324_heightiworld_ {21}
325
326_httpiconiunknown_ {_httpimg_/iunknown.gif}
327_widthiunknown_ {16}
328_heightiunknown_ {21}
329
330_httpiconibtext_ {_httpimg_/ibtext.gif}
331_widthibtext_ {16}
332_heightibtext_ {21}
333
334_httpiconimpegvideo_ {_httpimg_/impegvid.gif}
335_widthimpegvideo_ {29}
336_heightimpegvideo_ {32}
337
338_httpiconiqtvideo_ {_httpimg_/iqtvideo.gif}
339_widthiqtvideo_ {29}
340_heightiqtvideo_ {32}
341
342_httpiconirmvideo_ {_httpimg_/irmvideo.gif}
343_widthirmvideo_ {29}
344_heightirmvideo_ {32}
345
346_httpiconless_ {_httpimg_/less.gif}
347_widthless_ {30}
348_heightless_ {16}
349
350_httpiconmore_ {_httpimg_/more.gif}
351_widthmore_ {30}
352_heightmore_ {16}
353
354_httpiconspacer_ {_httpimg_/spacer.gif}
355_widthspacer_ {42}
356_heightspacer_ {4}
357
358_httpicontabspace_ {_httpimg_/tabspace.gif}
359_widthtabspace_ {23}
360_heighttabspace_ {1}
361
362_httpicontspace_ {_httpimg_/tspace.gif}
363_heighttspace_ {17}
364
365_httpiconwarning_ {_httpimg_/warning.gif}
366_widthwarning_ {30}
367_heightwarning_ {29}
368
369_httpiconhhome_ {_httpimg_/h\_home.gif}
370_widthhhome_ {200}
371_heighthhome_ {57}
372
373_httpiconarrrght_ {_httpimg_/arrrght.gif}
374_widtharrrght_ {23}
375_heightarrrght_ {15}
376
377_httpiconopenbook_ {_httpimg_/openbook.gif}
378_widthopenbook_ {28}
379_heightopenbook_ {23}
380
381_httpiconaopenbk_ {_httpimg_/aopenbk.gif}
382_widthaopenbk_ {28}
383_heightaopenbk_ {23}
384
385_httpiconopenfldr_ {_httpimg_/openfldr.gif}
386_widthopenfldr_ {23}
387_heightopenfldr_ {15}
388
389_httpiconaopenfdr_ {_httpimg_/aopenfdr.gif}
390_widthaopenfdr_ {23}
391_heightaopenfdr_ {15}
392
393_httpiconbook_ {_httpimg_/book.gif}
394_widthbook_ {18}
395_heightbook_ {11}
396
397_httpiconabook_ {_httpimg_/abook.gif}
398_widthabook_ {18}
399_heightabook_ {11}
400
401_httpiconbshelf_ {_httpimg_/bshelf.gif}
402_widthbshelf_ {20}
403_heightbshelf_ {16}
404
405_httpiconabshelf_ {_httpimg_/abshelf.gif}
406_widthabshelf_ {20}
407_heightabshelf_ {16}
408
409_httpiconsmtext_ {_httpimg_/smtext.gif}
410_widthsmtext_ {23}
411_heightsmtext_ {15}
412
413_httpiconasmtext_ {_httpimg_/asmtext.gif}
414_widthasmtext_ {23}
415_heightasmtext_ {15}
416
417_httpiconclsdfldr_ {_httpimg_/clsdfldr.gif}
418_widthclsdfldr_ {23}
419_heightclsdfldr_ {15}
420
421_httpiconaclsdfdr_ {_httpimg_/aclsdfdr.gif}
422_widthaclsdfdr_ {23}
423_heightaclsdfdr_ {15}
424
425_httpiconimidi_ {_httpimg_/imidi.gif}
426_widthimidi_ {16}
427_heightimidi_ {21}
428
429_httpiconimsword_ {_httpimg_/imsword.gif}
430_widthimsword_ {26}
431_heightimsword_ {26}
432
433_httpiconimp3_ {_httpimg_/mp3icon.gif}
434_widthimp3_ {25}
435_heightimp3_ {20}
436
437_httpiconipdf_ {_httpimg_/ipdf.gif}
438_widthipdf_ {26}
439_heightipdf_ {26}
440
441_httpiconips_ {_httpimg_/ips.gif}
442_widthips_ {25}
443_heightips_ {32}
444
445_httpiconippt_ {_httpimg_/ippt.gif}
446_widthippt_ {32}
447_heightippt_ {30}
448
449_httpiconirtf_ {_httpimg_/irtf.gif}
450_widthirtf_ {29}
451_heightirtf_ {32}
452
453_httpiconixls_ {_httpimg_/iexcel.gif}
454_widthixls_ {32}
455_heightixls_ {30}
456
457#######################################################################
458# Icons
459#
460# Must not include links (so they can be used as links). If you want to
461# include links use _image
462#######################################################################
463
464_iconnext_{<img src="_httpiconmore_" align=absbottom
465width=_widthmore_ height=_heightmore_ border="0" alt="_texticonnext_" title="_texticonnext_">}
466_iconnext_[v=1] {_texticonnext_}
467
468_iconprev_{<img src="_httpiconless_" align=absbottom
469width=_widthless_ height=_heightless_ border="0" alt="_texticonprev_" title="_texticonprev_">}
470_iconprev_[v=1] {_texticonprev_}
471
472_icontabsearchgreen_ {<img
473src="_httpicontsrchgr_" width="_widthtsrchx_" border="0">}
474_icontabsearchgreen_[v=1] {_texticontabsearchgreen_}
475
476
477# Dublin Core Metadata Element Set, Version 1.1
478
479_icontabTitlegreen_ {<img src="_httpiconttitlegr_" width="_widthttitlex_" border="0">}
480_icontabTitlegreen_[v=1] {_texticontabTitlegreen_}
481
482_icontabCreatorgreen_ {<img src="_httpicontcreatgr_" width="_widthtcreatx_" border=0>}
483_icontabCreatorgreen_[v=1] {_texticontabCreatorgreen_}
484
485_icontabSubjectgreen_ {<img src="_httpicontsubjgr_" width=_widthtsubjx_ border=0>}
486_icontabSubjectgreen_[v=1] {_texticontabSubjectgreen_}
487
488_icontabDescriptiongreen_ {<img src="_httpicontdescgr_" width=_widthtdescx_ border=0>}
489_icontabDescriptiongreen_[v=1] {_texticontabDescriptiongreen_}
490
491_icontabPublishergreen_ {<img src="_httpicontpublgr_" width=_widthtpublx_ border=0>}
492_icontabPublishergreen_[v=1] {_texticontabPublishergreen_}
493
494_icontabContributorgreen_ {<img src="_httpicontcontrgr_" width=_widthtcontrx_ border=0>}
495_icontabContributorgreen_[v=1] {_texticontabContributorgreen_}
496
497_icontabDategreen_ {<img src="_httpicontdategr_" width=_widthtdatex_ border=0>}
498_icontabDategreen_[v=1] {_texticontabDategreen_}
499
500_icontabTypegreen_ {<img src="_httpiconttypegr_" width=_widthttypex_ border=0>}
501_icontabTypegreen_[v=1] {_texticontabTypegreen_}
502
503_icontabFormatgreen_ {<img src="_httpicontformgr_" width=_widthtformx_ border=0>}
504_icontabFormatgreen_[v=1] {_texticontabFormatgreen_}
505
506_icontabIdentifiergreen_ {<img src="_httpicontidentgr_" width=_widthtidentx_ border=0>}
507_icontabIdentifiergreen_[v=1] {_texticontabIdentifiergreen_}
508
509_icontabSourcegreen_ {<img src="_httpicontsrcgr_" width=_widthtsrcx_ border=0>}
510_icontabSourcegreen_[v=1] {_texticontabSourcegreen_}
511
512_icontabLanguagegreen_ {<img src="_httpicontlanggr_" width=_widthtlangx_ border=0>}
513_icontabLanguagegreen_[v=1] {_texticontabLanguagegreen_}
514
515_icontabRelationgreen_ {<img src="_httpicontrelgr_" width=_widthtrelx_ border=0>}
516_icontabRelationgreen_[v=1] {_texticontabRelationgreen_}
517
518_icontabCoveragegreen_ {<img src="_httpicontcovergr_" width=_widthtcoverx_ border=0>}
519_icontabCoveragegreen_[v=1] {_texticontabCoveragegreen_}
520
521_icontabRightsgreen_ {<img src="_httpicontrightgr_" width=_widthtrightx_ border=0>}
522_icontabRightsgreen_[v=1] {_texticontabRightsgreen_}
523
524
525
526_icontabListgreen_ {<img
527src="_httpicontlistgr_" width=_widthtlistx_ border=0>}
528_icontablistgreen_ [v=1] {_texticontablistgreen_}
529
530_icontabCollagegreen_ {<img
531src="_httpicontcollgr_" width=_widthtcollx_ border=0>}
532_icontabCollagegreen_[v=1] {_texticontabCollagegreen_}
533
534_icontabSeriesgreen_ {<img
535src="_httpicontsergr_" width=_widthtserx_ border=0>}
536_icontabSeriesgreen_[v=1] {_texticontabseriesgreen_}
537
538_icontabTogreen_ {<img
539src="_httpiconttogr_" width=_widthttox_ border=0>}
540_icontabTogreen_[v=1] {_texticontabtogreen_}
541
542_icontabFromgreen_ {<img
543src="_httpicontfromgr_" width=_widthtfromx_ border=0>}
544_icontabFromgreen_[v=1] {_texticontabfromgreen_}
545
546_icontabHowtogreen_ {<img
547src="_httpiconthowgr_" width=_widththowx_ border=0>}
548_icontabHowtogreen_[v=1] {_texticontabhowgreen_}
549
550_icontabTopicgreen_ {<img
551src="_httpiconttopicgr_" width=_widthttopicx_ border=0>}
552_icontabTopicgreen_[v=1] {_texticontabtopicgreen_}
553
554_icontabBrowsegreen_ {<img
555src="_httpicontbrwsegr_" width=_widthtbrwsex_ border=0>}
556_icontabBrowsegreen_[v=1] {_texticontabbrwsegreen_}
557
558_icontabOrganizationgreen_ {<img
559src="_httpicontorggr_" width=_widthtorgx_ border=0>}
560_icontabOrganizationgreen_[v=1] {_texticontaborggreen_}
561
562_icontabPeoplegreen_ {<img
563src="_httpicontpeopgr_" width=_widthtpeopx_ border=0>}
564_icontabPeoplegreen_[v=1] {_texticontabPeoplegreen_}
565
566_icontabAcronymgreen_ {<img
567src="_httpicontacrogr_" width=_widthtacrox_ border=0>}
568_icontabAcronymgreen_[v=1] {_texticontabAcronymgreen_}
569
570_icontabPhrasegreen_ {<img
571src="_httpicontphrsegr_" width=_widthtphrsex_ border=0>}
572_icontabPhrasegreen_[v=1] {_texticontabPhrasegreen_}
573
574_icontabArtistgreen_ {<img
575src="_httpicontartstgr_" width=_widthtartstx_ border=0>}
576_icontabArtistgreen_[v=1] {_texticontabArtistgreen_}
577
578_icontabKeywordgreen_ {<img
579src="_httpicontkwgr_" width=_widthtkwx_ border=0>}
580_icontabKeywordgreen_[v=1] {_texticontabKeywordgreen_}
581
582_icontabVolumegreen_ {<img
583src="_httpicontvolgr_" width=_widthtvolx_ border=0>}
584_icontabVolumegreen_[v=1] {_texticontabVolumegreen_}
585
586_icontabCaptionsgreen_ {<img
587src="_httpicontcaptgr_" width=_widthtcaptx_ border=0>}
588_icontabCaptionsgreen_[v=1] {_texticontabCaptionsgreen_}
589
590_icontabCountriesgreen_ {<img
591src="_httpicontcountgr_" width=_widthtcountx_ border=0>}
592_icontabCountriesgreen_[v=1] {_texticontabCountriesgreen_}
593
594
595_iconblankbar_ {<center><img src="_httpicondivb_" width=_widthdivb_ height=_heightdivb_></center>}
596_iconblankbar_[v=1] {<br><hr><br>}
597
598_icontext_ {<img border=0 align=absmiddle src="_httpiconitext_" width=_widthitext_ height=_heightitext_ alt="_texticontext_" title="_texticontext_">}
599_icontext_[v=1] {_texticontext_}
600
601_iconworld_ {<img border=0 align=absmiddle src="_httpiconiworld_" width=_widthiworld_ height=_heightiworld_ alt="_texticonworld_" title="_texticonworld_">}
602_iconworld_[v=1] {_texticonworld_}
603
604_iconunknown_ {<img border=0 align=absmiddle src="_httpiconiunknown_" width=_widthiunknown_ height=_heightiunknown_ alt="_texticonunknown_" title="_texticonunknown_">}
605_iconunknown_[v=1] {_texticonunknown_}
606
607_iconblanktext_ {<img border=0 align=absmiddle src="_httpiconibtext_" width=_widthibtext_ height=_heightibtext_>}
608_iconblanktext_[v=1] {}
609
610_iconclosedbook_ {<img src="_httpiconbook_" width=_widthbook_ height=_heightbook_ border=0 alt="_texticonclosedbook_" title="_texticonclosedbook_">}
611_iconclosedbook_ [v=1] {<small><b>_texticonclosedbook_: </b></small>}
612_iconclosedbook_ [v=1,l=zh]{<small><_font_><b>_texticonclosedbook_: </b></font></small>}
613
614_icondoc_ {<img border=0 align=absmiddle src="_httpiconimsword_" width=_widthimsword_ height=_heightimsword_ alt="_texticonmsword_" title="_texticonmsword_">}
615_icondoc_[v=1] {_texticonmsword_}
616
617_iconmp3_ {<img border=0 align=absmiddle src="_httpiconimp3_" width=_widthimp3_ height=_heightimp3_ alt="_texticonmp3_" title="_texticonmp3_">}
618_iconmp3_[v=1] {_texticonmp3_}
619
620_iconmidi_ {<img border=0 align=absmiddle src="_httpiconimidi_" width=_widthimidi_ height=_heightimidi_ alt="_texticonmidi_" title="_texticonmidi_">}
621_iconmidi_[v=1] {_texticonmidi_}
622
623_iconpdf_ {<img border=0 align=absmiddle src="_httpiconipdf_" width=_widthipdf_ height=_heightipdf_ alt="_texticonpdf_" title="_texticonpdf_">}
624_iconpdf_[v=1] {_texticonpdf_}
625
626_iconps_ {<img border=0 align=absmiddle src="_httpiconips_" width=_widthips_ height=_heightips_ alt="_texticonps_" title="_texticonps_">}
627_iconps_[v=1] {_texticonps_}
628
629_iconppt_ {<img border=0 align=absmiddle src="_httpiconippt_" width=_widthippt_ height=_heightippt_ alt="_texticonppt_" title="_texticonppt_">}
630_iconppt_[v=1] {_texticonppt_}
631
632_iconrtf_ {<img border=0 align=absmiddle src="_httpiconirtf_" width=_widthirtf_ height=_heightirtf_ alt="_texticonrtf_" title="_texticonrtf_">}
633_iconrtf_[v=1] {_texticonrtf_}
634
635_iconxls_ {<img border=0 align=absmiddle src="_httpiconixls_" width=_widthixls_ height=_heightixls_ alt="_texticonxls_" title="_texticonxls_">}
636_iconxls_[v=1] {_texticonxls_}
637
638_iconnosearch_ {<img src="_httpimg_/nosearch.gif">}
639
640#######################################################################
641# Image links
642#
643# These might include a link (not like an _icon_
644#######################################################################
645
646_imagehome_ {_If_("_cgiargu_" ne "1",_imagehome2_)}
647_imagehome2_ {_gsimage_(_httppagehome_,_httpiconchomeof_,_httpiconchomeon_,homer,_textimagehome_)}
648
649_imagehelp_ {_gsimage_(_httppagehelp_,_httpiconchelpof_,_httpiconchelpon_,help,_textimagehelp_)}
650
651_imagepref_ {_If_("_cgiargu_" ne "1",_imagepref2_)}
652_imagepref2_ {_gsimage_(_httppagepref_,_httpiconcprefof_,_httpiconcprefon_,pref,_textimagepref_)}
653
654_imageusab_ {_gsimage_(_httppageusab_,_httpiconcusabof_,_httpiconcusabon_,usab,_textimageusab_)}
655
656_imagegreenstone_ {<img src="_httpicongsdl_" width="_widthgsdl_" height="_heightgsdl_" border="0" alt="_textimagegreenstone_" title="_textimagegreenstone_" hspace=0>}
657
658_imagegreenstone_[v=1] {_textimagegreenstone_}
659
Note: See TracBrowser for help on using the repository browser.