Project

General

Profile

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

    
5
<!--
6
Description: Provides a form to enter a WMS GetCapabilities URL into.
7
Author:      Cameron Shorter cameron ATshorter.net
8
Licence:     LGPL as per: http://www.gnu.org/copyleft/lesser.html
9

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

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

    
16
  <xsl:param name="modelId"/>
17
  <xsl:param name="widgetId"/>
18

    
19
  <!-- Main html -->
20
  <xsl:template match="/">
21
    <DIV>
22
    <form>
23
      <h3>Load WMS GetCapabilities:</h3>
24
      <textarea cols="40" rows="1" onkeypress="config.objects.{$widgetId}.onKeyPress(event)">../lib/widget/wms/GmapCapabilities.xml</textarea> 
25
    </form>
26
    </DIV>
27
  </xsl:template>
28
  
29
  <xsl:template match="text()|@*"/>
30
</xsl:stylesheet>
31

    
32

    
(140-140/145)