root/trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/cleanXml.xsl

Revision 425 (checked in by johnsa, 7 years ago)

adding missing files for calendar selection

  • Property svn:eol-style set to native
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>
Note: See TracBrowser for help on using the browser.