source: main/tags/2.62/gsdl/macros/base.dm@ 32110

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

remove several more usability macros

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