Last change
on this file since 301 was
32,
checked in by djay, 14 years ago
|
Add missing updated code from 26 ...
|
-
Property svn:executable set to
*
|
File size:
723 bytes
|
Rev | Line | |
---|
[32] | 1 | <xsl:stylesheet version="1.0" |
---|
| 2 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
---|
| 3 | xmlns:ows="http://www.opengis.net/ows/1.1" |
---|
| 4 | xmlns:wps="http://www.opengis.net/wps/1.0.0" |
---|
| 5 | xmlns:xlink="http://www.w3.org/1999/xlink"> |
---|
| 6 | |
---|
| 7 | <xsl:output method="xml"/> |
---|
| 8 | <xsl:param name="value" select="string('-1')"/> |
---|
| 9 | |
---|
| 10 | <xsl:template match="@*|node()"> |
---|
| 11 | <xsl:copy> |
---|
| 12 | <xsl:apply-templates select="@*|node()"/> |
---|
| 13 | </xsl:copy> |
---|
| 14 | </xsl:template> |
---|
| 15 | |
---|
| 16 | <xsl:template match="/wps:ExecuteResponse/wps:Status/wps:ProcessStarted/@percentCompleted"> |
---|
| 17 | <xsl:attribute name="percentCompleted"> |
---|
| 18 | <xsl:value-of select="$value"/> |
---|
| 19 | </xsl:attribute> |
---|
| 20 | </xsl:template> |
---|
| 21 | |
---|
| 22 | </xsl:stylesheet> |
---|
Note: See
TracBrowser
for help on using the repository browser.