- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 23 Jul 2008 02:10:05 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/pubnotes
In directory hutz:/tmp/cvs-serv4470
Modified Files:
Overview.html Overview.src.html specgen.xsl
Log Message:
make some specgen refinements
Index: specgen.xsl
===================================================================
RCS file: /sources/public/html5/pubnotes/specgen.xsl,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- specgen.xsl 8 Jul 2008 23:58:04 -0000 1.36
+++ specgen.xsl 23 Jul 2008 02:10:03 -0000 1.37
@@ -25,7 +25,7 @@
<xsl:variable name="latest" select="$info/h:*[@id = 'versions']/h:*[@id = 'latest']"/>
<xsl:variable name="previous-nodeset" select="$info/h:*[@id = 'versions']/h:*[contains(@class,'previous')]"/>
<xsl:variable name="person-nodeset" select='$info/h:*[@id="editors"]/h:*[@ class="person"]'/>
- <xsl:variable name="wginfo-nodeset" select="$info/h:*[@id = 'wginfo']"/>
+ <xsl:variable name="groupinfo-nodeset" select="$info/h:*[@id = 'groupinfo']"/>
<xsl:template match='/'>
<xsl:if test='$maturity = "ED"'>
@@ -279,38 +279,31 @@
</xsl:template>
<xsl:template name='sotd'>
- <xsl:variable name='ipp' select='$wginfo-nodeset/*[@id = "ipp"]'/>
- <xsl:variable name='comments-address' select='$wginfo-nodeset/*[@id = "comments-address"]'/>
- <xsl:variable name='comments-archive' select='$wginfo-nodeset/*[@id = "comments-archive"]'/>
- <xsl:variable name="wg">
- <a href="{$wginfo-nodeset/*[@id = 'wg']}">
- <xsl:choose>
- <xsl:when test="$wginfo-nodeset/*[@id = 'wg'] = 'http://www.w3.org/html/wg'"
- >HTML Working Group</xsl:when>
- <xsl:otherwise>[undefined working group</xsl:otherwise>
- </xsl:choose>
- </a>
- </xsl:variable>
+ <xsl:variable name='w3c-ipp' select='$groupinfo-nodeset/*[@id = "w3c-ipp"]'/>
+ <xsl:variable name='comments-address' select='$groupinfo-nodeset/*[@id = "comments-address"]'/>
+ <xsl:variable name='comments-archive' select='$groupinfo-nodeset/*[@id = "comments-archive"]'/>
+ <xsl:variable name='group-url' select='$groupinfo-nodeset/*[@id = "group-url"]'/>
+ <xsl:variable name='group-name' select='$groupinfo-nodeset/*[@id = "group-name"]'/>
<!-- * <xsl:variable name="activity"> -->
- <!-- * <a href="{$wginfo-nodeset/*[@id = 'activity']}"> -->
+ <!-- * <a href="{$groupinfo-nodeset/*[@id = 'activity']}"> -->
<!-- * <xsl:choose> -->
- <!-- * <xsl:when test="$wginfo-nodeset/*[@id = 'activity'] = 'http://www.w3.org/MarkUp/Activity.html'" -->
+ <!-- * <xsl:when test="$groupinfo-nodeset/*[@id = 'activity'] = 'http://www.w3.org/MarkUp/Activity.html'" -->
<!-- * >HTML Activity</xsl:when> -->
<!-- * <xsl:otherwise>[undefined activity]</xsl:otherwise> -->
<!-- * </xsl:choose> -->
<!-- * </a> -->
<!-- * </xsl:variable> -->
<!-- * <xsl:variable name="domain"> -->
- <!-- * <a href="{$wginfo-nodeset/*[@id = 'domain']}"> -->
+ <!-- * <a href="{$groupinfo-nodeset/*[@id = 'domain']}"> -->
<!-- * <xsl:choose> -->
- <!-- * <xsl:when test="$wginfo-nodeset/*[@id = 'domain'] = 'http://www.w3.org/Interaction/'" -->
+ <!-- * <xsl:when test="$groupinfo-nodeset/*[@id = 'domain'] = 'http://www.w3.org/Interaction/'" -->
<!-- * >Interaction Domain</xsl:when> -->
<!-- * <xsl:otherwise>[undefined domain]</xsl:otherwise> -->
<!-- * </xsl:choose> -->
<!-- * </a> -->
<!-- * </xsl:variable> -->
<xsl:variable name="source">
- <a href="{$source}">W3C source repository</a>
+ <a href="{$source}">group’s source repository</a>
</xsl:variable>
<p>
<em>
@@ -332,7 +325,8 @@
(<a href='{$comments-archive}'>archived</a>).
</p>
<p>
- This document was produced by the <xsl:copy-of select="$wg"/>.
+ This document was produced by the <a href="{$group-url}"
+ ><xsl:copy-of select="normalize-space($group-name)"/></a>.
<!-- * part of the <xsl:copy-of select="$activity"/> -->
<!-- * in the W3C <xsl:copy-of select="$domain"/>. -->
You can find the source for the current version of this document in the
@@ -350,7 +344,17 @@
functionality and interoperability of the Web.
</xsl:when>
<xsl:otherwise>
- Publication as a <xsl:call-template name='maturity-short'/> does not imply endorsement by the
+ Publication as
+ <xsl:choose>
+ <xsl:when test='$maturity = "ED"'>
+ <xsl:text>an</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text>a</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ <xsl:text> </xsl:text>
+ <xsl:call-template name='maturity-short'/> does not imply endorsement by the
W3C Membership. This is a draft document and may be updated, replaced
or obsoleted by other documents at any time. It is inappropriate to cite
this document as other than work in progress.
@@ -361,7 +365,7 @@
This document was produced by a group operating under the
<a href='http://www.w3.org/Consortium/Patent-Policy-20040205/'>5 February
2004 W3C Patent Policy</a>. W3C maintains a
- <a href='{$ipp}'>public list of
+ <a href='{$w3c-ipp}'>public list of
any patent disclosures</a> made in connection with the deliverables of
the group; that page also includes instructions for disclosing a patent.
An individual who has actual knowledge of a patent which the individual
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/pubnotes/Overview.html,v
retrieving revision 1.324
retrieving revision 1.325
diff -u -d -r1.324 -r1.325
--- Overview.html 21 Jul 2008 12:50:05 -0000 1.324
+++ Overview.html 23 Jul 2008 02:10:02 -0000 1.325
@@ -1,7 +1,7 @@
<?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">
<!-- * -->
-<!-- * Note: This file was generated from source at http://dev.w3.org/html5/pubnotes/Overview.src.html -->
+<!-- * Note: This file was generated from source at http://dev.w3.org/html5/pubnotes/Overview.html -->
<!-- * Run “make” to regenerate it. -->
<!-- * -->
<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>
@@ -12,16 +12,16 @@
</head>
<body><div class="head"><div><a href="http://www.w3.org/"><img src="http://www.w3.org/Icons/w3c_home" width="72" height="48" alt="W3C" /></a></div><h1>HTML 5 Publication Notes</h1><h2>
W3C
- Editor’s Draft <em>21 July 2008</em></h2><dl><dt>Latest Editor’s Draft:</dt><dd><a id="latestED" href="http://dev.w3.org/html5/pubnotes/Overview.src.html">http://dev.w3.org/html5/pubnotes/Overview.src.html</a><script type="text/ecmascript">
+ Editor’s Draft <em>23 July 2008</em></h2><dl><dt>Latest Editor’s Draft:</dt><dd><a id="latestED" href="http://dev.w3.org/html5/pubnotes/Overview.html">http://dev.w3.org/html5/pubnotes/Overview.html</a><script type="text/ecmascript">
var id = "$Id$";
var a = document.getElementById('cvsVersionLink');
var xs = id.match(/ ([0-9]\.[0-9.]+) /);
if (xs) {
var rev = xs[1];
- a.href = "http://dev.w3.org/html5/pubnotes/Overview.src.html?rev=" + rev + String.fromCharCode(38) + "content-type=text/html; charset=utf-8";
+ a.href = "http://dev.w3.org/html5/pubnotes/Overview.html?rev=" + rev + String.fromCharCode(38) + "content-type=text/html; charset=utf-8";
a.firstChild.data = a.href;
}
- </script></dd><dt>Latest Published Version:</dt><dd><a href="http://www.w3.org/TR/html5-pubnotes/">http://www.w3.org/TR/html5-pubnotes/</a></dd><dt>Editor:</dt><dd><a href="http://people.w3.org/mike">Michael(tm) Smith</a>, W3C <<a href="mailto:mike@w3.org">mike@w3.org</a>></dd></dl><p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2008 <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</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</a>), All Rights Reserved. W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="htp://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p></div><hr />
+ </script></dd><dt>Latest Published Version:</dt><dd><a href="http://www.w3.org/TR/html5-pubnotes/">http://www.w3.org/TR/html5-pubnotes/</a></dd><dt>Previous Version:</dt><dd><a href="http://www.w3.org/TR/2008/NOTE-html5-pubnotes-20080610/">http://www.w3.org/TR/2008/NOTE-html5-pubnotes-20080610/</a></dd><dt>Editor:</dt><dd><a href="http://people.w3.org/mike">Michael(tm) Smith</a>, W3C <<a href="mailto:mike@w3.org">mike@w3.org</a>></dd></dl><p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</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</a>), All Rights Reserved. W3C <a href="http://www.w3.org/Consotium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p></div><hr />
<div style="text-align: center" id="tocjump"><a href="#toc">skip to Table of Contents</a></div>
@@ -36,7 +36,7 @@
of the changes without necessarily needing to read the
specification itself.</p>
<div class="ednote"><h4 class="ednoteHeader">Editorial note</h4><p>This document was generated on
- <b>2008-07-21T21:49:46+09:00</b>.</p></div></div>
+ <b>2008-07-23T11:07:37+09:00</b>.</p></div></div>
<div id="status">
<h2>Status of this Document</h2>
<p><em>
@@ -46,7 +46,7 @@
report can be found in the <a href="http://www.w3.org/TR/">W3C technical
reports index</a> at http://www.w3.org/TR/.
</em></p><p>
- This document is the 21 July 2008 <b>Editor’s Draft</b> of
+ This document is the 23 July 2008 <b>Editor’s Draft</b> of
<cite>HTML 5 Publication Notes</cite>.
Please send comments about this document to
@@ -56,9 +56,10 @@
This document was produced by the <a href="http://www.w3.org/html/wg">HTML Working Group</a>.
You can find the source for the current version of this document in the
- <a href="http://dev.w3.org/html5/pubnotes/Overview.src.html">W3C source repository</a>.
+ <a href="http://dev.w3.org/html5/pubnotes/Overview.html">group’s source repository</a>.
</p><p>
- Publication as a Editor’s Draft does not imply endorsement by the
+ Publication as
+ an Editor’s Draft does not imply endorsement by the
W3C Membership. This is a draft document and may be updated, replaced
or obsoleted by other documents at any time. It is inappropriate to cite
this document as other than work in progress.
Index: Overview.src.html
===================================================================
RCS file: /sources/public/html5/pubnotes/Overview.src.html,v
retrieving revision 1.316
retrieving revision 1.317
diff -u -d -r1.316 -r1.317
--- Overview.src.html 21 Jul 2008 12:50:05 -0000 1.316
+++ Overview.src.html 23 Jul 2008 02:10:03 -0000 1.317
@@ -23,11 +23,11 @@
<div id=maturity>ED</div>
<!-- * <div id=maturity>WG-NOTE</div> -->
<div id=versions>
- <div id=source class=url>http://dev.w3.org/html5/pubnotes/Overview.src.html</div>
- <div id=this class=url>http://www.w3.org/TR/2008/NOTE-html5-pubnotes-20080610/</div>
+ <div id=source class=url>http://dev.w3.org/html5/pubnotes/Overview.html</div>
+ <!-- * <div id=this class=url>http://www.w3.org/TR/2008/NOTE-html5-pubnotes-20080610/</div> -->
<div id=latest class=url>http://www.w3.org/TR/html5-pubnotes/</div>
<!-- * you can have multiple previous URLs -->
- <!-- * <div class="previous url">http://www.w3.org/TR/2008/NOTE-html5-pubnotes-20080501/</div> -->
+ <div class="previous url">http://www.w3.org/TR/2008/NOTE-html5-pubnotes-20080610/</div>
<!-- * <div class="previous url">http://www.w3.org/TR/2008/NOTE-html5-pubnotes-20080517/</div> -->
</div>
<div id=editors>
@@ -35,14 +35,13 @@
<span class=name>Michael(tm) Smith</span>
<span class="homepage url">http://people.w3.org/mike</span>
<span class=affiliation>W3C</span>
- <span class="email">mike@w3.org</span>
+ <span class=email>mike@w3.org</span>
</div>
</div>
- <div id=wginfo>
- <div id=wg class=url>http://www.w3.org/html/wg</div>
- <div id=activity class=url>http://www.w3.org/MarkUp/Activity.html</div>
- <div id=domain class=url>http://www.w3.org/Interaction/</div>
- <div id=ipp class=url>http://www.w3.org/2004/01/pp-impl/40318/status</div>
+ <div id=groupinfo>
+ <div id=group-url class=url>http://www.w3.org/html/wg</div>
+ <div id=group-name class=name>HTML Working Group</div>
+ <div id=w3c-ipp class=url>http://www.w3.org/2004/01/pp-impl/40318/status</div>
<div id=comments-address class=email>public-html-comments@w3.org</div>
<div id=comments-archive class=url>http://lists.w3.org/Archives/Public/public-html-comments</div>
</div>
Received on Wednesday, 23 July 2008 02:10:39 UTC