1 | #######################################################################
|
---|
2 | # GLOBAL MACROS
|
---|
3 | #######################################################################
|
---|
4 |
|
---|
5 | package Global
|
---|
6 |
|
---|
7 | ##########
|
---|
8 |
|
---|
9 | # not sure exactly what this is used for but it seems it needs to default
|
---|
10 | # to something
|
---|
11 | _optsite_ {}
|
---|
12 |
|
---|
13 |
|
---|
14 | ##########
|
---|
15 |
|
---|
16 | _htmlextra_ {}
|
---|
17 |
|
---|
18 | #_starthighlight_ {<b><u>}
|
---|
19 | #_endhighlight_ {</u></b>}
|
---|
20 |
|
---|
21 | _starthighlight_ {<span style="background: #FFFF77">}
|
---|
22 | _endhighlight_ {</span>}
|
---|
23 |
|
---|
24 | #######################################################################
|
---|
25 | # page content
|
---|
26 | #
|
---|
27 | # these should always be overridden for each page/collection
|
---|
28 | #######################################################################
|
---|
29 |
|
---|
30 | _content_ {<p><h2>oops</h2>
|
---|
31 | _textdefaultcontent_}
|
---|
32 | _pagetitle_ {_textdefaulttitle_}
|
---|
33 | _imagethispage_ {}
|
---|
34 | _iconcollection_ {}
|
---|
35 | _collectionname_ {}
|
---|
36 |
|
---|
37 | _imagecollection_ {_If_("_iconcollection_" ne "",
|
---|
38 | <a href="_httppageabout_"><img src="_iconcollection_" border=0></a>,
|
---|
39 | _imagecollectionv_}
|
---|
40 | _imagecollection_ [v=1] {_imagecollectionv_}
|
---|
41 | _imagecollectionv_ {_If_(_collectionname_,<br><br><h2><a href="_httppageabout_">_collectionname_</a></h2>)}
|
---|
42 |
|
---|
43 | #######################################################################
|
---|
44 | # these width macros are read in by the server when calculating
|
---|
45 | # width of navigation bar etc. There should be one for each
|
---|
46 | # classification that this receptionist supports, one for the
|
---|
47 | # search button, and the _pagewidth_ macro which is the total width
|
---|
48 | # of the page
|
---|
49 | #######################################################################
|
---|
50 |
|
---|
51 | # width of tabs when displaying tables of contents
|
---|
52 | _tabwidth_ {25}
|
---|
53 |
|
---|
54 | _pagewidth_ {537}
|
---|
55 | # defaultwidth is the width buttons default to if not included in this list
|
---|
56 | _defaultwidth_ {87}
|
---|
57 | _searchwidth_ {_widthtsrchx_}
|
---|
58 | _Titlewidth_ {_widthttitlx_}
|
---|
59 | _Listwidth_ {_widthtlistx_}
|
---|
60 | _Creatorwidth_ {_widthtauthx_}
|
---|
61 | _Serieswidth_ {_widthtserx_}
|
---|
62 | _Datewidth_ {_widthtdatex_}
|
---|
63 | _Subjectwidth_ {_widthtsubjx_}
|
---|
64 | _Towidth_ {_widthttox_}
|
---|
65 | _Fromwidth_ {_widthtfromx_}
|
---|
66 | _Organizationwidth_ {_widthtorgx_}
|
---|
67 | _Howtowidth_ {_widththowx_}
|
---|
68 | _Topicwidth_ {_widthttopicx_}
|
---|
69 | _Browsewidth_ {_widthtbrwsex_}
|
---|
70 | _Peoplewidth_ {_widthtpeopx_}
|
---|
71 | _Languagewidth_ {_widthtlangx_}
|
---|
72 | _Acronymwidth_ {_widthtacrox_}
|
---|
73 | _Phrasewidth_ {_widthtphrsex_}
|
---|
74 | _Artistwidth_ {_widthtartstx_}
|
---|
75 | _Sourcewidth_ {_widthtsrcx_}
|
---|
76 |
|
---|
77 | #######################################################################
|
---|
78 | # Macros whose values are set from within the server at runtime. These
|
---|
79 | # are here only for reference and to set default values if required.
|
---|
80 | #######################################################################
|
---|
81 |
|
---|
82 | # _win32_ will be set to 1 if we're on windows
|
---|
83 | _win32_ {}
|
---|
84 |
|
---|
85 | _navigationbar_ {}
|
---|
86 | _widthtspace_ {2}
|
---|
87 |
|
---|
88 | # all cgi args are set as _cgiargX_ macros - those I've put here
|
---|
89 | # are those that need to default to something
|
---|
90 | _cgiargd_ {}
|
---|
91 | _cgiargcl_ {}
|
---|
92 |
|
---|
93 | # set from within the query action
|
---|
94 | _hselection_ {}
|
---|
95 | _jselection_ {}
|
---|
96 | _nselection_ {}
|
---|
97 | #granularity selection for mgpp
|
---|
98 | _gselection_ {}
|
---|
99 |
|
---|
100 | #######################################################################
|
---|
101 | # flashy rollover image macro
|
---|
102 | #
|
---|
103 | #######################################################################
|
---|
104 |
|
---|
105 | # imagescript should always be included in html header if there are
|
---|
106 | # flashy images on the page
|
---|
107 | _imagescript_ {
|
---|
108 | var loaded = new Array();
|
---|
109 | function gbutton (image, onimage) \{
|
---|
110 | if (image && image.src && (image.out == null || typeof(image.out) == typeof(void(0)))) \{
|
---|
111 | s = image.src;
|
---|
112 | image.out = new Image();
|
---|
113 | image.out.src = s;
|
---|
114 | image.over = new Image();
|
---|
115 | image.over.src = onimage;
|
---|
116 | loaded[image.name] = image;
|
---|
117 | \}
|
---|
118 | \}
|
---|
119 |
|
---|
120 | function roll (imagename, over) \{
|
---|
121 | if (document.images) \{
|
---|
122 | if (over) i = "over";
|
---|
123 | else i = "out";
|
---|
124 | image = loaded[imagename];
|
---|
125 | if (image) image.src = eval("image."+i+".src");
|
---|
126 | \}
|
---|
127 | \}
|
---|
128 | }
|
---|
129 |
|
---|
130 | # gsimage should be used to define an instance of a flashy image
|
---|
131 | # parameters are:
|
---|
132 | # 1. the url to go to when the button is clicked
|
---|
133 | # 2. the url of the "off" image
|
---|
134 | # 3. the url of the "on" image
|
---|
135 | # 4. the name of the image (must be unique)
|
---|
136 | # 5. image alt text
|
---|
137 | _gsimage_ {<a href="_1_" onMouseover="roll('_4_',1);" onMouseOut="roll('_4_',0);"><img
|
---|
138 | name="_4_" src="_2_" onLoad="gbutton(this,'_3_');" border=0 alt="_5_"></a>}
|
---|
139 |
|
---|
140 | _gsimage_ [v=1] {<a href="_1_">_5_</a><br>}
|
---|
141 |
|
---|
142 | #######################################################################
|
---|
143 | # navigation bar images
|
---|
144 | #
|
---|
145 | #######################################################################
|
---|
146 |
|
---|
147 | # the spacer image - the width of this is set from server
|
---|
148 | _imagespacer_ {<img
|
---|
149 | src="_httpicontspace_" width="_widthtspace_" height="_heighttspace_">}
|
---|
150 | _imagespacer_[v=1] {<br>
|
---|
151 | }
|
---|
152 |
|
---|
153 | # image macros for all the classifications currently supported by
|
---|
154 | # this receptionist.
|
---|
155 |
|
---|
156 | _imagesearch_ {_If_("_cgiargu_" ne "1",_imagesearch2_,_iconnosearch_)}
|
---|
157 | _imagesearch2_ {_gsimage_(_httpquery_,_httpicontsrchof_,_httpicontsrchon_,srch,_textimagesearch_)}
|
---|
158 | _imageTitle_ {_gsimage_(_httpbrowseTitle_,_httpiconttitlof_,_httpiconttitlon_,titles,_textimageTitle_)}
|
---|
159 | _imageCreator_ {_gsimage_(_httpbrowseCreator_,_httpicontauthof_,_httpicontauthon_,authors,_textimageCreator_)}
|
---|
160 | _imageSeries_ {_gsimage_(_httpbrowseSeries_,_httpicontserof_,_httpicontseron_,series,_textimageSeries_)}
|
---|
161 | _imageDate_ {_gsimage_(_httpbrowseDate_,_httpicontdateof_,_httpicontdateon_,dates,_textimageDate_)}
|
---|
162 | _imageSubject_ {_gsimage_(_httpbrowseSubject_,_httpicontsubjof_,_httpicontsubjon_,subjects,_textimageSubject_)}
|
---|
163 | _imageTo_ {_gsimage_(_httpbrowseTo_,_httpiconttoof_,_httpiconttoon_,to,_textimageTo_)}
|
---|
164 | _imageFrom_ {_gsimage_(_httpbrowseFrom_,_httpicontfromof_,_httpicontfromon_,from,_textimageFrom_)}
|
---|
165 | _imageOrganization_ {_gsimage_(_httpbrowseOrganization_,_httpicontorgof_,_httpicontorgon_,org,_textimageOrganization_)}
|
---|
166 | _imageHowto_ {_gsimage_(_httpbrowseHowto_,_httpiconthowof_,_httpiconthowon_,how,_textimageHowto_)}
|
---|
167 | _imageTopic_ {_gsimage_(_httpbrowseTopic_,_httpiconttopicof_,_httpiconttopicon_,topic,_textimageTopic_)}
|
---|
168 | _imageBrowse_ {_gsimage_(_httpbrowseBrowse_,_httpicontbrwseof_,_httpicontbrwseon_,browse,_textimageBrowse_}
|
---|
169 | _imageBrowseMeta_ {_gsimage_(_httpBrowseMeta_,_httpicontbrowsof_,_httpicontbrowson_,browsemeta,_textimageBrowse_)}
|
---|
170 | _imagePeople_ {_gsimage_(_httpbrowsePeople_,_httpicontpeopof_,_httpicontpeopon_,people,_textimagePeople_)}
|
---|
171 | _imageLanguage_ {_gsimage_(_httpbrowseLanguage_,_httpicontlangof_,_httpicontlangon_,language,_textimageLanguage_)}
|
---|
172 | _imageAcronym_ {_gsimage_(_httpbrowseAcronym_,_httpicontacroof_,_httpicontacroon_,acronym,_textimageAcronym_)}
|
---|
173 | _imagePhrase_ {_gsimage_(_httpbrowsePhrase_,_httpicontphrseof_,_httpicontphrseon_,phrase,_textimagePhrase_)}
|
---|
174 | _imageArtist_ {_gsimage_(_httpbrowseArtist_,_httpicontartstof_,_httpicontartston_,artist,_textimageArtist_)}
|
---|
175 | _imageSource_ {_gsimage_(_httpbrowseSource_,_httpicontsrcof_,_httpicontsrcon_,source,_textimageSource_)}
|
---|
176 |
|
---|
177 | #######################################################################
|
---|
178 | # java images/scripts
|
---|
179 | #######################################################################
|
---|
180 |
|
---|
181 | # the _javalinks_ macros are the flashy image links at the top right of
|
---|
182 | # the page.
|
---|
183 |
|
---|
184 | _javalinks_ {_imagehome__imagehelp__imagepref_}
|
---|
185 | _javalinks_ [v=1] {
|
---|
186 | _imagehome_<br>
|
---|
187 | _imagehelp_<br>
|
---|
188 | _imagepref_<br>
|
---|
189 | }
|
---|
190 |
|
---|
191 |
|
---|
192 | #######################################################################
|
---|
193 | # general web macros
|
---|
194 | #######################################################################
|
---|
195 |
|
---|
196 | _mailaddr_ {greenstone@cs.waikato.ac.nz}
|
---|
197 |
|
---|
198 | _gsdltop_ {_top}
|
---|
199 |
|
---|
200 | #######################################################################
|
---|
201 | # http macros
|
---|
202 | #
|
---|
203 | # These contain the url without any quotes
|
---|
204 | #######################################################################
|
---|
205 |
|
---|
206 | _httpcollimg_ {_httpcollection_/index/assoc}
|
---|
207 | _httpdocimg_ {_httpcollimg_/_thisOID_}
|
---|
208 |
|
---|
209 | _httpcollection_ {_httpprefix_/collect/_cgiargc_}
|
---|
210 |
|
---|
211 | _httppagex_ {_gwcgi_?e=_compressedoptions_&a=p&p=_1_}
|
---|
212 | _httppagestatus_ {_gwcgi_?e=_compressedoptions_&a=status&p=frameset}
|
---|
213 | _httppagecollector_ {_gwcgi_?a=collector&p=intro}
|
---|
214 | _httppageabout_ {_httppagex_(about)}
|
---|
215 | #_httppagehome_ {_httppagex_(home)}
|
---|
216 | ###_httppagehome_ {http://www.nzdl.org/cgi-bin/dblibrary?a=p&p=home}
|
---|
217 | _httppagehome_ {_gwcgi_?a=p&p=home&l=_cgiargl_&w=_cgiargw_}
|
---|
218 | _httppagehelp_ {_httppagex_(help)}
|
---|
219 | _httppagepref_ {_httppagex_(preferences)}
|
---|
220 | _httppagedocs_ {_httppagex_(docs)}
|
---|
221 | _httpclearhistory_ {_gwcgi_?e=_compressedoptions_&a=dh}
|
---|
222 |
|
---|
223 | _httpgreenstone_ {_httppagex_(gsdl)}
|
---|
224 | _httpdownload_ {http://www.nzdl.org/download}
|
---|
225 | _httppublications_ {_httpdownload_/greenstone/publications}
|
---|
226 |
|
---|
227 | _httpcurrentdocument_ {_gwcgi_?e=_compressedoptions_&cl=_cgiargcl_&d=_cgiargd_}
|
---|
228 | _httpquery_ {_gwcgi_?e=_compressedoptions_&a=q}
|
---|
229 | _httpBrowse_ {_gwcgi_?e=_compressedoptions_&a=br}
|
---|
230 |
|
---|
231 | # _httpdoc_ is the same as _httpdocument_ - _httpdocument_
|
---|
232 | # may occasionally be altered by the server however
|
---|
233 | _httpdocument_ {_gwcgi_?e=_compressedoptions_&a=d}
|
---|
234 | _httpdoc_ {_gwcgi_?e=_compressedoptions_&a=d}
|
---|
235 |
|
---|
236 | _httpextlink_ {_gwcgi_?e=_compressedoptions_&a=extlink}
|
---|
237 | _httpbuild_ {_gwcgi_?e=_compressedoptions_&a=bc}
|
---|
238 |
|
---|
239 | _httpiconchalk_ {_httpimg_/chalk.gif}
|
---|
240 | _widthchalk_ {2000}
|
---|
241 | _heightchalk_ {10}
|
---|
242 |
|
---|
243 | _httpicondivb_ {_httpimg_/divb.gif}
|
---|
244 | _widthdivb_ {_pagewidth_}
|
---|
245 | _heightdivb_ {17}
|
---|
246 |
|
---|
247 | _httpicongsdl_ {_httpimg_/gsdl.gif}
|
---|
248 | _widthgsdl_ {140}
|
---|
249 | _heightgsdl_ {77}
|
---|
250 |
|
---|
251 | _httpiconitext_ {_httpimg_/itext.gif}
|
---|
252 | _widthitext_ {16}
|
---|
253 | _heightitext_ {21}
|
---|
254 |
|
---|
255 | _httpiconibtext_ {_httpimg_/ibtext.gif}
|
---|
256 | _widthibtext_ {16}
|
---|
257 | _heightibtext_ {21}
|
---|
258 |
|
---|
259 | _httpiconimpegvideo_ {_httpimg_/impegvid.gif}
|
---|
260 | _widthimpegvideo_ {29}
|
---|
261 | _heightimpegvideo_ {32}
|
---|
262 |
|
---|
263 | _httpiconiqtvideo_ {_httpimg_/iqtvideo.gif}
|
---|
264 | _widthiqtvideo_ {29}
|
---|
265 | _heightiqtvideo_ {32}
|
---|
266 |
|
---|
267 | _httpiconirmvideo_ {_httpimg_/irmvideo.gif}
|
---|
268 | _widthirmvideo_ {29}
|
---|
269 | _heightirmvideo_ {32}
|
---|
270 |
|
---|
271 | _httpiconless_ {_httpimg_/less.gif}
|
---|
272 | _widthless_ {30}
|
---|
273 | _heightless_ {16}
|
---|
274 |
|
---|
275 | _httpiconmore_ {_httpimg_/more.gif}
|
---|
276 | _widthmore_ {30}
|
---|
277 | _heightmore_ {16}
|
---|
278 |
|
---|
279 | _httpiconspacer_ {_httpimg_/spacer.gif}
|
---|
280 | _widthspacer_ {42}
|
---|
281 | _heightspacer_ {4}
|
---|
282 |
|
---|
283 | _httpicontabspace_ {_httpimg_/tabspace.gif}
|
---|
284 | _widthtabspace_ {23}
|
---|
285 | _heighttabspace_ {1}
|
---|
286 |
|
---|
287 | _httpicontspace_ {_httpimg_/tspace.gif}
|
---|
288 | _heighttspace_ {17}
|
---|
289 |
|
---|
290 | _httpiconwarning_ {_httpimg_/warning.gif}
|
---|
291 | _widthwarning_ {30}
|
---|
292 | _heightwarning_ {29}
|
---|
293 |
|
---|
294 | _httpiconhhome_ {_httpimg_/h\_home.gif}
|
---|
295 | _widthhhome_ {200}
|
---|
296 | _heighthhome_ {57}
|
---|
297 |
|
---|
298 | _httpiconarrrght_ {_httpimg_/arrrght.gif}
|
---|
299 | _widtharrrght_ {23}
|
---|
300 | _heightarrrght_ {15}
|
---|
301 |
|
---|
302 | _httpiconopenbook_ {_httpimg_/openbook.gif}
|
---|
303 | _widthopenbook_ {28}
|
---|
304 | _heightopenbook_ {23}
|
---|
305 |
|
---|
306 | _httpiconaopenbk_ {_httpimg_/aopenbk.gif}
|
---|
307 | _widthaopenbk_ {28}
|
---|
308 | _heightaopenbk_ {23}
|
---|
309 |
|
---|
310 | _httpiconopenfldr_ {_httpimg_/openfldr.gif}
|
---|
311 | _widthopenfldr_ {23}
|
---|
312 | _heightopenfldr_ {15}
|
---|
313 |
|
---|
314 | _httpiconaopenfdr_ {_httpimg_/aopenfdr.gif}
|
---|
315 | _widthaopenfdr_ {23}
|
---|
316 | _heightaopenfdr_ {15}
|
---|
317 |
|
---|
318 | _httpiconbook_ {_httpimg_/book.gif}
|
---|
319 | _widthbook_ {18}
|
---|
320 | _heightbook_ {11}
|
---|
321 |
|
---|
322 | _httpiconabook_ {_httpimg_/abook.gif}
|
---|
323 | _widthabook_ {18}
|
---|
324 | _heightabook_ {11}
|
---|
325 |
|
---|
326 | _httpiconbshelf_ {_httpimg_/bshelf.gif}
|
---|
327 | _widthbshelf_ {20}
|
---|
328 | _heightbshelf_ {16}
|
---|
329 |
|
---|
330 | _httpiconabshelf_ {_httpimg_/abshelf.gif}
|
---|
331 | _widthabshelf_ {20}
|
---|
332 | _heightabshelf_ {16}
|
---|
333 |
|
---|
334 | _httpiconsmtext_ {_httpimg_/smtext.gif}
|
---|
335 | _widthsmtext_ {23}
|
---|
336 | _heightsmtext_ {15}
|
---|
337 |
|
---|
338 | _httpiconasmtext_ {_httpimg_/asmtext.gif}
|
---|
339 | _widthasmtext_ {23}
|
---|
340 | _heightasmtext_ {15}
|
---|
341 |
|
---|
342 | _httpiconclsdfldr_ {_httpimg_/clsdfldr.gif}
|
---|
343 | _widthclsdfldr_ {23}
|
---|
344 | _heightclsdfldr_ {15}
|
---|
345 |
|
---|
346 | _httpiconaclsdfdr_ {_httpimg_/aclsdfdr.gif}
|
---|
347 | _widthaclsdfdr_ {23}
|
---|
348 | _heightaclsdfdr_ {15}
|
---|
349 |
|
---|
350 | _httpiconimidi_ {_httpimg_/imidi.gif}
|
---|
351 | _widthimidi_ {16}
|
---|
352 | _heightimidi_ {21}
|
---|
353 |
|
---|
354 | _httpiconimsword_ {_httpimg_/imsword.gif}
|
---|
355 | _widthimsword_ {26}
|
---|
356 | _heightimsword_ {26}
|
---|
357 |
|
---|
358 | _httpiconipdf_ {_httpimg_/ipdf.gif}
|
---|
359 | _widthipdf_ {26}
|
---|
360 | _heightipdf_ {26}
|
---|
361 |
|
---|
362 | _httpiconips_ {_httpimg_/ips.gif}
|
---|
363 | _widthips_ {25}
|
---|
364 | _heightips_ {32}
|
---|
365 |
|
---|
366 | _httpiconippt_ {_httpimg_/ippt.gif}
|
---|
367 | _widthippt_ {32}
|
---|
368 | _heightippt_ {30}
|
---|
369 |
|
---|
370 | _httpiconirtf_ {_httpimg_/irtf.gif}
|
---|
371 | _widthirtf_ {29}
|
---|
372 | _heightirtf_ {32}
|
---|
373 |
|
---|
374 | _httpiconixls_ {_httpimg_/iexcel.gif}
|
---|
375 | _widthixls_ {32}
|
---|
376 | _heightixls_ {30}
|
---|
377 |
|
---|
378 | #######################################################################
|
---|
379 | # Icons
|
---|
380 | #
|
---|
381 | # Must not include links (so they can be used as links). If you want to
|
---|
382 | # include links use _image
|
---|
383 | #######################################################################
|
---|
384 |
|
---|
385 | _iconnext_{<img src="_httpiconmore_" align=absbottom
|
---|
386 | width=_widthmore_ height=_heightmore_ border=0 alt="_texticonnext_">}
|
---|
387 | _iconnext_[v=1] {_texticonnext_}
|
---|
388 |
|
---|
389 | _iconprev_{<img src="_httpiconless_" align=absbottom
|
---|
390 | width=_widthless_ height=_heightless_ border=0 alt="_texticonprev_">}
|
---|
391 | _iconprev_[v=1] {_texticonprev_}
|
---|
392 |
|
---|
393 | _icontabsearchgreen_ {<img
|
---|
394 | src="_httpicontsrchgr_" width=_widthtsrchx_ border=0>}
|
---|
395 | _icontabsearchgreen_[v=1] {_texticontabsearchgreen_}
|
---|
396 |
|
---|
397 | _icontabListgreen_ {<img
|
---|
398 | src="_httpicontlistgr_" width=_widthtlistx_ border=0>}
|
---|
399 | _icontablistgreen_ [v=1] {_texticontablistgreen_}
|
---|
400 |
|
---|
401 | _icontabTitlegreen_ {<img
|
---|
402 | src="_httpiconttitlgr_" width=_widthttitlx_ border=0>}
|
---|
403 | _icontabTitlegreen_[v=1] {_texticontabtitlegreen_}
|
---|
404 |
|
---|
405 | _icontabCreatorgreen_ {<img
|
---|
406 | src="_httpicontauthgr_" width=_widthtauthx_ border=0>}
|
---|
407 | _icontabCreatorgreen_[v=1] {_texticontabauthorgreen_}
|
---|
408 |
|
---|
409 | _icontabSeriesgreen_ {<img
|
---|
410 | src="_httpicontsergr_" width=_widthtserx_ border=0>}
|
---|
411 | _icontabSeriesgreen_[v=1] {_texticontabseriesgreen_}
|
---|
412 |
|
---|
413 | _icontabDategreen_ {<img
|
---|
414 | src="_httpicontdategr_" width=_widthtdatex_ border=0>}
|
---|
415 | _icontabDategreen_[v=1] {_texticontabdategreen_}
|
---|
416 |
|
---|
417 | _icontabSubjectgreen_ {<img
|
---|
418 | src="_httpicontsubjgr_" width=_widthtsubjx_ border=0>}
|
---|
419 | _icontabSubjectgreen_[v=1] {_texticontabsubjectgreen_}
|
---|
420 |
|
---|
421 | _icontabTogreen_ {<img
|
---|
422 | src="_httpiconttogr_" width=_widthttox_ border=0>}
|
---|
423 | _icontabTogreen_[v=1] {_texticontabtogreen_}
|
---|
424 |
|
---|
425 | _icontabFromgreen_ {<img
|
---|
426 | src="_httpicontfromgr_" width=_widthtfromx_ border=0>}
|
---|
427 | _icontabFromgreen_[v=1] {_texticontabfromgreen_}
|
---|
428 |
|
---|
429 | _icontabHowtogreen_ {<img
|
---|
430 | src="_httpiconthowgr_" width=_widththowx_ border=0>}
|
---|
431 | _icontabHowtogreen_[v=1] {_texticontabhowgreen_}
|
---|
432 |
|
---|
433 | _icontabTopicgreen_ {<img
|
---|
434 | src="_httpiconttopicgr_" width=_widthttopicx_ border=0>}
|
---|
435 | _icontabTopicgreen_[v=1] {_texticontabtopicgreen_}
|
---|
436 |
|
---|
437 | _icontabBrowsegreen_ {<img
|
---|
438 | src="_httpicontbrwsegr_" width=_widthtbrwsex_ border=0>}
|
---|
439 | _icontabBrowsegreen_[v=1] {_texticontabbrwsegreen_}
|
---|
440 |
|
---|
441 | _icontabOrganizationgreen_ {<img
|
---|
442 | src="_httpicontorggr_" width=_widthtorgx_ border=0>}
|
---|
443 | _icontabOrganizationgreen_[v=1] {_texticontaborggreen_}
|
---|
444 |
|
---|
445 | _icontabPeoplegreen_ {<img
|
---|
446 | src="_httpicontpeopgr_" width=_widthtpeopx_ border=0>}
|
---|
447 | _icontabPeoplegreen_[v=1] {_texticontabPeoplegreen_}
|
---|
448 |
|
---|
449 | _icontabLanguagegreen_ {<img
|
---|
450 | src="_httpicontlanggr_" width=_widthtlangx_ border=0>}
|
---|
451 | _icontabLanguagegreen_[v=1] {_texticontabLanguagegreen_}
|
---|
452 |
|
---|
453 | _icontabAcronymgreen_ {<img
|
---|
454 | src="_httpicontacrogr_" width=_widthtacrox_ border=0>}
|
---|
455 | _icontabAcronymgreen_[v=1] {_texticontabAcronymgreen_}
|
---|
456 |
|
---|
457 | _icontabPhrasegreen_ {<img
|
---|
458 | src="_httpicontphrsegr_" width=_widthtphrsex_ border=0>}
|
---|
459 | _icontabPhrasegreen_[v=1] {_texticontabPhrasegreen_}
|
---|
460 |
|
---|
461 | _icontabArtistgreen_ {<img
|
---|
462 | src="_httpicontartstgr_" width=_widthtartstx_ border=0>}
|
---|
463 | _icontabArtistgreen_[v=1] {_texticontabArtistgreen_}
|
---|
464 |
|
---|
465 | _icontabSourcegreen_ {<img
|
---|
466 | src="_httpicontsrcgr_" width=_widthtsrcx_ border=0>}
|
---|
467 | _icontabSourcegreen_[v=1] {_texticontabsourcegreen_}
|
---|
468 |
|
---|
469 |
|
---|
470 | _iconblankbar_ {<center><img src="_httpicondivb_" width=_widthdivb_ height=_heightdivb_></center>}
|
---|
471 | _iconblankbar_[v=1] {<br><hr><br>}
|
---|
472 |
|
---|
473 | _icontext_ {<img border=0 align=absmiddle src="_httpiconitext_" width=_widthitext_ height=_heightitext_ alt="_texticontext_">}
|
---|
474 | _icontext_[v=1] {_texticontext_}
|
---|
475 |
|
---|
476 | _iconblanktext_ {<img border=0 align=absmiddle src="_httpiconibtext_" width=_widthibtext_ height=_heightibtext_>}
|
---|
477 | _iconblanktext_[v=1] {}
|
---|
478 |
|
---|
479 | _iconclosedbook_ {<img src="_httpiconbook_" width=_widthbook_ height=_heightbook_ border=0 alt="_texticonclosedbook_">}
|
---|
480 | _iconclosedbook_ [v=1] {<small><b>_texticonclosedbook_: </b></small>}
|
---|
481 | _iconclosedbook_ [v=1,l=zh]{<small><_font_><b>_texticonclosedbook_: </b></font></small>}
|
---|
482 |
|
---|
483 | _icondoc_ {<img border=0 align=absmiddle src="_httpiconimsword_" width=_widthimsword_ height=_heightimsword_ alt="_texticonmsword_">}
|
---|
484 | _iconmsword_[v=1] {_texticonmsword_}
|
---|
485 |
|
---|
486 | _iconmidi_ {<img border=0 align=absmiddle src="_httpiconimidi_" width=_widthimidi_ height=_heightimidi_ alt="_texticonmidi_">}
|
---|
487 | _iconmidi_[v=1] {_texticonmidi_}
|
---|
488 |
|
---|
489 | _iconpdf_ {<img border=0 align=absmiddle src="_httpiconipdf_" width=_widthipdf_ height=_heightipdf_ alt="_texticonpdf_">}
|
---|
490 | _iconpdf_[v=1] {_texticonpdf_}
|
---|
491 |
|
---|
492 | _iconps_ {<img border=0 align=absmiddle src="_httpiconips_" width=_widthips_ height=_heightips_ alt="_texticonps_">}
|
---|
493 | _iconps_[v=1] {_texticonps_}
|
---|
494 |
|
---|
495 | _iconppt_ {<img border=0 align=absmiddle src="_httpiconippt_" width=_widthippt_ height=_heightippt_ alt="_texticonppt_">}
|
---|
496 | _iconppt_[v=1] {_texticonppt_}
|
---|
497 |
|
---|
498 | _iconrtf_ {<img border=0 align=absmiddle src="_httpiconirtf_" width=_widthirtf_ height=_heightirtf_ alt="_texticonrtf_">}
|
---|
499 | _iconrtf_[v=1] {_texticonrtf_}
|
---|
500 |
|
---|
501 | _iconxls_ {<img border=0 align=absmiddle src="_httpiconixls_" width=_widthixls_ height=_heightixls_ alt="_texticonxls_">}
|
---|
502 | _iconxls_[v=1] {_texticonxls_}
|
---|
503 |
|
---|
504 | _iconnosearch_ {<img src="_httpimg_/nosearch.gif">}
|
---|
505 |
|
---|
506 | #######################################################################
|
---|
507 | # Image links
|
---|
508 | #
|
---|
509 | # These might include a link (not like an _icon_
|
---|
510 | #######################################################################
|
---|
511 |
|
---|
512 | _imagehome_ {_If_("_cgiargu_" ne "1",_imagehome2_)}
|
---|
513 | _imagehome2_ {_gsimage_(_httppagehome_,_httpiconchomeof_,_httpiconchomeon_,homer,_textimagehome_)}
|
---|
514 |
|
---|
515 | _imagehelp_ {_gsimage_(_httppagehelp_,_httpiconchelpof_,_httpiconchelpon_,help,_textimagehelp_)}
|
---|
516 |
|
---|
517 | _imagepref_ {_If_("_cgiargu_" ne "1",_imagepref2_)}
|
---|
518 | _imagepref2_ {_gsimage_(_httppagepref_,_httpiconcprefof_,_httpiconcprefon_,pref,_textimagepref_)}
|
---|
519 |
|
---|
520 | _imagegreenstone_ {<img src="_httpicongsdl_" width="_widthgsdl_" height="_heightgsdl_" border="0" alt="_textimagegreenstone_" hspace=0>}
|
---|
521 | _imagegreenstone_[v=1] {_textimagegreenstone_}
|
---|