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
     1 <?xml version="1.0"?>
     2 
     3 <xsl:stylesheet version="1.0"
     4 		xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     5 
     6 <xsl:output method="text" encoding="utf-8"/>
     7 
     8 <xsl:template match="//users/user[not(@name)]">
     9   <xsl:value-of select="."/>
    10   <xsl:text>&#10;</xsl:text>
    11 </xsl:template>
    12 
    13 <xsl:template match="text()"/>
    14 
    15 </xsl:stylesheet>