home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Bureautique / LibreOffice / LibreOffice_4.3.5_Win_x86.msi / index4.html.xsl < prev    next >
Extensible Markup Language  |  2014-05-25  |  3KB  |  88 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3.  * This file is part of the LibreOffice project.
  4.  *
  5.  * This Source Code Form is subject to the terms of the Mozilla Public
  6.  * License, v. 2.0. If a copy of the MPL was not distributed with this
  7.  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  8.  *
  9.  * This file incorporates work covered by the following license notice:
  10.  *
  11.  *   Licensed to the Apache Software Foundation (ASF) under one or more
  12.  *   contributor license agreements. See the NOTICE file distributed
  13.  *   with this work for additional information regarding copyright
  14.  *   ownership. The ASF licenses this file to you under the Apache
  15.  *   License, Version 2.0 (the "License"); you may not use this file
  16.  *   except in compliance with the License. You may obtain a copy of
  17.  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  18. -->
  19. <xsl:stylesheet version="1.0"
  20.    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  21.     xmlns="http://www.w3.org/1999/xhtml">
  22.  
  23.     <xsl:output method               = "html"
  24.                 media-type           = "text/html"
  25.                 indent               = "yes"
  26.                 doctype-public       = "-//W3C//DTD HTML 4.0 Transitional//EN"
  27.                 omit-xml-declaration = "yes"
  28.                 standalone           = "yes" />
  29.     
  30.  
  31.      <!-- =============================
  32.                    ROOT
  33.      ================================== -->
  34.  
  35.  
  36.     <xsl:template  match="/">
  37.           <html>
  38.                    <xsl:call-template name="head"/>
  39.                   <xsl:call-template name="frameset"/>
  40.            </html>
  41.      </xsl:template>
  42.      
  43.      
  44.      <!-- =============================
  45.                    HTML FRAMES
  46.      ================================== -->
  47.      
  48.     
  49.     <xsl:template name="frameset">
  50.         <frameset rows="281,*" cols="*" framespacing="0" frameborder="NO" border="0">
  51.               <frame src="tocframe.html" name="tocframe" scrolling="Auto" noresize=""/>
  52.               <frame src="mainframe.html" name="mainframe"/>
  53.         </frameset>
  54.         <noframes/>
  55.         <body>
  56.         </body>
  57.     </xsl:template>
  58.     
  59.  
  60.      <!-- =============================
  61.                    HTML HEAD
  62.                    
  63.     this section should not be changed
  64.      ================================== -->
  65.      
  66.      <xsl:template name="head">
  67.          <head>
  68.                 <title>
  69.                      <xsl:value-of select="/session/general-info/@title"/>
  70.                 </title>
  71.                 <!-- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> -->
  72.                 <meta name="description" content="{/session/general-info/@description}"/>
  73.                 <meta name="keywords" content="{/session/general-info/@keywords}"/>
  74.                 <meta name="author" content="{/session/general-info/@author}"/>
  75.                 <meta name="email" content="{/session/general-info/@email}"/>
  76.                 <meta name="copyright" content="{/session/general-info/@copyright}"/>
  77.                 <!-- create date?
  78.                      update date?
  79.                      fav icon?
  80.                      -->
  81.                 <link REL="shortcut icon" href="images/favicon.ico" type="image/ico"/>
  82.              <link href="style.css" rel="stylesheet" type="text/css"/>
  83.  
  84.         </head>
  85.      </xsl:template>
  86.     
  87. </xsl:stylesheet>
  88.