c3d2-web/xsl/datenspuren/xhtml5.xsl

358 lines
12 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:date="http://exslt.org/dates-and-times"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="xsl date">
<xsl:include href="../common.xsl" />
<xsl:output method="xml"
version="1.0"
encoding="utf-8"
indent="yes"/>
<xsl:strip-space elements="p ul td"/>
<xsl:template match="/page">
<xsl:text disable-output-escaping="yes">&lt;!DOCTYPE html&gt;
</xsl:text>
<xsl:variable name="title">
<xsl:choose>
<xsl:when test="/page/@pagetitle">
<xsl:value-of select="/page/@pagetitle"/>
</xsl:when>
<xsl:when test="/page/@title">
<xsl:value-of select="/page/@title"/>
</xsl:when>
<xsl:otherwise>
<xsl:comment><xsl:text> missing title </xsl:text></xsl:comment>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<html lang="de" xml:lang="de" dir="ltr">
<xsl:call-template name="htmlhead">
<xsl:with-param name="title" select="$title"/>
</xsl:call-template>
<body>
<div id="header">
<a href="."><div id="aussicht">
<h1>Mit Aussicht auf Datenspuren</h1>
<xsl:text> </xsl:text>
</div></a>
</div>
<div id="ct0">&#8203;</div>
<div id="ct1">
<div id="content">
<div id="cloudy">
<div id="cloudy-sun" title="Click here!">
<xsl:text> </xsl:text>
</div>
</div>
<xsl:call-template name="heading">
<xsl:with-param name="title" select="$title"/>
</xsl:call-template>
<div id="bodyText"><div>
<xsl:apply-templates/>
</div></div>
</div> <!-- content -->
</div> <!-- ct1 -->
<div id="ct2">&#8203;</div>
<xsl:call-template name="footer"/>
</body>
</html>
</xsl:template>
<!-- Parse XHTML schedule generated by Pentabarf[tm] -->
<!-- Da ich hier nicht lange frickeln wollte, wird xhtml nochmal als
extra NS behandelt, also jegliche Elemente in XPath mit xhtml:
prefixen
Weiterhin ist Pentabarf-Output XHTML und kein schicker XML-Dialekt.
Dafür haben wir da drin aber schon eine schicke Tabellenstruktur. Für
die <td/>s usw. extra Templates anzulegen war mir zu unsauber, deshalb
wird hier überall manuell durchiteriert.
Vorgehensweise klar? -~~~~ -->
<xsl:template match="include-pentabarf-schedule" xmlns:x="http://www.w3.org/1999/xhtml">
<xsl:for-each select="document(@src)//x:div[@id='schedule']">
<h2 class="scheduletitle">
<xsl:value-of select="x:h1"/>
</h2>
<table class="schedule">
<tr>
<xsl:for-each select="x:table/x:thead/x:tr/x:th">
<th>
<xsl:if test="x:strong">
<xsl:attribute name="class">schedulehead</xsl:attribute>
<xsl:value-of select="x:strong"/>
</xsl:if>
</th>
</xsl:for-each>
</tr>
<xsl:for-each select="x:table/x:tbody/x:tr">
<tr>
<xsl:for-each select="x:td">
<xsl:if test="@class">
<td>
<xsl:if test="normalize-space(@rowspan) != ''">
<xsl:attribute name="rowspan">
<xsl:value-of select="@rowspan"/>
</xsl:attribute>
</xsl:if>
<xsl:choose>
<xsl:when test='count(x:*)=0'>
<!-- Zeit oder leer -->
<xsl:variable name="time"
select="normalize-space(.)"/>
<xsl:attribute name="class">
<xsl:text>timeslot</xsl:text>
<xsl:choose>
<xsl:when test="substring($time, string-length($time)) = '0'">
<xsl:text> even</xsl:text>
</xsl:when>
<xsl:when test="substring($time, string-length($time)) = '5'">
<xsl:text> odd</xsl:text>
</xsl:when>
</xsl:choose>
</xsl:attribute>
<xsl:value-of select="$time"/>
</xsl:when>
<xsl:otherwise>
<!-- Event -->
<xsl:attribute name="class">event</xsl:attribute>
<a class="event" href="fahrplan/{x:p[@class='title']/x:a/@href}">
<xsl:value-of select="x:p[@class='title']"/>
</a>
<xsl:if test="x:ul[@class='speakers']/x:li/x:a">
<ul>
<xsl:for-each select="x:ul[@class='speakers']/x:li/x:a">
<li>
<a href="fahrplan/{@href}">
<xsl:value-of select="."/>
</a>
</li>
</xsl:for-each>
</ul>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</td>
</xsl:if>
</xsl:for-each>
</tr>
</xsl:for-each>
</table>
</xsl:for-each>
</xsl:template>
<xsl:template name="htmlhead">
<xsl:param name="title"/>
<head>
<meta charset="utf-8" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta name="description" content="Symposium Datenspuren - Total Verwanzt, 2012, Kulturzentrum Scheune, veranstaltet vom Chaos Computer Club Dresden" />
<meta name="keywords" content="Symposium Datenspuren,c3d2,Chaos Computer Club,CCC,Dresden,Datenschutz,Privatsphäre,IPv6,Cloud,ePostbrief,de-Mail,Anonymität,informationelle Selbstbestimmung,Überwachung,Data Mining,ETSI,RFID,Mautsystem,Remailer,TCPA,TCG,Bundestrojaner,Vorratsdatenspeicherung,Biometrie" />
<meta name="robots" content="index,follow" />
<meta name="language" content="German" />
<link rel="stylesheet" type="text/css" href="style/style.css" />
<link rel="icon" href="images/favicon.gif" type="image/gif" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="news-rss.xml" />
<link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="news-atom.xml" />
<title>
<xsl:text>Datenspuren 2012 — </xsl:text>
<xsl:value-of select="$title" />
</title>
<script type="application/javascript" src="script/jquery-1.6.4.min.js" defer="defer">
<xsl:text> </xsl:text>
</script>
<script type="application/javascript" src="script/play-resources.js" defer="defer">
<xsl:text> </xsl:text>
</script>
</head>
</xsl:template>
<xsl:template name="heading">
<div class="leftSideBar"><div>
<h2>Termin</h2>
<ul>
<li>
Samstag &amp; Sonntag,<br/>
13. &amp; 14. Oktober 2012
</li>
<li>Eintritt frei</li>
</ul>
<h2>Ort</h2>
<ul>
<li><a href="http://www.scheune.org/">Kulturzentrum Scheune</a></li>
<li>
Alaunstr. 36-40<br/>
01099 Dresden
</li>
</ul>
<h2>Symposium</h2>
<ul>
<li>
<xsl:call-template name="navigation-link">
<xsl:with-param name="page">index</xsl:with-param>
</xsl:call-template>
<span class="feedlinks">
(<a href="news-rss.xml">RSS</a>, <a href="news-atom.xml">ATOM</a>)
</span>
</li>
<li>
<xsl:call-template name="navigation-link">
<xsl:with-param name="page">info</xsl:with-param>
</xsl:call-template>
</li>
<li>
<xsl:call-template name="navigation-link">
<xsl:with-param name="page">ort</xsl:with-param>
</xsl:call-template>
</li>
<li>
<xsl:call-template name="navigation-link">
<xsl:with-param name="page">fahrplan</xsl:with-param>
</xsl:call-template>
</li>
<li>
<xsl:call-template name="navigation-link">
<xsl:with-param name="page">mitschnitte</xsl:with-param>
</xsl:call-template>
</li>
</ul>
</div></div>
</xsl:template>
<xsl:template name="navigation-link">
<xsl:param name="page"/>
<xsl:variable name="title"
select="document(concat('../../content/datenspuren/', $page, '.xml'))/page/@title"/>
<a href="{$page}.html">
<xsl:if test="$title = /page/@title">
<xsl:attribute name="class">active</xsl:attribute>
</xsl:if>
<xsl:value-of select="$title"/>
</a>
</xsl:template>
<xsl:template name="footer">
<!--div id="cccdd_logo">
<a href="https://www.c3d2.de/">
<img src="images/cccdd_logo.png" alt="Computer Chaos Club Dresden" />
</a>
</div-->
<div id="footer">
<ul id="oldds">
<li><a href="../2011/">2011</a></li>
<li><a href="../2010/">2010</a></li>
<li><a href="../2009/">2009</a></li>
<li><a href="../2008/">2008</a></li>
<li><a href="../2007/">2007</a></li>
<li><a href="../2006/">2006</a></li>
<li><a href="../2005/">2005</a></li>
<li><a href="../2004/">2004</a></li>
</ul>
<div>
Copyleft 2004 - 2012 |
<a href="http://www.c3d2.de/">Chaos Computer Club Dresden</a> |
<a href="mailto:mail@c3d2.de" title="eMail webmaster">mail@c3d2.de</a></div>
</div>
</xsl:template>
<xsl:template match="news-list">
<xsl:variable name="prefix" select="@prefix"/>
<xsl:variable name="details" select="@details"/>
<xsl:for-each select="document('../../news.xml')/page/news/newsfile">
<xsl:sort select="date:seconds(document(concat('../../', .))/item/@date)" data-type="number" order="descending" />
<xsl:variable name="newsfile" select="."/>
<xsl:for-each select="document(concat('../../', $newsfile))/item">
<xsl:if test="((string-length($prefix) = 0) or starts-with($newsfile, concat('content/news/', $prefix))) and (($details != 'resources-only') or (count(resource) &gt; 0))">
<h3 class="summary">
<a href="https://www.c3d2.de/{substring-before(substring-after($newsfile, 'content/'), '.xml')}.html" class="url">
<xsl:value-of select="@title"/>
</a>
<span class="date">
<xsl:call-template name="get-short-datestring">
<xsl:with-param name="date" select="@date"/>
</xsl:call-template>
</span>
</h3>
<!-- Diese Elemente entsprechen Block.class aus xsd/c3d2web.xsd -->
<!--xsl:apply-templates select=".//*[name() = 'dl' or name() = 'p' or name() = 'ul' or name() = 'ol' or name() = 'pre']"/-->
<xsl:apply-templates/>
</xsl:if>
</xsl:for-each>
</xsl:for-each>
</xsl:template>
<xsl:template match="item/image">
<!-- Nix Bilder in den Datenspuren-News -->
</xsl:template>
<xsl:template match="resource">
<section class="resource">
<xsl:if test="@preview">
<xsl:attribute name="data-preview">
<xsl:value-of select="@preview"/>
</xsl:attribute>
</xsl:if>
<h4>
<xsl:choose>
<xsl:when test="@details-link">
<a href="{@details-link}">
<xsl:value-of select="@title"/>
</a>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@title"/>
</xsl:otherwise>
</xsl:choose>
</h4>
<xsl:if test="@poster">
<img src="{@poster}" title="{@title}"/>
</xsl:if>
<ul>
<li><xsl:call-template name="link-resource"/></li>
<xsl:for-each select="alternative">
<li><xsl:call-template name="link-resource"/></li>
</xsl:for-each>
<xsl:if test="@feedback-link">
<li class="feedback"><a href="{@feedback-link}">Feedback</a></li>
</xsl:if>
</ul>
</section>
</xsl:template>
<xsl:template name="link-resource">
<a href="{@url}" type="{@type}">
<xsl:call-template name="mime-for-human-short">
<xsl:with-param name="mime" select="@type"/>
</xsl:call-template>
</a>
<span class="size">
<xsl:call-template name="format-filesize">
<xsl:with-param name="value" select="@size"/>
</xsl:call-template>
</span>
</xsl:template>
</xsl:stylesheet>