Moved xslt extensions to processors/
[sfa.git] / sfatables / matches / hrn.xsl
diff --git a/sfatables/matches/hrn.xsl b/sfatables/matches/hrn.xsl
deleted file mode 100644 (file)
index 29988a5..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0"
-    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-    <xsl:variable name="context-hrn" select="hrn"/>
-    <xsl:template match="user">
-                    <xsl:choose>
-                    <xsl:when test="starts-with($context-hrn, hrn)">
-                        True <!--Match -->
-                    </xsl:when>
-                    <xsl:otherwise>
-                        False <!-- No match -->
-                    </xsl:otherwise>
-                </xsl:choose>
-        <xsl:value-of select="$result"/>
-    </xsl:template>
-
-</xsl:stylesheet>