source: main/tags/2.63/gsdl/macros/gli.dm

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

extensive modifications of generated HTML to support HTML4 and CSS.
Style sheets are the images/ directory. This should make it much easier
to make custom themes for collections, merely by modifying the style
sheet.

  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1# this file must be UTF-8 encoded
2
3package gli
4
5#######################################################################
6# global navigation links
7#######################################################################
8
9_globallinks_ {_homelink_}
10
11#######################################################################
12# page content
13#######################################################################
14
15
16_pagetitle_ {_textgli_}
17
18_content_ {
19<div id="content">
20
21<div class="divbar">
22<p class="navbar">
23_textglilong_
24</p>
25</div>
26
27
28<p>_gliapplet_
29
30<p>
31_textglihelp_
32
33_nzdlpagefooter_
34
35</div>
36}
37
38
39
40_gliapplet_ {
41
42<!--
43 <applet CODEBASE="_httpprefix_/bin/java"
44 ARCHIVE="SignedGatherer.jar"
45 CODE = "org.greenstone.gatherer.GathererApplet"
46 name = "gatherer"
47 type="application/x-java-applet;version=1.4"
48 pluginspage="http://java.sun.com/products/plugin/1.4/plugin-install.html"
49 width = "380"
50 height = "50" >
51
52 <param name="httpprefix" value="_httpprefix_">
53 <param name="gwcgi" value="_gwcgi_">
54 <param name="collection" value="_cgiargc_">
55 </applet>
56
57-->
58
59
60<object
61 classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
62
63 width="380" height="50" name ="gatherer"
64
65 codebase="http://java.sun.com/products/plugin/autodl/jinstall-1_4-windows-i586.cab#Version=1,4,0,0"
66>
67 <param name="type" value="application/x-java-applet;version=1.4">
68 <param name="scriptable" value="false">
69
70 <param name=code value="org.greenstone.gatherer.GathererApplet" >
71 <param name=archive value="_httpprefix_/bin/java/SignedGatherer.jar" >
72 <param name=name value="gatherer" >
73
74 <param name="httpprefix" value="_httpprefix_">
75 <param name="gwcgi" value="_gwcgi_">
76 <param name="collection" value="_cgiargc_">
77
78 <comment>
79
80 <embed
81 pluginspage="http://java.sun.com/products/plugin/index.html#download"
82 type="application/x-java-applet;version=1.4"
83 scriptable="false"
84
85 archive = "_httpprefix_/bin/java/SignedGatherer.jar"
86 code = "org.greenstone.gatherer.GathererApplet"
87 name = "gatherer"
88 width = "380"
89 height = "50"
90
91 httpprefix = "_httpprefix_"
92 gwcgi = "_gwcgi_"
93 collection = "_cgiargc_"
94 >
95
96
97 </embed>
98 <noembed></noembed>
99
100 </comment>
101</object>
102
103}
Note: See TracBrowser for help on using the repository browser.