Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<xsl:stylesheet version="1.0"
3
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4

    
5
	<!--
6
		Description: Displays the mapbuilder version.
7
		The $Version: $ tag is changed during the ant build process to
8
		the current version.
9
		Author:      Cameron Shorter
10
		Licence:     LGPL as per: http://www.gnu.org/copyleft/lesser.html
11
		
12
		$Id: Version.xsl 2175 2006-08-16 10:34:37Z camerons $
13
		$Name$
14
	-->
15

    
16
	<xsl:output method="xml" encoding="utf-8" omit-xml-declaration="yes"/>
17
	<!-- Main html -->
18
	<xsl:template match="/">
19
		<div id="menubar"><!-- left side of the middle div-->
20
			<h2>Basic</h2>
21
			<ul>
22
				<li>
23
					<a href="../simple/index.html"
24
						title="simple map demo">
25
						Simple Map Viewer
26
					</a>
27
				</li>
28
				<li>
29
					<a href="../interactive/index.html"
30
						title="interactive map demo">
31
						Interactive Map Viewer
32
					</a>
33
				</li>
34

    
35
				<li>
36
					<a href="../mapViewer/index.html"
37
						title="enhanced map demo">
38
						Enhanced Map Viewer
39
					</a>
40
				</li>
41
			</ul>
42
			<h2>Complex</h2>
43
			<ul>
44
				<li>
45
					<a href="../Demis/index.html"
46
						title="Demis map viewer">
47
						Different maps connected
48
					</a>
49
				</li>
50
				<li>
51
					<a href="../timeSeries/index.html"
52
						title="Time series viewer">
53
						Time series viewer
54
					</a>
55
				</li>
56
				<li>
57
					<a href="../wfs-t/index.html"
58
						title="Feature entry">
59
						Feature entry
60
					</a>
61
				</li>
62

    
63
				<li>
64
					<a href="../OWSExplorer/index.html"
65
						title="OWS Explorer">
66
						Open Web Services Explorer
67
					</a>
68
				</li>
69
			</ul>
70
			<h2>New</h2>
71
			<ul>
72
				<li>
73
					<a href="../catalog/index.html"
74
						title="Catalog Client">
75
						Catalog Client
76
					</a>
77
				</li>
78
				<li>
79
					<a href="../mergeModels/index.html"
80
						title="Complex Vector Rendering with GmlRendererOL and MergeModels">
81
						Complex Vector Rendering
82
					</a>
83
				</li>
84
				<li>
85
					<a href="../flickr/index.html"
86
						title="GeoRSS feed example">
87
						Live flickr feed viewer
88
					</a>
89
				</li>
90
				<li>
91
					<a href="../shipTracks/index.html"
92
						title="GeoRSS Ship tracks">
93
						GeoRSS Shiptracks
94
					</a>
95
				</li>
96

    
97
				<li>
98
					<a href="../GeoBliki/index.html"
99
						title="GeoBliki example">
100
						WFS query, Popup Feature information
101
					</a>
102
				</li>
103
				<li>
104
					<a href="../Google/index.html"
105
						title="Google Map Viewer">
106
						Google Map Viewer
107
					</a>
108
				</li>
109
				<li>
110
					<a href="../projDemo/index.html"
111
						title="Reprojecting vector data on the fly">
112
						Projections
113
					</a>
114
				</li>
115
				<li>
116
					<a href="../openlayers/index.html"
117
						title="Webmap.js integration">
118
						OpenLayers integration
119
					</a>
120
				</li>
121
				<li>
122
					<a href="../i18n/index.html"
123
						title="I18N map demo">
124
						I18N Map Viewer
125
					</a>
126
				</li>
127
			</ul>
128
			<h2><a href="../" style="color:black">
129
				All examples</a>
130
			</h2>
131
			
132

    
133
		</div><!-- /menubar -->
134
	</xsl:template>
135

    
136
	<xsl:template match="text()|@*" />
137
</xsl:stylesheet>
(2-2/3)