XSL from dennis_threading branch: extract active client count
authorDennis Schafroth <dennis@indexdata.com>
Tue, 4 May 2010 20:15:20 +0000 (22:15 +0200)
committerDennis Schafroth <dennis@indexdata.com>
Tue, 4 May 2010 20:15:20 +0000 (22:15 +0200)
perf/bash/get_activeclients.xsl [new file with mode: 0644]

diff --git a/perf/bash/get_activeclients.xsl b/perf/bash/get_activeclients.xsl
new file mode 100644 (file)
index 0000000..6e5d966
--- /dev/null
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet version="1.0"
+  xmlns:marc="http://www.loc.gov/MARC21/slim"
+  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+  >
+  <xsl:output method="text"/>
+  <xsl:strip-space elements="*"/>
+  <xsl:template match="activeclients">
+     <xsl:value-of select="."/>
+  </xsl:template> 
+  <xsl:template match="text()"/>
+</xsl:stylesheet>