/usr/share/fwbuilder-5.1.0.3599/migration/FWObjectDatabase_0.10.12.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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | <!--
Filename: 0.10.12/FWObjectDatabase.xslt
Author: Vadim Kurland
Build date: 12/24/2002
Last changed: 12/25/2002
Version: 1.0.0
Description: translates fwbuilder object database from v0.10.12 to v0.10.13
adds attribute "unnum" to element Interface
replaces attribute "physAddress" in element Interface with
new child element physAddress
-->
<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 name="copy-element">
<xsl:copy>
<xsl:for-each select="@*">
<xsl:copy/>
</xsl:for-each>
<xsl:apply-templates mode="copy"/>
</xsl:copy>
</xsl:template>
<xsl:template name="interface">
<xsl:copy select=".">
<xsl:variable name="iid"><xsl:value-of select="@id"/></xsl:variable>
<xsl:variable name="iname"><xsl:value-of select="@name"/></xsl:variable>
<xsl:variable name="pa"><xsl:value-of select="@physAddress"/></xsl:variable>
<xsl:if test="not (@unnum)">
<xsl:attribute name="unnum">False</xsl:attribute>
</xsl:if>
<xsl:for-each select="@*">
<xsl:if test="not (name()='physAddress')">
<xsl:copy-of select="."/>
</xsl:if>
</xsl:for-each>
<!-- order is important: IPv4*, physAddress?, InterfacePolicy? -->
<xsl:text>
</xsl:text><xsl:copy-of select="fwb:IPv4|IPv4"/>
<xsl:if test="$pa!=''">
<xsl:text>
</xsl:text><physAddress>
<xsl:attribute name="id"><xsl:value-of select="$iid"/>-pa</xsl:attribute>
<xsl:attribute name="name"><xsl:value-of select="$iname"/>(MAC)</xsl:attribute>
<xsl:attribute name="address"><xsl:value-of select="$pa"/></xsl:attribute>
</physAddress>
</xsl:if>
<xsl:text>
</xsl:text><xsl:copy-of select="fwb:InterfacePolicy|InterfacePolicy"/>
<xsl:text>
</xsl:text>
</xsl:copy>
</xsl:template>
<xsl:template match="fwb:*" mode="copy">
<xsl:choose>
<xsl:when test="name()='Interface'">
<xsl:call-template name="interface"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="copy-element"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="*" mode="copy">
<xsl:choose>
<xsl:when test="name()='Interface'">
<xsl:call-template name="interface"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="copy-element"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="*[attribute::id='root']">
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/">
<xsl:attribute name="version">0.10.13</xsl:attribute>
<xsl:attribute name="id">root</xsl:attribute>
<xsl:apply-templates select="*" mode="copy"/>
</FWObjectDatabase>
</xsl:template>
</xsl:stylesheet>
|