/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to xslt/null.xsl

  • Committer: Suren A. Chilingaryan
  • Date: 2009-01-30 23:56:42 UTC
  • Revision ID: csa@dside.dyndns.org-20090130235642-gw9n5v9y7w23dmmd
Further search improvements, support for custom properties (config)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
3
 <xsl:output method="html" version="1.0" encoding="utf-8"/>
 
4
 <xsl:template match="@*|node()">
 
5
   <xsl:copy>
 
6
     <xsl:apply-templates select="@*|node()"/>
 
7
   </xsl:copy>
 
8
 </xsl:template>
 
9
</xsl:stylesheet>