Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<xsl:stylesheet version="1.0"
3
xmlns:wmc="http://www.opengis.net/context"
4
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5

    
6
<!--
7
Description: Produce an empty output.
8
Author:      Cameron Shorter cameron ATshorter.net
9
Licence:     LGPL as per: http://www.gnu.org/copyleft/lesser.html
10

    
11
$Id$
12
$Name$
13
-->
14

    
15
  <xsl:output method="xml" encoding="utf-8"/>
16

    
17
  <xsl:param name="lang">en</xsl:param>
18

    
19
  <!-- Main html -->
20
  <xsl:template match="/">
21
    <i/>
22
  </xsl:template>
23
  
24
  <xsl:template match="text()|@*"/>
25

    
26
</xsl:stylesheet>
27

    
(69-69/145)