Files
alfresco-community-repo/source/test-resources/xforms/tests/rendering-engine/html-block.xslt

75 lines
3.1 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!--
* Copyright (C) 2005-2007 Alfresco Software Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have recieved a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
-->
<xsl:stylesheet version="1.0"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:hb="http://www.alfresco.org/alfresco/htmlblock"
xmlns:fn="http://www.w3.org/2005/02/xpath-functions"
exclude-result-prefixes="xhtml">
<xsl:output method="html"
encoding="UTF-8"
indent="yes"
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
<xsl:preserve-space elements="*" />
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>
<xsl:value-of select="/hb:HtmlBlock/hb:Title" disable-output-escaping="yes" />
</title>
<xsl:if test="/hb:HtmlBlock/hb:Summary">
<meta name="description" lang="en">
<xsl:attribute name="content">
<xsl:value-of select="/hb:HtmlBlock/hb:Summary" />
</xsl:attribute>
</meta>
</xsl:if>
<xsl:if test="/hb:HtmlBlock/hb:Keyword">
<meta name="keyword" lang="en">
<xsl:attribute name="content">
<xsl:for-each select="/hb:HtmlBlock/hb:Keyword">
<xsl:value-of select="normalize-space(.)" />
<xsl:choose>
<xsl:when test="position() != last()">,</xsl:when>
</xsl:choose>
</xsl:for-each>
</xsl:attribute>
</meta>
</xsl:if>
</head>
<body>
<h1><xsl:value-of select="/hb:HtmlBlock/hb:Title" disable-output-escaping="yes" /></h1>
<p><xsl:value-of select="/hb:HtmlBlock/hb:Body" disable-output-escaping="yes" /></p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>