1201ba9daa
now, fixed tagcloud, buttons are now 164px instead of 15em (relative measurements are only appropriate with vector graphics) git-svn-id: http://yolanda.mister-muffin.de/svn@350 7eef14d0-6ed0-489d-bf55-20463b2d70db
82 lines
2.7 KiB
XML
Executable file
82 lines
2.7 KiB
XML
Executable file
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:cc="http://web.resource.org/cc/"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns:xforms="http://www.w3.org/2002/xforms"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
>
|
|
|
|
<xsl:output
|
|
doctype-public="-//W3C//DTD XHTML 1.1//EN"
|
|
doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"
|
|
encoding="UTF-8"
|
|
indent="yes"
|
|
method="xml"
|
|
media-type="application/xhtml+xml"
|
|
omit-xml-declaration="no"
|
|
/>
|
|
|
|
<!--
|
|
each xsl template should have it's own file
|
|
exception: templates which are only use by ONE other template may reside in that templates file
|
|
-->
|
|
<xsl:include href="./xhtml/advancedsearch.xsl" />
|
|
<xsl:include href="./xhtml/embedded.xsl" />
|
|
<xsl:include href="./xhtml/footer.xsl" />
|
|
<xsl:include href="./xhtml/header.xsl" />
|
|
<xsl:include href="./xhtml/messagebox.xsl" />
|
|
<xsl:include href="./xhtml/loginbox.xsl" />
|
|
<xsl:include href="./xhtml/pluginhelp.xsl" />
|
|
<xsl:include href="./xhtml/register.xsl" />
|
|
<xsl:include href="./xhtml/results.xsl" />
|
|
<xsl:include href="./xhtml/settings.xsl" />
|
|
<xsl:include href="./xhtml/splash.xsl" />
|
|
<xsl:include href="./xhtml/searchbar.xsl" />
|
|
<xsl:include href="./xhtml/tagcloud.xsl" />
|
|
<xsl:include href="./xhtml/upload.xsl" />
|
|
<xsl:include href="./xhtml/video.xsl" />
|
|
<xsl:include href="./xhtml/xhtml-body.xsl" />
|
|
<xsl:include href="./xhtml/xhtml-head.xsl" />
|
|
|
|
|
|
<xsl:variable name="lang">
|
|
<xsl:choose>
|
|
<xsl:when test="document(concat('../lang/', //@lang, '.xml'))">
|
|
<xsl:value-of select="//@lang" />
|
|
</xsl:when>
|
|
<xsl:otherwise>en</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
|
|
<xsl:variable name="site_strings" select="document('../config/frontend.xml')//strings/string" />
|
|
<xsl:variable name="lang_strings" select="document(concat('../lang/', $lang, '.xml'))//strings/string" />
|
|
<xsl:variable name="language_strings" select="document('../lang/languages.xml')//languages/lang" />
|
|
|
|
<!--
|
|
this kills 99% of the processed XML
|
|
we have to do this because XHTML + CSS presentation is dependant on the order of XHTML elements
|
|
hopefully, CSS 3 will fix this
|
|
-->
|
|
<xsl:template match="@*|node()">
|
|
<xsl:if test="not(/)">
|
|
<xsl:copy>
|
|
<xsl:apply-templates select="@*|node()" />
|
|
</xsl:copy>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="/">
|
|
<html>
|
|
|
|
<xsl:call-template name="xhtml-head" />
|
|
|
|
<xsl:call-template name="xhtml-body" />
|
|
|
|
</html>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|