root/trunk/deployment/webadmin/webapp/resources/default/default/default.xsl

Revision 3622 (checked in by johnsa, 9 months ago)

admin client: refactoring of admin client file structure to match structure used in the public client. This should make development of the admin client easier.

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 version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
21 <xsl:output
22      method="html"
23      indent="no"
24      media-type="text/html"
25      doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
26      doctype-system="http://www.w3.org/TR/html4/loose.dtd"
27      standalone="yes"
28      omit-xml-declaration="yes"/>
29  <xsl:strip-space elements="*"/>
30
31   <!-- ======================================== -->
32   <!--      BEDEWORK ADMIN CLIENT STYLESHEET     -->
33   <!-- ========================================= -->
34
35   <!-- DEFINE INCLUDES -->
36   <xsl:include href="./globals.xsl" />
37   <xsl:include href="../strings.xsl"/>
38   <xsl:include href="../localeSettings.xsl" />
39  
40   <!-- DEFAULT THEME NAME -->
41   <!-- to change the default theme, change this include -->
42   <xsl:include href="../../themes/bedeworkAdminTheme/bedework.xsl" />
43
44 </xsl:stylesheet>
Note: See TracBrowser for help on using the browser.