blob: 62bdcf5983d2db373488763f2cfab2ff054da487 (
plain) (
blame)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<?xml version="1.0"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="section">
<html>
<head>
<link rel="stylesheet" href="section.css" type="text/css"/>
</head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="content">
<div class="body">
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="bar">
<div class="topbar">
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="item">
<a href="{@section}">
<xsl:apply-templates/>
</a>
</xsl:template>
<xsl:template match="title">
<h2>
<xsl:apply-templates/>
</h2>
</xsl:template>
<xsl:template match="paragraph">
<p>
<xsl:apply-templates/>
</p>
</xsl:template>
<xsl:template match="buildcontent">
<p>
<xsl:apply-templates/>
</p>
</xsl:template>
<xsl:template match="action">
<a href="action:{@id}?{@param}">
<xsl:apply-templates/>
</a>
</xsl:template>
</xsl:stylesheet>
|