1 | <!-- |
---|
2 | Extract named artwork or sourcecode elements. |
---|
3 | |
---|
4 | Copyright (c) 2006-2018, Julian Reschke (julian.reschke@greenbytes.de) |
---|
5 | All rights reserved. |
---|
6 | |
---|
7 | Redistribution and use in source and binary forms, with or without |
---|
8 | modification, are permitted provided that the following conditions are met: |
---|
9 | |
---|
10 | * Redistributions of source code must retain the above copyright notice, |
---|
11 | this list of conditions and the following disclaimer. |
---|
12 | * Redistributions in binary form must reproduce the above copyright notice, |
---|
13 | this list of conditions and the following disclaimer in the documentation |
---|
14 | and/or other materials provided with the distribution. |
---|
15 | * Neither the name of Julian Reschke nor the names of its contributors |
---|
16 | may be used to endorse or promote products derived from this software |
---|
17 | without specific prior written permission. |
---|
18 | |
---|
19 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
---|
20 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
21 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
22 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
---|
23 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
24 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
25 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
26 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
27 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
28 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
---|
29 | POSSIBILITY OF SUCH DAMAGE. |
---|
30 | --> |
---|
31 | |
---|
32 | <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
---|
33 | xmlns:x="http://purl.org/net/xml2rfc/ext" |
---|
34 | version="1.0" |
---|
35 | > |
---|
36 | |
---|
37 | <xsl:import href="clean-for-DTD.xslt"/> |
---|
38 | |
---|
39 | <xsl:output method="text" encoding="UTF-8"/> |
---|
40 | |
---|
41 | <xsl:param name="name" /> |
---|
42 | <xsl:param name="except-name" /> |
---|
43 | <xsl:param name="type" /> |
---|
44 | |
---|
45 | <xsl:template match="/" priority="9"> |
---|
46 | |
---|
47 | <xsl:choose> |
---|
48 | <xsl:when test="$name!=''"> |
---|
49 | <xsl:variable name="artwork" select="//artwork[@name=$name]|//sourcecode[@name=$name]"/> |
---|
50 | |
---|
51 | <xsl:choose> |
---|
52 | <xsl:when test="$artwork"> |
---|
53 | <xsl:for-each select="$artwork"> |
---|
54 | <xsl:value-of select="@x:extraction-note"/> |
---|
55 | <xsl:apply-templates select="." mode="cleanup"/> |
---|
56 | </xsl:for-each> |
---|
57 | </xsl:when> |
---|
58 | <xsl:otherwise> |
---|
59 | <xsl:message>Artwork element named '<xsl:value-of select="$name"/>' not found.</xsl:message> |
---|
60 | </xsl:otherwise> |
---|
61 | </xsl:choose> |
---|
62 | </xsl:when> |
---|
63 | <xsl:when test="$type!=''"> |
---|
64 | <xsl:variable name="artwork" select="//artwork[@type=$type]|//sourcecode[@type=$type]"/> |
---|
65 | |
---|
66 | <xsl:choose> |
---|
67 | <xsl:when test="$artwork"> |
---|
68 | <xsl:for-each select="$artwork"> |
---|
69 | <xsl:choose> |
---|
70 | <xsl:when test="$except-name!='' and @name=$except-name"> |
---|
71 | <!-- do not emit this one --> |
---|
72 | </xsl:when> |
---|
73 | <xsl:otherwise> |
---|
74 | <xsl:value-of select="@x:extraction-note"/> |
---|
75 | <xsl:apply-templates select="." mode="cleanup"/> |
---|
76 | </xsl:otherwise> |
---|
77 | </xsl:choose> |
---|
78 | </xsl:for-each> |
---|
79 | </xsl:when> |
---|
80 | <xsl:otherwise> |
---|
81 | <xsl:message>Artwork element typed '<xsl:value-of select="$type"/>' not found.</xsl:message> |
---|
82 | </xsl:otherwise> |
---|
83 | </xsl:choose> |
---|
84 | </xsl:when> |
---|
85 | <xsl:otherwise> |
---|
86 | <xsl:message>Please specify either name or type parameter.</xsl:message> |
---|
87 | </xsl:otherwise> |
---|
88 | </xsl:choose> |
---|
89 | |
---|
90 | |
---|
91 | </xsl:template> |
---|
92 | |
---|
93 | |
---|
94 | </xsl:transform> |
---|