4 xmlns:
xsl=
"http://www.w3.org/1999/XSL/Transform"
5 xmlns:
ui=
"http://dummy.com/mynamespace"
6 xmlns=
"http://www.w3.org/1999/xhtml"
7 xmlns:
html=
"http://www.w3.org/1999/xhtml"
10 <xsl:output method=
"html"
11 doctype-system=
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
12 doctype-public=
"-//W3C//DTD XHTML 1.0 Strict//EN" indent=
"yes"/>
14 <xsl:template match=
"ui:app">
16 <xsl:attribute name=
"action">
17 <xsl:value-of select=
"@url" />
19 <xsl:apply-templates select=
"./*" />
23 <xsl:template match=
"ui:someButton">
25 <xsl:attribute name=
"id">
26 <xsl:value-of select=
"@id" />
28 <xsl:attribute name=
"name">
29 <xsl:value-of select=
"@name" />
31 <xsl:attribute name=
"value">
32 <xsl:value-of select=
"normalize-space(.)"/>