~ubuntu-branches/debian/wheezy/jing-trang/wheezy

« back to all changes in this revision

Viewing changes to test/dir.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Thibault
  • Date: 2009-09-01 15:53:03 UTC
  • Revision ID: james.westby@ubuntu.com-20090901155303-2kweef05h5v9j3ni
Tags: upstream-20090818
ImportĀ upstreamĀ versionĀ 20090818

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
3
 
 
4
<xsl:template match="document"/>
 
5
 
 
6
<xsl:output method="text"/>
 
7
 
 
8
<xsl:template match="dir">
 
9
  <xsl:value-of select="@name"/>
 
10
  <xsl:text> </xsl:text>
 
11
</xsl:template>
 
12
 
 
13
</xsl:stylesheet>