root/trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl

Revision 3068 (checked in by johnsa, 3 years ago)

personal client: move scheduling grid strings into localeSettings for easier internationalization

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 <xsl:stylesheet
21   version="1.0"
22   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
23   xmlns="http://www.w3.org/1999/xhtml">
24 <xsl:output
25   method="xml"
26   indent="no"
27   media-type="text/html"
28   doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
29   doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
30   standalone="yes"
31   omit-xml-declaration="yes"/>
32
33   <!-- ========================================= -->
34   <!--       PERSONAL CALENDAR STYLESHEET        -->
35   <!-- ========================================= -->
36  
37   <!-- GENERATE KEYS -->
38   <!-- We occasionally need to pick out unique events from the calendar tree view
39        which breaks up an event across multiple days.  In the future, we may
40        work from a list of unique events and build the tree from it in the UI. -->
41        <xsl:key name="eventUid" match="event" use="guid"/>
42
43   <!-- DEFINE INCLUDES -->
44   <xsl:include href="./globals.xsl" />
45   <xsl:include href="../strings.xsl" />
46   <xsl:include href="../localeSettings.xsl" />
47
48   <!-- DEFAULT THEME NAME -->
49   <!-- to change the default theme, change this include -->
50   <xsl:include href="../../themes/bedeworkTheme/bedework.xsl" />
51
52 </xsl:stylesheet>
Note: See TracBrowser for help on using the browser.