1cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?> 2*1e519d8dSAndrew Rist<!--*********************************************************** 3*1e519d8dSAndrew Rist * 4*1e519d8dSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 5*1e519d8dSAndrew Rist * or more contributor license agreements. See the NOTICE file 6*1e519d8dSAndrew Rist * distributed with this work for additional information 7*1e519d8dSAndrew Rist * regarding copyright ownership. The ASF licenses this file 8*1e519d8dSAndrew Rist * to you under the Apache License, Version 2.0 (the 9*1e519d8dSAndrew Rist * "License"); you may not use this file except in compliance 10*1e519d8dSAndrew Rist * with the License. You may obtain a copy of the License at 11*1e519d8dSAndrew Rist * 12*1e519d8dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 13*1e519d8dSAndrew Rist * 14*1e519d8dSAndrew Rist * Unless required by applicable law or agreed to in writing, 15*1e519d8dSAndrew Rist * software distributed under the License is distributed on an 16*1e519d8dSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17*1e519d8dSAndrew Rist * KIND, either express or implied. See the License for the 18*1e519d8dSAndrew Rist * specific language governing permissions and limitations 19*1e519d8dSAndrew Rist * under the License. 20*1e519d8dSAndrew Rist * 21*1e519d8dSAndrew Rist ***********************************************************--> 22*1e519d8dSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir<!-- ================================================= 25cdf0e10cSrcweir 26cdf0e10cSrcweirThis template is a skeleton for single level TOC pages 27cdf0e10cSrcweirwith Frames : it generates the main index.html which contains 28cdf0e10cSrcweirthe frameset. 29cdf0e10cSrcweir 30cdf0e10cSrcweirDo not overwrite this ! copy it and complete the missing 31cdf0e10cSrcweircode. 32cdf0e10cSrcweir 33cdf0e10cSrcweirI use the @ character whereever there is a missing code, so 34cdf0e10cSrcweiryou can use a simple find to navigate and find the 35cdf0e10cSrcweirplaces... 36cdf0e10cSrcweir 37cdf0e10cSrcweir====================================================== --> 38cdf0e10cSrcweir 39cdf0e10cSrcweir<xsl:stylesheet version="1.0" 40cdf0e10cSrcweir xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 41cdf0e10cSrcweir xmlns="http://www.w3.org/1999/xhtml"> 42cdf0e10cSrcweir 43cdf0e10cSrcweir <xsl:output method = "html" 44cdf0e10cSrcweir media-type = "text/html" 45cdf0e10cSrcweir indent = "yes" 46cdf0e10cSrcweir doctype-public = "-//W3C//DTD HTML 4.0 Transitional//EN" 47cdf0e10cSrcweir omit-xml-declaration = "yes" 48cdf0e10cSrcweir standalone = "yes" /> 49cdf0e10cSrcweir 50cdf0e10cSrcweir <xsl:include href="../layout.xsl"/> 51cdf0e10cSrcweir 52cdf0e10cSrcweir 53cdf0e10cSrcweir <!-- ============================= 54cdf0e10cSrcweir ROOT 55cdf0e10cSrcweir ================================== --> 56cdf0e10cSrcweir 57cdf0e10cSrcweir 58cdf0e10cSrcweir <xsl:template match="/"> 59cdf0e10cSrcweir <html> 60cdf0e10cSrcweir <xsl:call-template name="head"/> 61cdf0e10cSrcweir <xsl:call-template name="frameset"/> 62cdf0e10cSrcweir </html> 63cdf0e10cSrcweir </xsl:template> 64cdf0e10cSrcweir 65cdf0e10cSrcweir 66cdf0e10cSrcweir <!-- ============================= 67cdf0e10cSrcweir HTML FRAMES 68cdf0e10cSrcweir ================================== --> 69cdf0e10cSrcweir 70cdf0e10cSrcweir 71cdf0e10cSrcweir <xsl:template name="frameset"> 72cdf0e10cSrcweir 73cdf0e10cSrcweir <!-- 74cdf0e10cSrcweir @ Add frameset here... 75cdf0e10cSrcweir 76cdf0e10cSrcweir the following noframes tag is 77cdf0e10cSrcweir naturally optional. 78cdf0e10cSrcweir --> 79cdf0e10cSrcweir 80cdf0e10cSrcweir <noframes/> 81cdf0e10cSrcweir 82cdf0e10cSrcweir <!-- the body tag has no influance here, 83cdf0e10cSrcweir we add it for good style. 84cdf0e10cSrcweir --> 85cdf0e10cSrcweir 86cdf0e10cSrcweir <body> 87cdf0e10cSrcweir </body> 88cdf0e10cSrcweir </xsl:template> 89cdf0e10cSrcweir 90cdf0e10cSrcweir 91cdf0e10cSrcweir <!-- ============================= 92cdf0e10cSrcweir HTML HEAD 93cdf0e10cSrcweir 94cdf0e10cSrcweir this section should not be changed 95cdf0e10cSrcweir ================================== --> 96cdf0e10cSrcweir 97cdf0e10cSrcweir <xsl:template name="head"> 98cdf0e10cSrcweir <head> 99cdf0e10cSrcweir <title> 100cdf0e10cSrcweir <xsl:value-of select="/session/general-info/@title"/> 101cdf0e10cSrcweir </title> 102cdf0e10cSrcweir <!-- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> --> 103cdf0e10cSrcweir <meta HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-8"/> 104cdf0e10cSrcweir <meta name="description" content="{/session/general-info/@description}"/> 105cdf0e10cSrcweir <meta name="keywords" content="{/session/general-info/@keywords}"/> 106cdf0e10cSrcweir <meta name="author" content="{/session/general-info/@author}"/> 107cdf0e10cSrcweir <meta name="email" content="{/session/general-info/@email}"/> 108cdf0e10cSrcweir <meta name="copyright" content="{/session/general-info/@copyright}"/> 109cdf0e10cSrcweir <!-- create date? 110cdf0e10cSrcweir update date? 111cdf0e10cSrcweir fav icon? 112cdf0e10cSrcweir --> 113cdf0e10cSrcweir <link href="style.css" rel="stylesheet" type="text/css"/> 114cdf0e10cSrcweir 115cdf0e10cSrcweir </head> 116cdf0e10cSrcweir </xsl:template> 117cdf0e10cSrcweir 118cdf0e10cSrcweir</xsl:stylesheet> 119