|
Revision 10307, 0.6 KB
(checked in by sam, 3 years ago)
|
|
Gen web:
- suppr uiStyle
- @internalClass & @commonClass => @widgetClass
- Ajout lien vers CSS à armoire
- divers, cleanups...
|
-
Property svn:mime-type set to
text/plain
|
| Line | |
|---|
| 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
|---|
| 2 | <xsl:stylesheet version="1.0" |
|---|
| 3 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
|---|
| 4 | xmlns:xhtml="http://www.w3.org/1999/xhtml"> |
|---|
| 5 | <xsl:output encoding="UTF-8" method="text"/> |
|---|
| 6 | |
|---|
| 7 | <xsl:template match="/xhtml:html"> |
|---|
| 8 | <xsl:apply-templates select="@*|node()"/> |
|---|
| 9 | </xsl:template> |
|---|
| 10 | |
|---|
| 11 | <xsl:template match="xhtml:style[@id]"><xsl:apply-templates mode="style"/></xsl:template> |
|---|
| 12 | <xsl:template match="text()" mode="style"> |
|---|
| 13 | <xsl:value-of select="." /> |
|---|
| 14 | </xsl:template> |
|---|
| 15 | <xsl:template match="*" mode="style"/> |
|---|
| 16 | |
|---|
| 17 | <xsl:template match="@*|node()"> |
|---|
| 18 | <xsl:apply-templates select="@*|node()"/> |
|---|
| 19 | </xsl:template> |
|---|
| 20 | |
|---|
| 21 | </xsl:stylesheet> |
|---|
| 22 | |
|---|
| 23 | |
|---|