Author: thorsten
Date: Thu Oct 2 05:13:45 2008
New Revision: 701102
URL: http://svn.apache.org/viewvc?rev=701102&view=rev
Log:
Using prefixes instead of default namespaces
Modified:
forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/testing/org/apache/forrest/dispatcher/convertor.contract.xml
Modified:
forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/testing/org/apache/forrest/dispatcher/convertor.contract.xml
URL:
http://svn.apache.org/viewvc/forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/testing/org/apache/forrest/dispatcher/convertor.contract.xml?rev=701102&r1=701101&r2=701102&view=diff
==============================================================================
---
forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/testing/org/apache/forrest/dispatcher/convertor.contract.xml
(original)
+++
forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/testing/org/apache/forrest/dispatcher/convertor.contract.xml
Thu Oct 2 05:13:45 2008
@@ -27,32 +27,32 @@
xmlns:forrest="http://apache.org/forrest/templates/2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
- <forrest:content
xmlns:forrest="http://apache.org/forrest/templates/2.0">
+ <forrest:content>
<forrest:part>
- <structurer xmlns="http://apache.org/forrest/templates/2.0"
+ <forrest:structurer
xmlns:jx="http://apache.org/cocoon/templates/jx/1.0">
<xsl:apply-templates/>
- </structurer>
+ </forrest:structurer>
</forrest:part>
</forrest:content>
</xsl:template>
<xsl:template match="*[local-name()='view'] ">
- <structure>
+ <forrest:structure>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
- </structure>
+ </forrest:structure>
</xsl:template>
<xsl:template match="*[local-name()='contract']">
- <contract>
+ <forrest:contract>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
- </contract>
+ </forrest:contract>
</xsl:template>
<xsl:template match="*[local-name()='property']">
- <property>
+ <forrest:property>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
- </property>
+ </forrest:property>
</xsl:template>
</xsl:stylesheet>
</forrest:template>