|
Revision 10307, 0.7 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:sc="http://www.utc.fr/ics/scenari/v3/core" |
|---|
| 5 | xmlns:sm="http://www.utc.fr/ics/scenari/v3/modeling"> |
|---|
| 6 | <xsl:output encoding="UTF-8" method="xml"/> |
|---|
| 7 | <xsl:param name="pWspRoot"/> |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | <xsl:template match="/*"> |
|---|
| 11 | <xsl:copy> |
|---|
| 12 | <xsl:apply-templates select="@*|node()"/> |
|---|
| 13 | </xsl:copy> |
|---|
| 14 | </xsl:template> |
|---|
| 15 | |
|---|
| 16 | <xsl:template match="sm:uiStyle"/> |
|---|
| 17 | |
|---|
| 18 | <!-- ### --> |
|---|
| 19 | <!-- # Cas g�ral : on copie --> |
|---|
| 20 | <!-- # --> |
|---|
| 21 | <xsl:template match="@*|node()"> |
|---|
| 22 | <xsl:copy> |
|---|
| 23 | <xsl:apply-templates select="@*|node()"/> |
|---|
| 24 | </xsl:copy> |
|---|
| 25 | </xsl:template> |
|---|
| 26 | |
|---|
| 27 | </xsl:stylesheet> |
|---|