~hudson-ubuntu/+junk/hudson-dom4j

« back to all changes in this revision

Viewing changes to xml/namespaces.xml

  • Committer: James Page
  • Date: 2010-11-18 13:20:23 UTC
  • Revision ID: james.page@canonical.com-20101118132023-puz3z975327yu8ib
Initial release of hudson variant

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
 
 
3
<xsl:stylesheet
 
4
        xmlns:JavaXML="http://www.oreilly.com/catalog/javaxml/"
 
5
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 
6
        xmlns:foo="http://www.foo.com/bar"
 
7
        version="1.0">
 
8
 
 
9
        <xsl:template match="JavaXML:Book">
 
10
                        <head>
 
11
                                <title><xsl:value-of select="JavaXML:Title" /></title>
 
12
                        </head>
 
13
                        <body>
 
14
                                <xsl:apply-templates select="*[not(self::JavaXML:Title)]" />
 
15
                        </body>       
 
16
        </xsl:template>
 
17
 
 
18
</xsl:stylesheet>