blob: 7ff3c20bf89e82b3a38cb61ad1cbf862c14a6920 (
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
52
53
54
55
56
57
58
59
60
61
62
|
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:x="http://www.w3.org/1999/xhtml" version="1.0">
<xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
<xsl:param name="build_type" />
<xsl:param name="no_mpl_subset" />
<xsl:param name="os" />
<xsl:param name="themes" />
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<xsl:apply-templates select="x:html/x:body"/>
</xsl:template>
<xsl:template match="x:body">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="x:div">
<xsl:choose>
<xsl:when test="(
not(contains($build_type,@class)) and
not(contains($no_mpl_subset,@class)) and
not(contains($os,@class)) and
not(contains($themes,@class)) and @class)">
<!-- do not write out license text for these externals -->
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="x:p|x:li">
<xsl:value-of select="concat(.,' ')"/>
<xsl:text>
</xsl:text>
<xsl:apply-templates />
</xsl:template>
<xsl:template match="x:h1">
<xsl:text># </xsl:text>
<xsl:value-of select="concat(.,' ')"/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="x:h2">
<xsl:text>## </xsl:text>
<xsl:value-of select="concat(.,' ')"/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="x:h3">
<xsl:text>### </xsl:text>
<xsl:value-of select="concat(.,' ')"/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="text()|@*"></xsl:template>
</xsl:stylesheet>
|