|
Revision 431:f8dad0bd0d5a, 0.8 kB
(checked in by ser, 2 years ago)
|
|
Fixed a really old crusty string from when importing stylesheets from FormsTK
|
|
|
| Line | |
|---|
| 1 | <?xml version='1.0' encoding='UTF-8'?> |
|---|
| 2 | |
|---|
| 3 | <!--+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
|---|
| 4 | ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--> |
|---|
| 5 | <xsl:stylesheet |
|---|
| 6 | xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'> |
|---|
| 7 | |
|---|
| 8 | <xsl:output indent="yes" method="text"/> |
|---|
| 9 | |
|---|
| 10 | <xsl:template match='/log'> |
|---|
| 11 | REXML Change Log |
|---|
| 12 | <xsl:apply-templates select='logentry[string-length(normalize-space(msg/text())) > 0]'/> |
|---|
| 13 | </xsl:template> |
|---|
| 14 | |
|---|
| 15 | <xsl:template match='logentry'> |
|---|
| 16 | <xsl:text>============================================================ |
|---|
| 17 | </xsl:text> |
|---|
| 18 | <xsl:value-of select='normalize-space(@revision)'/> (<xsl:value-of select='date/text()'/>) <xsl:value-of select='author/text()'/> |
|---|
| 19 | <xsl:text> |
|---|
| 20 | </xsl:text> |
|---|
| 21 | <xsl:value-of select='msg/text()'/> |
|---|
| 22 | <xsl:text> |
|---|
| 23 | </xsl:text> |
|---|
| 24 | </xsl:template> |
|---|
| 25 | </xsl:stylesheet> |
|---|