source: trunk/gsdl/macros/translang.dm@ 7503

Last change on this file since 7503 was 7503, checked in by davidb, 20 years ago

Modification made to navigation bar so its position in the default location
of the page is optional. Useful when you want to include the navigation
bar somewhere else. It's straightforward enough to add text that include
the navigation bar in the a new place, but without this modification there
is a lot of editing to do to supress it also appearing in its default position.

  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1# this file must be UTF-8 encoded
2package translang
3
4#######################################################################
5# page content
6#######################################################################
7
8_pagetitle_ {_collectionname_}
9_pagescriptextra_ {}
10_pagebannerextra_ {}
11_pagefooterextra_ {}
12
13_header_ {_cgihead_
14_htmlhead_(background="_httpiconchalk_")_startspacer__optnavigationbar_
15
16}
17
18_header_[v=1] {_cgihead_
19_htmlhead__optnavigationbar_
20
21}
22
23_cgihead_{}
24
25_htmlhead_ {
26<html_htmlextra_>
27<head>
28<title>_pagetitle_</title>
29_globalscripts_
30</head>
31
32<body bgcolor="\#ffffff" text="\#000000" link="\#006666"
33 alink="\#cc9900" vlink="\#666633"_1_>
34<font face="Arial,Verdana">
35
36}
37
38# _startspacer_ is a spacer to get past the 10010 graphic. It contains an open
39# <table> tag which must eventually be closed by _endspacer_.
40_startspacer_ {
41<table border=0 cellspacing=0 cellpadding=0 width="100%">
42<tr><td valign=top width=65><img src="_httpimg_/spacer.gif" width="65" height="1" alt="" border="0"></td>
43<td><center><table width="_pagewidth_"><tr><td>
44}
45
46
47
48_footer_ {
49<!-- page footer (\_style:footer\_) -->
50_pagefooterextra_
51</font>
52</table>
53_endspacer__htmlfooter_
54}
55
56_endspacer_ {</center>
57</td></tr></table>
58}
59
60_htmlfooter_ {
61</body>
62</html>
63}
64
65_globalscripts_{
66<script>
67<!--
68_imagescript_
69_pagescriptextra_
70// -->
71</script>
72}
73
74_globalscripts_ [v=1] {
75<script>
76<!--
77_If_(_cgiargx_,_scriptdetach_)
78_pagescriptextra_
79// -->
80</script>
81}
82
83_scriptdetach_ {
84 function close\_detach() \{
85 close();
86 \}
87}
88
89
90#EVERYTHING ABOVE THIS LINE IS A DIRECT COPY FROM STYLE.DM
91#should be able to remove?
92
93_content_ {
94<form method="post" action="_formaction_" accept-charset="UTF-8">
95_formcontent_
96</form>
97}
98
99_imageserch_ { _gsimage_(_gwcgi_?e=_compressedoptions_&a=p&p=query&c=macrop&bl=_cgiargbl_&tlng=_cgiargtlng_,
100 _httpimg_/search.gif, _httpimg_/search.gif, search, _textimageserch_)}
101
102# THINK SHOULD BE USING S.T LIKE THIS ABOVE COS COMPRESSED ARGS CAN CHANGE!
103# _httppagex_(search)
104
105_textimageserch_ {Search Macrofiles}
Note: See TracBrowser for help on using the repository browser.