tame/src/current/dot/attr-shape.xsl

80 lines
1.8 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Styles node shape based on symbol type
Copyright (C) 2016 R-T Specialty, LLC.
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.
You should have received a copy of the GNU General Public License
along with this program. If not, see
<http://www.gnu.org/licenses/>.
-->
<xsl:stylesheet version="2.0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:dot="http://www.lovullo.com/calc/dot"
xmlns:preproc="http://www.lovullo.com/rater/preproc">
<!--
Parameter
-->
<xsl:template mode="dot:attr-shape" priority="5"
match="*[ @type='param' ]">
<dot:attr name="shape">box</dot:attr>
</xsl:template>
<!--
Classification
-->
<xsl:template mode="dot:attr-shape" priority="5"
match="*[ @type='class' or @type='cgen' ]">
<dot:attr name="shape">octagon</dot:attr>
</xsl:template>
<!--
Function
-->
<xsl:template mode="dot:attr-shape" priority="5"
match="*[ @type='func' ]">
<dot:attr name="shape">component</dot:attr>
</xsl:template>
<!--
Map
-->
<xsl:template mode="dot:attr-shape" priority="5"
match="*[ @type='map' or @type='retmap' ]">
<dot:attr name="shape">note</dot:attr>
</xsl:template>
<!--
Default
-->
<xsl:template match="*" mode="dot:attr-shape" priority="1">
<!-- default shape -->
</xsl:template>
</xsl:stylesheet>