blob: a8766ff0d26eaba482af8bf8b60df4aedf04868f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<!--
jGrouseDoc template file. Renders search pane
@Copyright (c) 2007 by Denis Riabtchik. All rights reserved. See license.txt and http://jgrouse.com for details@
$Id: jgsearch.xslt 276 2007-12-09 00:50:40Z denis.riabtchik $
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:param name='rootPath' />
<xsl:param name="projectDesc"/>
<xsl:param name='version'/>
<xsl:param name='aux_css'>not_specified</xsl:param>
<xsl:output method='HTML' doctype-public="-//W3C//DTD HTML 4.01//EN"
doctype-system="http://www.w3.org/TR/html4/strict.dtd">
</xsl:output>
<xsl:import href="../../common/xslt/common.xslt"/>
<xsl:template match="/">
<xsl:comment>Generated by jGrouseDoc</xsl:comment>
<html>
<head>
<xsl:call-template name="writeCss">
<xsl:with-param name="rootPath"><xsl:value-of select="$rootPath"/></xsl:with-param>
<xsl:with-param name="aux_css"><xsl:value-of select="$aux_css"/></xsl:with-param>
</xsl:call-template>
<script type="text/javascript" src="jgdoc.js">
</script>
</head>
<body>
<div class="search">
<h1>Search</h1>
<input id="jgsSearchString" type="text" class="jgdSearchString"/>
<div class="jgdSearchRect" >
<div id="jgsSearchResults">
Loading....
</div>
</div>
<div id="jgsInfo" class="jgsInfo" ></div>
</div>
</body>
<script type="text/javascript">
jgdoc.Searcher.start();
</script>
<script type="text/javascript" src="jsindex.js">
</script>
</html>
</xsl:template>
</xsl:stylesheet>
|