root/trunk/deployment/feeder/webapp/resources/demoskins/MainCampus/default/default/default.xsl

Revision 2416 (checked in by bleibson, 3 years ago)

Made the public client's cleanXml the default.
Added a little logic to widget-json-{cats,groups}.xml so that when setappvar=objName(varName) will stuff the generated json into an object called varName.

  • Property svn:mime-type set to text/plain
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.