c3d2-web/xsl/datenspuren/xhtml5.xsl

353 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="device">
<div id="device-2">
<ul id="info">
<li>Samstag &amp; Sonntag,</li>
<li>6. &amp; 7. September 2013</li>
<li>Eintritt frei</li>
</ul>
<div id="head">
<a href="index.html">
<h1>Datenspuren</h1>
<h2>Voll verwanzt!</h2>
</a>
</div>
<div id="screen">
<div id="screen-top">
<div id="menu">
<div id="battery">
<img src="images/battery.png" height="64"/>
</div>
<div>
<a href="ort.html">
<img src="./images/map.png" width="64" height="64"/>
<span>Scheune, Dresden</span>
</a>
</div>
<div>
<a href="news-rss.xml">
<img src="./images/feed.png" width="64" height="64"/>
</a>
<span><a href="news-rss.xml">RSS</a>|<a href="news-atom.xml">Atom</a></span>
</div>
<div>
<a href="mitschnitte.html">
<img src="./images/video.png" width="64" height="64"/>
<span>Mitschnitte</span>
</a>
</div>
<div>
<a href="fahrplan.html">
<img src="./images/calendar.png" width="64" height="64"/>
<span>Programm</span>
</a>
</div>
<div>
<a href="info.html">
<img src="./images/info.png" width="64" height="64"/>
<span>Informationen</span>
</a>
</div>
<div id="c3d2">
<a href="http://c3d2.de">
<img src="images/wlan.png" height="64"/>
</a>
</div>
</div>
<div id="content">
<xsl:apply-templates/>
</div>
</div>
<div id="footer">
<ul id="oldds">
<li>
<a href="../2012/">2012</a>
</li>
<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>
<a href="licenses.html">Lizenzen</a> |
<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>
</div>
</div>
</div>
</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:param name="prefix" select="@prefix"/>
<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>
<h4>
<a class="event" href="{$prefix}{x:p[@class='title']/x:a/@href}">
<xsl:value-of select="x:p[@class='title']"/>
</a>
</h4>
<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="{$prefix}{@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 - Voll Verwanzt, 2013, 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 2013 — </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>
<script type="application/javascript" src="script/derbug.js" defer="defer">
<xsl:text> </xsl:text>
</script>
</head>
</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">
<div class="preview">
<img src="{@poster}" title="{@title}"/>
</div>
</xsl:if>
<ul class="links">
<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>