- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 10 Jun 2008 10:16:19 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/pubnotes
In directory hutz:/tmp/cvs-serv29070
Modified Files:
Overview.html specgen.xsl style.css
Log Message:
added links to multi-page diff doc
Index: specgen.xsl
===================================================================
RCS file: /sources/public/html5/pubnotes/specgen.xsl,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- specgen.xsl 9 Jun 2008 20:12:29 -0000 1.26
+++ specgen.xsl 10 Jun 2008 10:16:16 -0000 1.27
@@ -516,6 +516,10 @@
<xsl:variable name="myid">
<xsl:value-of select="../@id"/>
</xsl:variable>
+ <xsl:variable name="filename">
+ <xsl:value-of
+ select="concat(ancestor-or-self::h:section[../../../h:*[@id = $sectionsID]]/@id,'.html')"/>
+ </xsl:variable>
<xsl:element name="{name()}" namespace="{namespace-uri()}">
<xsl:copy-of select='@*[namespace-uri()="" or namespace-uri="http://www.w3.org/XML/1998/namespace"]'/>
<!-- * <xsl:if test='$toc-marker'> -->
@@ -538,9 +542,16 @@
<xsl:if test="not($myid = 'fpwd')
and not($myid = 'references')
">
- <p class="spec-link">View “<a href="http://www.w3.org/TR/html5/#{$myid}"
- ><xsl:apply-templates select='node()'/></a>” in the
- specification</p>
+ <div class="spec-links">
+ <p class="spec-link">View “<a href="http://www.w3.org/TR/html5/{$filename}#{$myid}"
+ ><xsl:apply-templates select='node()'/></a>” in the
+ specification.</p>
+ <p class="spec-link">View “<a href="http://www.w3.org/TR/2008/WD-html5-20080610/diff/{$filename}#{$myid}"
+ ><xsl:apply-templates select='node()'/></a>” in a
+ diff-marked version of the specification, showing
+ changes made between 22 January 2008 and 10 June
+ 2008.</p>
+ </div>
</xsl:if>
</xsl:template>
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/pubnotes/Overview.html,v
retrieving revision 1.245
retrieving revision 1.246
diff -u -d -r1.245 -r1.246
--- Overview.html 9 Jun 2008 20:12:29 -0000 1.245
+++ Overview.html 10 Jun 2008 10:16:16 -0000 1.246
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
- <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>HTML 5 Publication Notes</title>
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>HTML 5 Publication Notes</title>
<meta content="$Id$" name="revision" />
<link href="style.css" type="text/css" rel="stylesheet" />
@@ -153,15 +152,21 @@
specification itself or to read through the entire diff
document that shows all the changes.</p>
[...1862 lines suppressed...]
+ diff-marked version of the specification, showing
+ changes made between 22 January 2008 and 10 June
+ 2008.</p></div>
<p>This mostly non-normative section describes certain
features that the specification, by design, does not
address — because “a client-side markup language is not
@@ -3489,8 +3906,11 @@
</ul>
</div>
<div id="acknowledgements" class="section">
- <h2>Acknowledgements <a class="hash" href="#acknowledgements">#</a> <a class="toc-bak" href="#acknowledgements-toc">T</a></h2><p class="spec-link">View “<a href="http://www.w3.org/TR/html5/#acknowledgements">Acknowledgements</a>” in the
- specification</p>
+ <h2>Acknowledgements <a class="hash" href="#acknowledgements">#</a> <a class="toc-bak" href="#acknowledgements-toc">T</a></h2><div class="spec-links"><p class="spec-link">View “<a href="http://www.w3.org/TR/html5/acknowledgements.html#acknowledgements">Acknowledgements</a>” in the
+ specification</p><p class="spec-link">View “<a href="http://www.w3.org/TR/2008/WD-html5-20080610/diff/acknowledgements.html#acknowledgements">Acknowledgements</a>” in a
+ diff-marked version of the specification, showing
+ changes made between 22 January 2008 and 10 June
+ 2008.</p></div>
<p>The following names were added to the list of names in
the Acknowledgements:</p>
<blockquote>
Index: style.css
===================================================================
RCS file: /sources/public/html5/pubnotes/style.css,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -d -r1.62 -r1.63
--- style.css 9 Jun 2008 18:59:51 -0000 1.62
+++ style.css 10 Jun 2008 10:16:16 -0000 1.63
@@ -299,8 +299,15 @@
font-weight: normal;
}
+.spec-links {
+ background-color: cornsilk;
+ padding: 4px;
+}
+
.spec-link {
font-style: italic;
+ margin: 0px;
+ font-size: 80%;
}
#tocjump {
Received on Tuesday, 10 June 2008 10:16:52 UTC