<?xml version="1.0" encoding="UTF-8"?>
<!--
Sane Software Manifesto helper tools
Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info)
This program 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, version 3.
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 <https://www.gnu.org/licenses/>.
-->
<xsl:stylesheet
version="1.0"
xmlns:m="tag:globalcode.info,2019:sane-software/manifesto"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="tag:globalcode.info,2019:sane-software/manifesto ssm.xsd">
<xsl:output
method="text"
encoding="UTF-8"/>
<xsl:template match="/m:manifesto">
<xsl:text> *** </xsl:text>
<xsl:value-of select="m:title"/>
<xsl:text> *** </xsl:text>
<!-- TODO: version and draft warning -->
<xsl:value-of select="m:preamble"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="m:chapter"/>
<!-- TODO: move license information to XML file -->
<xsl:text></xsl:text>
<xsl:text> </xsl:text>
<xsl:text>---------------------------------------------------------------- </xsl:text>
<xsl:text>Sane Software Manifesto <https://sane-software.globalcode.info/> </xsl:text>
<xsl:text>Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info) </xsl:text>
<xsl:text>This manifesto is licensed under the Creative Commons Attribution-NoDerivatives 4.0 International License <https://creativecommons.org/licenses/by-nd/4.0/>. </xsl:text>
<xsl:text>---------------------------------------------------------------- </xsl:text>
</xsl:template>
<xsl:template match="m:chapter">
<xsl:text> === </xsl:text>
<xsl:value-of select="m:name"/>
<xsl:text> ===</xsl:text>
<xsl:text> </xsl:text>
<xsl:apply-templates select="m:item"/>
</xsl:template>
<xsl:template match="m:item">
<xsl:for-each select="ancestor-or-self::m:item">
<xsl:text> </xsl:text>
</xsl:for-each>
<xsl:text>- </xsl:text>
<xsl:apply-templates select="m:text"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="m:item"/>
</xsl:template>
<xsl:template match="m:text">
<xsl:apply-templates/>
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>