| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
<!-- *********************************************** |
|---|
| 3 |
Licensed to Jasig under one or more contributor license |
|---|
| 4 |
agreements. See the NOTICE file distributed with this work |
|---|
| 5 |
for additional information regarding copyright ownership. |
|---|
| 6 |
Jasig licenses this file to you under the Apache License, |
|---|
| 7 |
Version 2.0 (the "License"); you may not use this file |
|---|
| 8 |
except in compliance with the License. You may obtain a |
|---|
| 9 |
copy of the License at: |
|---|
| 10 |
|
|---|
| 11 |
http://www.apache.org/licenses/LICENSE-2.0 |
|---|
| 12 |
|
|---|
| 13 |
Unless required by applicable law or agreed to in writing, |
|---|
| 14 |
software distributed under the License is distributed on |
|---|
| 15 |
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|---|
| 16 |
KIND, either express or implied. See the License for the |
|---|
| 17 |
specific language governing permissions and limitations |
|---|
| 18 |
under the License. |
|---|
| 19 |
--> |
|---|
| 20 |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> |
|---|
| 21 |
<xsl:output |
|---|
| 22 |
method="xml" |
|---|
| 23 |
indent="yes" |
|---|
| 24 |
omit-xml-declaration="no" |
|---|
| 25 |
media-type="text/xml" |
|---|
| 26 |
standalone="yes" |
|---|
| 27 |
/> |
|---|
| 28 |
|
|---|
| 29 |
<!-- ========================================================= |
|---|
| 30 |
|
|---|
| 31 |
DEMONSTRATION CALENDAR STYLESHEET |
|---|
| 32 |
|
|---|
| 33 |
a simple stylesheet to provide a proper xml declaration |
|---|
| 34 |
and clean xml for use on other systems. This is slightly |
|---|
| 35 |
more expensive than simply turning off the transform with |
|---|
| 36 |
noxslt=yes, but it may play better with some systems. |
|---|
| 37 |
|
|---|
| 38 |
=============================================================== --> |
|---|
| 39 |
|
|---|
| 40 |
<xsl:template match="/"> |
|---|
| 41 |
<xsl:copy-of select="."/> |
|---|
| 42 |
</xsl:template> |
|---|
| 43 |
</xsl:stylesheet> |
|---|