unknown_users.xsl
author ali@yendor.vm.bytemark.co.uk
Thu Nov 16 08:30:26 2006 +0000 (2006-11-16)
changeset 0 ae7b3fa753dc
permissions -rw-r--r--
First cut. Distintly raw around the edges:
* Assumes it will be running in /home/ali/wk/slashem/web.scripts
* Assumes cache directory will be in topdir
* No build system (simple compiling and linking against libxml2)
* No configure system (eg., tagsoup)
* Output XML untested
* Doesn't set bugzilla maintainer or exporter
* Handling of artifact priorities and resolution is suspect
ali@0
     1
<?xml version="1.0"?>
ali@0
     2
ali@0
     3
<xsl:stylesheet version="1.0"
ali@0
     4
		xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
ali@0
     5
ali@0
     6
<xsl:output method="text" encoding="utf-8"/>
ali@0
     7
ali@0
     8
<xsl:template match="//users/user[not(@name)]">
ali@0
     9
  <xsl:value-of select="."/>
ali@0
    10
  <xsl:text>&#10;</xsl:text>
ali@0
    11
</xsl:template>
ali@0
    12
ali@0
    13
<xsl:template match="text()"/>
ali@0
    14
ali@0
    15
</xsl:stylesheet>