merge the formfield patch from ooo-build
[ooovba.git] / extras / source / misc_config / wizard / web / layouts / layoutF.xsl
blob5f826a38eff56a192f5319e74a1ba1aaf5129210
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--*************************************************************************
4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 Copyright 2008 by Sun Microsystems, Inc.
8 OpenOffice.org - a multi-platform office productivity suite
10 $RCSfile: header.hxx,v $
12 $Revision: 1.1 $
14 This file is part of OpenOffice.org.
16 OpenOffice.org is free software: you can redistribute it and/or modify
17 it under the terms of the GNU Lesser General Public License version 3
18 only, as published by the Free Software Foundation.
20 OpenOffice.org is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU Lesser General Public License version 3 for more details
24 (a copy is included in the LICENSE file that accompanied this code).
26 You should have received a copy of the GNU Lesser General Public License
27 version 3 along with OpenOffice.org. If not, see
28 <http://www.openoffice.org/license.html>
29 for a copy of the LGPLv3 License.
31 ************************************************************************-->
32 <!-- =================================================
34 This template is a skeleton for single level TOC pages
35 with Frames : it generates the main index.html which contains
36 the frameset.
38 Do not overwrite this ! copy it and complete the missing
39 code.
41 I use the @ character whereever there is a missing code, so
42 you can use a simple find to navigate and find the
43 places...
45 ====================================================== -->
47 <xsl:stylesheet version="1.0"
48 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
49 xmlns="http://www.w3.org/1999/xhtml">
51 <xsl:output method = "html"
52 media-type = "text/html"
53 indent = "yes"
54 doctype-public = "-//W3C//DTD HTML 4.0 Transitional//EN"
55 omit-xml-declaration = "yes"
56 standalone = "yes" />
58 <xsl:include href="../layout.xsl"/>
61 <!-- =============================
62 ROOT
63 ================================== -->
66 <xsl:template match="/">
67 <html>
68 <xsl:call-template name="head"/>
69 <xsl:call-template name="frameset"/>
70 </html>
71 </xsl:template>
74 <!-- =============================
75 HTML FRAMES
76 ================================== -->
79 <xsl:template name="frameset">
81 <!--
82 @ Add frameset here...
84 the following noframes tag is
85 naturally optional.
86 -->
88 <noframes/>
90 <!-- the body tag has no influance here,
91 we add it for good style.
92 -->
94 <body>
95 </body>
96 </xsl:template>
99 <!-- =============================
100 HTML HEAD
102 this section should not be changed
103 ================================== -->
105 <xsl:template name="head">
106 <head>
107 <title>
108 <xsl:value-of select="/session/general-info/@title"/>
109 </title>
110 <!-- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> -->
111 <meta HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-8"/>
112 <meta name="description" content="{/session/general-info/@description}"/>
113 <meta name="keywords" content="{/session/general-info/@keywords}"/>
114 <meta name="author" content="{/session/general-info/@author}"/>
115 <meta name="email" content="{/session/general-info/@email}"/>
116 <meta name="copyright" content="{/session/general-info/@copyright}"/>
117 <!-- create date?
118 update date?
119 fav icon?
121 <link href="style.css" rel="stylesheet" type="text/css"/>
123 </head>
124 </xsl:template>
126 </xsl:stylesheet>