Skip to content

Commit 6e35c06

Browse files
committed
Fixed minor bugs when inserting bugs against status-of-this-document.
Removed Larry's comments since they are now spec bugs and are listed as such.
1 parent f3596aa commit 6e35c06

File tree

2 files changed

+12
-17
lines changed

2 files changed

+12
-17
lines changed

bin/specbugs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,8 @@ def addSpecBugWarnings(argv, stdout, environ):
159159

160160
if(bugsBySection.has_key(idvalue)):
161161
aestart = line[:idstart].rfind("<") + 1
162-
activeElement = line[aestart:idstart-5].strip()
162+
aeend = line.find(" ", aestart)
163+
activeElement = line[aestart:aeend].strip()
163164

164165
outfile.write(line)
165166

headers/header-w3c-rdfa-wd.in

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -308,22 +308,16 @@
308308
should note the status, and are encouraged to join the RDFa Working Group.
309309
</p><!-- not everyone agrees with html5 (requested before fpwd) -->
310310
<p>Publication as a Working 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.</p>
311-
<p>
312-
The publication of this document by the W3C as a W3C Working Draft does
313-
not imply endorsement by the W3C HTML Working Group or the W3C as a whole.
314-
In particular,
315-
</p>
316-
<ul>
317-
<li>There are one or more alternate methods of adding data without
318-
using RDFa, such as
319-
[<a href="http://www.w3.org/TR/microdata/">microdata</a>].</li>
320-
<li>There are discussions of alternate extensibility mechanisms,
321-
covered in
322-
[<a href="http://www.w3.org/html/wg/tracker/issues/41">issue-41</a>],
323-
which might allow other ways of integrating RDFa.</li>
324-
<li>There is concern that continued development of this document belongs
325-
in a different working group.</li>
326-
</ul>
311+
312+
313+
<p>The publication of this document by the W3C as a W3C Working Draft does
314+
not imply that all of the participants in the W3C HTML working group
315+
endorse the contents of the specification. Indeed, for any section of the
316+
specification, one can usually find many members of the working group or of
317+
the W3C as a whole who object strongly to the current text, the existence
318+
of the section at all, or the idea that the working group should even spend
319+
time discussing the concept of that section.</p>
320+
327321
<!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- version history or list of changes (required) -->
328322
<p>
329323
The latest stable version of the editor's draft of this specification is

0 commit comments

Comments
 (0)