mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-19 01:37:17 +01:00
32 lines
859 B
HTML
32 lines
859 B
HTML
<!--
|
|
Filename: FWObjectDatabase_2.1.10.xslt
|
|
Author: Vadim Kurland
|
|
Build date: 03/13/2007
|
|
Last changed: 03/13/2007
|
|
Version: 1.0.0
|
|
Description: translates fwbuilder object database from v2.1.10 to v2.1.11
|
|
only changes version number
|
|
-->
|
|
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:fwb="http://www.fwbuilder.org/1.0/"
|
|
exclude-result-prefixes="fwb">
|
|
|
|
|
|
<xsl:output method="xml" version="1.0"
|
|
doctype-system="fwbuilder.dtd" indent="yes" encoding="utf-8"/>
|
|
|
|
|
|
<xsl:template match="*[attribute::id='root']">
|
|
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/">
|
|
<xsl:attribute name="version">2.1.11</xsl:attribute>
|
|
<xsl:attribute name="id">root</xsl:attribute>
|
|
<xsl:copy-of select="*"/>
|
|
</FWObjectDatabase>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|
|
|
|
|