- From: Jos De_Roo <jos.deroo@agfa.com>
- Date: Tue, 25 May 2004 01:58:56 +0200
- To: "Dan Connolly <connolly" <connolly@w3.org>
- Cc: RDF Data Access Working Group <public-rdf-dawg@w3.org>
Dan,
As mentioned in the last telecon my regrets
(traveling, actually have to take a plane in the
next few hours and so will not have a lot of sleep
but this is because I'm reading a very interesting
thesis at http://www.itee.uq.edu.au/~gwat/thesis/)
I would vote to publish the current version of
http://www.w3.org/2001/sw/DataAccess/UseCases
as our working draft.
--
Jos De Roo, AGFA http://www.agfa.com/w3c/jdroo/
PS although it's a DOS batch file, I'm now daily using
@echo off
Euler --think --nope http://slashdot.org/slashdot.rss
http://www.w3.org/2000/08/w3c-synd/home.rss "{@prefix rss:
<http://purl.org/rss/1.0/>. ?U rss:title ?T}" > \rt.n3
call cwm /rt.n3 --pipe --rdf > \rt.rss
saxon /rt.rss /rt.xsl > \rt.html
\rt.html
collecting RSS titles from /. and w3
and the rt.xsl is simply
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:log="http://www.w3.org/2000/10/swap/log#"
xmlns:math="http://www.w3.org/2000/10/swap/math#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rss="http://purl.org/rss/1.0/">
<xsl:output method="html"/>
<xsl:template match="rdf:RDF">
<html>
<head>
<title>RSS titles</title>
<link href="base.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<h1>RSS titles</h1>
<dl><xsl:apply-templates select="rdf:Description"/></dl>
</body>
</html>
</xsl:template>
<xsl:template match="rdf:Description">
<li>
<a>
<xsl:attribute name="href"><xsl:value-of
select="@rdf:about"></xsl:value-of></xsl:attribute>
<xsl:value-of select="rss:title"/>
</a>
</li>
</xsl:template>
</xsl:stylesheet>
Received on Monday, 24 May 2004 19:59:33 UTC