/usr/share/fwbuilder-5.1.0.3599/migration/FWObjectDatabase_0.10.5.xslt is in fwbuilder-common 5.1.0-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <!--
Filename: 0.10.5/FWObjectDatabase.xslt
Author: Vadim Kurland
Build date: 04/07/2002
Last changed: 04/07/2002
Version: 1.0.0
Description: translates fwbuilder object database from v0.10.5 to v0.10.6
****************************************************************************
* *
* This transformation (0.10.5->0.10.6) defines its own namespace *
* prefix 'fwb' to be able to match on elements with the namespace. This *
* prefix is defined in xsl:stylesheet element. This prefix won't be *
* added to the output data, it is used only within this transformation. *
* *
****************************************************************************
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fwb="http://www.fwbuilder.org/1.0/">
<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">0.10.6</xsl:attribute>
<xsl:attribute name="id">root</xsl:attribute>
<xsl:for-each select="*">
<xsl:copy-of select="."/>
</xsl:for-each>
</FWObjectDatabase>
</xsl:template>
</xsl:stylesheet>
|