summaryrefslogtreecommitdiffstats
path: root/policykit_roles/PKpolicy2IPArole.xslt
diff options
context:
space:
mode:
authorSumit Bose <sbose@nb.localdomain>2008-10-29 15:29:15 +0100
committerSumit Bose <sbose@nb.localdomain>2008-10-29 15:29:15 +0100
commit3145e79923143b961e132cbf887910bce35467ba (patch)
tree675333806d30f4218cad07a159ca4232c520017c /policykit_roles/PKpolicy2IPArole.xslt
parent24afc84bf95c7381d4130562a1d3c483450a7b35 (diff)
downloadipa_policy-3145e79923143b961e132cbf887910bce35467ba.tar.gz
ipa_policy-3145e79923143b961e132cbf887910bce35467ba.tar.xz
ipa_policy-3145e79923143b961e132cbf887910bce35467ba.zip
rename XSLT file from *.xslt to *.xsl
Diffstat (limited to 'policykit_roles/PKpolicy2IPArole.xslt')
-rw-r--r--policykit_roles/PKpolicy2IPArole.xslt43
1 files changed, 0 insertions, 43 deletions
diff --git a/policykit_roles/PKpolicy2IPArole.xslt b/policykit_roles/PKpolicy2IPArole.xslt
deleted file mode 100644
index 6fdf44f..0000000
--- a/policykit_roles/PKpolicy2IPArole.xslt
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-
-
- <xsl:param name="role_name"/>
-
- <xsl:output method="xml" indent="yes"/>
- <xsl:strip-space elements="*"/>
-
- <xsl:template match="/">
- <xsl:apply-templates select="policyconfig"/>
- </xsl:template>
-
- <xsl:template match="policyconfig">
- <iparole>
- <role>
- <name>
- <xsl:value-of select="$role_name"/>
- </name>
- <xsl:apply-templates select="action"/>
- </role>
- </iparole>
- </xsl:template>
-
- <xsl:template match="action">
- <action>
- <action_id>
- <xsl:value-of select="@id"/>
- </action_id>
- <allow_any>
- <xsl:value-of select="allow_any"/>
- </allow_any>
- <allow_inactive>
- <xsl:value-of select="allow_inactive"/>
- </allow_inactive>
- <allow_active>
- <xsl:value-of select="allow_active"/>
- </allow_active>
- </action>
- </xsl:template>
-
-</xsl:stylesheet>