[
https://issues.jboss.org/browse/AS7-3778?page=com.atlassian.jira.plugin.s...
]
Ondrej Zizka updated AS7-3778:
------------------------------
Summary: TS: Fix XSLT transformations (namespaces problem) (was: TS: Fix XLST
transformations (namespaces problem))
TS: Fix XSLT transformations (namespaces problem)
-------------------------------------------------
Key: AS7-3778
URL:
https://issues.jboss.org/browse/AS7-3778
Project: Application Server 7
Issue Type: Sub-task
Components: Test Suite
Reporter: Ondrej Zizka
Assignee: Ondrej Zizka
Fix For: 7.1.1.Final
Original Estimate: 2 days
Remaining Estimate: 2 days
Applying the standard XSLT copy template,
{code:xml}
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
{code}
to the JBoss AS 7 standalone.xml, leads to loss of parameters:
{code:xml}
<?xml version="1.0" encoding="UTF-8"?><server
xmlns="urn:jboss:domain:1.1">
<extensions>
<extension/>
<extension/>
{code}
instead of
{code:xml}
<?xml version="1.0" encoding="UTF-8"?><server
xmlns="urn:jboss:domain:1.1">
<extensions>
<extension module="org.jboss.as.clustering.infinispan"/>
<extension module="org.jboss.as.configadmin"/>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira