root/trunk/deployment/webuser/webapp/resources/demoskins/themes/bedeworkTheme/showPage.xsl

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

user client: start of breaking user client into smaller files

Line 
1 <!--
2     Licensed to Jasig under one or more contributor license
3     agreements. See the NOTICE file distributed with this work
4     for additional information regarding copyright ownership.
5     Jasig licenses this file to you under the Apache License,
6     Version 2.0 (the "License"); you may not use this file
7     except in compliance with the License. You may obtain a
8     copy of the License at:
9    
10     http://www.apache.org/licenses/LICENSE-2.0
11    
12     Unless required by applicable law or agreed to in writing,
13     software distributed under the License is distributed on
14     an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15     KIND, either express or implied. See the License for the
16     specific language governing permissions and limitations
17     under the License.
18 -->
19 <xsl:stylesheet
20   version="1.0"
21   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
22   xmlns="http://www.w3.org/1999/xhtml">
23  
24  
25   <!--==== STAND-ALONE PAGES ====-->
26   <!-- not currently in use -->
27   <xsl:template name="selectPage">
28     <!-- <xsl:choose>
29       <xsl:when test="/bedework/appvar[key='page']">
30         <xsl:choose>
31           <xsl:otherwise>
32             <xsl:call-template name="noPage"/>
33           </xsl:otherwise>
34         </xsl:choose>
35       </xsl:when>
36       <xsl:otherwise> -->
37         <xsl:call-template name="noPage"/>
38       <!--</xsl:otherwise>
39     </xsl:choose>-->
40   </xsl:template>
41
42   <xsl:template name="noPage">
43     <p>
44       Error: there is no page with that name.  Please select a navigational
45       link to continue.
46     </p>
47   </xsl:template>
48  
49 </xsl:stylesheet>
Note: See TracBrowser for help on using the browser.