<?xml-stylesheet href="http://www.w3.org/StyleSheets/base.css" type="text/css"?><?xml-stylesheet href="http://www.w3.org/2002/02/style-xsl.css" type="text/css"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:contact="http://www.w3.org/2000/10/swap/pim/contact#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:h="http://www.w3.org/1999/xhtml" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rec="http://www.w3.org/2001/02pd/rec54#" xmlns="http://www.w3.org/1999/xhtml" xmlns:date="http://www.w3.org/2001/08/date-util.xslt" xmlns:str="http://www.w3.org/2001/10/str-util.xsl" xmlns:doc="http://www.w3.org/2000/10/swap/pim/doc#" xmlns:org="http://www.w3.org/2001/04/roadmap/org#" xmlns:tra="http://www.w3.org/2002/01/tr-automation/process#" exclude-result-prefixes="contact dc rec rdf date str doc org tra">

<!-- Output method XML -->
<xsl:output method="xml" 
  indent="yes"
  omit-xml-declaration="no" 
  encoding="utf-8" 
  doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
  doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"  />


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <link rel="stylesheet" href="http://www.w3.org/StyleSheets/base"/>
    <title>Technical Reports Shopping List generator</title>
  </head>
  <body>
    <div class='head'><a href="/"><img src="/Icons/w3c_home" alt="W3C"/></a></div>
    <h1>Technical Reports Shopping List generator</h1>

    <p>This XSLT creates a shopping list from our database of Technical Reports, allowing specification editors to create their references list based on an HTML interface on the RDF data. It complements the <a href="/2002/01/tr-automation/tr-biblio-ui">TR bibliography extractor</a>.</p>

    <form action="http://www.w3.org/2000/06/webdata/xslt" method="get">
      <div>
        <input type="hidden" name="xslfile" value="http://www.w3.org/2005/06/tr-shopping.xsl" />
<input type="hidden" name="xmlfile" value="http://www.w3.org/2002/01/tr-automation/tr.rdf" />
        <p><input type="submit" value="Start shopping for Technical Reports..." /><input type="reset" /></p>
      </div>
    </form>


    <p class="copyright">Copyright &#169; 2005 <a href="http://www.w3.org/">World Wide Web Consortium</a>, (<a
href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of
Technology">M.I.T.</acronym></a>, <a
href="http://www.ercim.org/"><acronym
title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>, <a
href="http://www.keio.ac.jp/">Keio University</a>). All Rights
    Reserved. http://www.w3.org/Consortium/Legal/. W3C <a href="http://www.w3.org/Consortium/Legal/copyright-software">software licensing</a> rules apply.</p>
    <address><a href="http://www.w3.org/People/Dom/">Dominique Haza&#235;l-Massieux</a> - $Id: tr-shopping.xsl,v 1.7 2005/06/15 11:00:08 dom Exp $</address>
    </body>
</html>

<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Technical reports shopping list</title>
<link type="text/css" rel="stylesheet" href="/StyleSheets/base" />
</head>
<body>
<p><a href="/" title="W3C"><img height="48" width="72" alt="W3C"
src="http://www.w3.org/Icons/w3c_home" /></a></p>

<h1>Technical reports shopping list</h1>

<p>Create your reference list from W3C Technical Reports database by picking the technical reports you want; the tool will format them accordingly with the <a href="http://www.w3.org/2001/06/Manual/">manual of style</a>.</p>

<form action="http://www.w3.org/2005/06/tr-shop">
  <ol>
    <xsl:for-each select="/rdf:RDF/*[doc:versionOf/@rdf:resource]">
      <xsl:sort select="dc:title"/>
      <li><input type="checkbox" name="uris[]" value="{doc:versionOf/@rdf:resource}"/> <xsl:value-of select="dc:title"/></li>
    </xsl:for-each>
  </ol>
  <p><input type="submit" value="Generate bibliography" /></p>
</form>

<hr />
<address><a href="http://www.w3.org/People/Dom/">Dominique
Haza&#235;l-Massieux</a> &lt;<a
href="mailto:dom@w3.org">dom@w3.org</a>&gt;<br />
List generated by <a href="http://www.w3.org/2005/06/tr-shopping.xsl">an XSLT stylesheet</a>
Last Modified: $Date: 2005/06/15 11:00:08 $</address>
</body>
</html>
</xsl:template>

</xsl:stylesheet>
