2016-08-24 09:43:05 -04:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<!--
|
2016-08-24 10:19:11 -04:00
|
|
|
Output package dependencies in plain text
|
2016-08-24 09:43:05 -04:00
|
|
|
|
2020-03-06 11:05:18 -05:00
|
|
|
Copyright (C) 2014-2020 Ryan Specialty Group, LLC.
|
2016-08-24 09:43:05 -04:00
|
|
|
|
2016-08-24 10:19:11 -04:00
|
|
|
This file is part of TAME.
|
|
|
|
|
|
|
|
TAME 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.
|
2016-08-24 09:43:05 -04:00
|
|
|
|
2016-08-24 10:19:11 -04:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
Intended for parsing by external (e.g. shell) scripts.
|
|
|
|
-->
|
2016-08-24 09:43:05 -04:00
|
|
|
<xsl:stylesheet version="2.0"
|
|
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns:lvm="http://www.lovullo.com/rater/map"
|
|
|
|
xmlns:w="http://www.lovullo.com/rater/worksheet"
|
|
|
|
xmlns:lv="http://www.lovullo.com/rater"
|
|
|
|
xmlns:lvp="http://www.lovullo.com">
|
|
|
|
|
|
|
|
<xsl:output method="text" />
|
|
|
|
|
|
|
|
<xsl:variable name="nl" select="' '" />
|
|
|
|
|
|
|
|
|
|
|
|
<xsl:template match="lv:rater|lv:package">
|
|
|
|
<!-- output deps, one per line -->
|
|
|
|
<xsl:for-each select="lv:import[ @package ]">
|
|
|
|
<xsl:value-of select="concat( @package, $nl )" />
|
|
|
|
</xsl:for-each>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="lvp:program">
|
|
|
|
<!-- output deps, one per line -->
|
|
|
|
<xsl:for-each select="lvp:import[ @package ]">
|
|
|
|
<xsl:value-of select="concat( @package, $nl )" />
|
|
|
|
</xsl:for-each>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<xsl:template match="lvm:program-map|lvm:return-map">
|
2018-10-19 09:27:48 -04:00
|
|
|
<!-- a trailing '$' indicates that the path should be interpreted
|
|
|
|
verbatim; no ".xmlo" should be added -->
|
|
|
|
<xsl:if test="@src">
|
|
|
|
<xsl:value-of select="concat( string( @src ), '.xml$', $nl )" />
|
|
|
|
</xsl:if>
|
|
|
|
|
2016-08-24 09:43:05 -04:00
|
|
|
<!-- output deps, one per line -->
|
2017-05-08 16:47:14 -04:00
|
|
|
<xsl:for-each select="lvm:import[ @path ]|lv:import[ @package ]">
|
|
|
|
<xsl:value-of select="concat( @path|@package, $nl )" />
|
2016-08-24 09:43:05 -04:00
|
|
|
</xsl:for-each>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<xsl:template match="w:worksheet">
|
|
|
|
<xsl:value-of select="concat( @package, $nl )" />
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<xsl:template match="*">
|
|
|
|
<!-- do nothing -->
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|