templates/ssm.txt.xsl
author František Kučera <franta-hg@frantovo.cz>
Sat, 21 Sep 2019 19:40:43 +0200
branchv_0
changeset 25 8da11cce2c98
child 49 1dc027689f93
permissions -rw-r--r--
add TXT output + change directory structure

<?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> ***&#10;&#10;</xsl:text>
		<!-- TODO: version and draft warning -->
		<xsl:value-of select="m:preamble"/>
		<xsl:text>&#10;&#10;</xsl:text>
		<xsl:apply-templates select="m:chapter"/>
		
		<!-- TODO: move license information to XML file -->
		<xsl:text></xsl:text>
		<xsl:text>&#10;&#10;</xsl:text>
		<xsl:text>----------------------------------------------------------------&#10;</xsl:text>
		<xsl:text>Sane Software Manifesto &lt;https://sane-software.globalcode.info/&gt;&#10;</xsl:text>
		<xsl:text>Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info)&#10;</xsl:text>
		<xsl:text>This manifesto is licensed under the Creative Commons Attribution-NoDerivatives 4.0 International License &lt;https://creativecommons.org/licenses/by-nd/4.0/&gt;.&#10;</xsl:text>
		<xsl:text>----------------------------------------------------------------&#10;</xsl:text>
	</xsl:template>
	
	
	<xsl:template match="m:chapter">
		<xsl:text>&#10;=== </xsl:text>
		<xsl:value-of select="m:name"/>
		<xsl:text> ===</xsl:text>
		<xsl:text>&#10;&#10;</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>&#10;</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>