-
Notifications
You must be signed in to change notification settings - Fork 1
/
custom.xsl
107 lines (92 loc) · 3.43 KB
/
custom.xsl
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2018 Leipzig University Library <info@ub.uni-leipzig.de>
This file is part of the histvv database.
The histvv database is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:h="http://www.w3.org/1999/xhtml"
xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="h">
<xsl:output method="xml" encoding="utf-8"
omit-xml-declaration="yes" indent="yes"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"/>
<xsl:param name="histvv-url"/>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="h:div[@id='header']/h:h6">
<h6>
<xsl:value-of select="."/>
<xsl:text> der Universität Leipzig</xsl:text>
</h6>
</xsl:template>
<xsl:template match="h:div[@id='footer']">
<div id="footer">
<p>
© 2008-2020
<a href="http://www.ub.uni-leipzig.de/">
Universitätsbibliothek Leipzig
</a>
</p>
<p class="dfg">
<a href="http://www.dfg.de/">
<img src="/img/dfg.png" alt="DFG"
title="Gefördert durch die Deutsche Forschungsgemeinschaft"/>
</a>
</p>
</div>
</xsl:template>
<xsl:template match="h:div[@id='sidebar']/h:ul">
<ul>
<xsl:apply-templates/>
<li>
<xsl:if test="starts-with($histvv-url, '/doku/')">
<xsl:attribute name="class">current</xsl:attribute>
</xsl:if>
<a href="/doku/">Dokumentation</a>
</li>
</ul>
</xsl:template>
<xsl:template match="h:div[@id='content']/h:p[@class='quelle'][1]">
<p class="quelle">
<xsl:apply-templates/>
<xsl:text> (</xsl:text>
<a href="/doku/vorlagen.html">Übersicht über alle Vorlagen</a>
<xsl:text>)</xsl:text>
</p>
</xsl:template>
<xsl:template match="h:div[@id='content' and @class='dozentenliste']/h:p[@class='galerielink']">
<p class="galerielink">
<xsl:text>Ein Übersicht über alle Leipziger Dozenten der Jahre
1814/15 bis 1914, die in der Datenbank mit Porträtbild erfasst
sind, findet sich in der </xsl:text>
<xsl:apply-templates select="h:a"/>
<xsl:text>.</xsl:text>
</p>
</xsl:template>
<xsl:template match="h:div[@id='content' and @class='dozentengalerie']/h:p">
<p>
Diese Galerie zeigt alle Leipziger Dozenten der Jahre 1814/15
bis 1914, die in der Datenbank mit Porträtbild erfasst sind. Eine
Liste aller Dozenten gibt es <a href="/dozenten/">auf dieser
Seite</a>.
</p>
</xsl:template>
</xsl:stylesheet>