|
Revision 2505
(checked in by johnsa, 3 years ago)
|
public client: restructuring of themes directory THIS WILL BREAK THINGS - this is a partial commit to be completed in a few minutes.
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> |
|---|
| 3 |
<xsl:output |
|---|
| 4 |
method="xml" |
|---|
| 5 |
indent="yes" |
|---|
| 6 |
omit-xml-declaration="no" |
|---|
| 7 |
media-type="text/xml" |
|---|
| 8 |
standalone="yes" |
|---|
| 9 |
/> |
|---|
| 10 |
|
|---|
| 11 |
<!-- ========================================================= |
|---|
| 12 |
|
|---|
| 13 |
DEMONSTRATION CALENDAR STYLESHEET |
|---|
| 14 |
|
|---|
| 15 |
a simple stylesheet to provide a proper xml declaration |
|---|
| 16 |
and clean xml for use on other systems. This is slightly |
|---|
| 17 |
more expensive than simply turning off the transform with |
|---|
| 18 |
noxslt=yes, but it may play better with some systems. |
|---|
| 19 |
|
|---|
| 20 |
=============================================================== --> |
|---|
| 21 |
|
|---|
| 22 |
<xsl:template match="/"> |
|---|
| 23 |
<xsl:copy-of select="."/> |
|---|
| 24 |
</xsl:template> |
|---|
| 25 |
</xsl:stylesheet> |
|---|