root/trunk/deployment/webconfig/webapp/resources/default/default/outputText.xsl

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

o add Jasig licensing info to header of source files
o in some cases, remove RPI copyright info.

Line 
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
21 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
22   <!-- ==================================================================== -->
23   <!-- ==================================================================== -->
24   <!--                           BEDEWORK LUWAK                             -->
25   <!-- ==================================================================== -->
26   <!-- ==================================================================== -->
27   <xsl:output method="text" indent="yes" media-type="text/text" standalone="yes"/>
28   <xsl:variable name="appRoot" select="/bedeworkconfig/appRoot"/>
29   <xsl:variable name="urlPrefix" select="/bedeworkconfig/urlPrefix"/>
30
31   <xsl:template match="/">
32     <xsl:for-each select="/bedeworkconfig/propertyGroups/propertyGroup">
33 #
34 # <xsl:value-of select="@name"/>
35 #
36 <xsl:for-each select="property">
37 <xsl:value-of select="@name"/>=<xsl:value-of select="."/><xsl:text>
38 </xsl:text>
39 </xsl:for-each>
40     </xsl:for-each>
41   </xsl:template>
42 </xsl:stylesheet>
43
44
45
46
Note: See TracBrowser for help on using the browser.