html5/spec-author-view tidy-out.html,NONE,1.1 Makefile,1.73,1.74 OUT.html,1.3,1.4 spec.html,1.1965,1.1966 spec.preprocessed.html,1.801,1.802

Update of /sources/public/html5/spec-author-view
In directory hutz:/tmp/cvs-serv24477

Modified Files:
	Makefile OUT.html spec.html spec.preprocessed.html 
Added Files:
	tidy-out.html 
Log Message:
updated

--- NEW FILE: tidy-out.html ---
<!DOCTYPE html PUBLIC "DUMMY" "DUMMY">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US-x-Hixie" xml:lang="en-US-x-Hixie">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"></meta>
<meta content="HTML Tidy for HTML5 (experimental) for Linux/x86 https://github.com/w3c/tidy-html5/tree/c63cc39" name="generator"></meta>
<title>HTML5</title>

<style type="text/css">
/**/
/**/
   pre { margin-left: 2em; white-space: pre-wrap; }
   h2 { margin: 3em 0 1em 0; }
   h3 { margin: 2.5em 0 1em 0; }
   h4 { margin: 2.5em 0 0.75em 0; }
   h5, h6 { margin: 2.5em 0 1em; }
   h1 + h2, h1 + h2 + h2 { margin: 0.75em 0 0.75em; }
   h2 + h3, h3 + h4, h4 + h5, h5 + h6 { margin-top: 0.5em; }
   p { margin: 1em 0; }
   hr:not(.top) { display: block; background: none; border: none; padding: 0; margin: 2em 0; height: auto; }
[...57447 lines suppressed...]
 v2  * make the spec consistent about whether the word "algorithm" is part of
       an algorithm's name or not ("</dfn> algorithm", "</span> algorithm")
 v2  * make the spec more consistent about its use of "hexadecimal"
       and "base-sixteen", the order that 0-9 A-Z a-z is mentioned,
       and the detail to which the spec explains how to interpret a
       string as a hexadecimal number.
 v2  * become more consistent about what markup we use to mark up
       productions (nothing? <i>? <code>?)
 v2  * use <code>Document</code> consistently instead of 'document'.
 v2  * be clearer about arrays/lists/collections being zero-based
       despite using the term "/index/th".
 v2  * use the sample widgets:
          <li><img alt="A text field with editable sections for each
          value, with a button to pop up a dialog showing a calendar or
          clock." src="sample-datetime-ui-2"></li>
          <li><img alt="A calendar grid with a clock in the upper right
          hand corner." src="sample-datetime-ui-3"></li>
-->
</body>
</html>

Index: Makefile
===================================================================
RCS file: /sources/public/html5/spec-author-view/Makefile,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -d -r1.73 -r1.74
--- Makefile	5 Oct 2012 11:13:40 -0000	1.73
+++ Makefile	5 Oct 2012 13:34:52 -0000	1.74
@@ -28,7 +28,7 @@
 #SPLITTERFLAGS=--w3c --html5lib-serialiser
 WHATWGSTYLE = whatwg.css
 
-REVISION=$(shell $(GREP) $(GREPFLAGS) 'This is .+Revision: ' ../github-html/heartbeat/single-page.html | $(PERL) $(PERLFLAGS) -pe 's/.*This is .+Revision: (1\.[0-9]+) \$$\./$$1/')
+REVISION=$(shell $(GREP) $(GREPFLAGS) 'This is .+Revision: ' ../github-html/heartbeat/single-page.html | $(PERL) $(PERLFLAGS) -pe 's/.*This is .+Revision: (1\.[0-9]+) \$$\./$$1/' | $(PERL) $(PERLFLAGS) -pe 's/<\/p>//')
 
 Overview.html: spec.html $(SPLITTER) MANIFEST FILECHECK \
   the-h1-element.html the-h2-element.html the-h3-element.html \
@@ -36,12 +36,15 @@
   the-sub-element.html the-sup-element.html
 
 spec.preprocessed.html: ../github-html/heartbeat/single-page.html anolis/anolis tools/preprocess.xsl fragment-links.xhtml
+	-tidy -n -asxml ../github-html/heartbeat/single-page.html > tidy-out.html
+	$(PERL) $(PERLFLAGS) -pi -e 's/affect <code> nested in <a>//g' tidy-out.html
+	$(PERL) $(PERLFLAGS) -pi -e 's/"&"/"&amp;"/g' tidy-out.html
+	$(PERL) $(PERLFLAGS) -pi -e 's/ < / &lt; /g' tidy-out.html
 	$(XSLTPROC) $(XSLTPROCFLAGS) \
-	  --html \
 	  --stringparam RCSREVISION $(REVISION) \
 	  --stringparam html5 $(HTML5URL) \
 	  tools/preprocess.xsl \
-	  ../github-html/heartbeat/single-page.html \
+	  tidy-out.html \
 	  > $@
 
 spec.html: spec.preprocessed.html tools/postprocess.xsl
@@ -52,17 +55,16 @@
 	  --enable terms \
 	  --output-encoding="ascii" \
 	  $< $@.tmp
+	-tidy -m -n -asxml $@.tmp
 	 $(PERL) $(PERLFLAGS) -pi -e "s/#9001;/#x27E8;/g" $@.tmp
 	 $(PERL) $(PERLFLAGS) -pi -e "s/#9002;/#x27E9;/g" $@.tmp
 	$(XSLTPROC) $(XSLTPROCFLAGS) \
-	  --html \
 	  --stringparam html5 $(HTML5URL) \
 	  tools/postprocess.xsl \
-	  $@.tmp | \
+	  $@.tmp > tidy-out.html
 	$(XSLTPROC) $(XSLTPROCFLAGS) \
-	  --html \
 	  tools/toc-fix.xsl \
-	  - > $@
+	  tidy-out.html > $@
 	$(PERL) $(PERLFLAGS) -pi -e 'undef $$/; s/<!DOCTYPE html PUBLIC "DUMMY" "DUMMY">/<!doctype html>/' $@;
 	$(PERL) $(PERLFLAGS) -pi -e "s/load\('styler.js'\);//" $@;
 	$(PERL) $(PERLFLAGS) -pi -e "s/<\/dt><\/dt>/<\/dt>/g" $@
@@ -128,6 +130,7 @@
 	$(MAKE) fragment-links-full.js
 	$(MAKE) fragment-links.xhtml
 	$(RM) CHANGEDESC
+	$(RM) tidy-out.html
 	$(RM) SPLITTERLOG
 	$(RM) FILECHECK
 	$(RM) the-h1-element.html

Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.html,v
retrieving revision 1.1965
retrieving revision 1.1966
diff -u -d -r1.1965 -r1.1966
--- spec.html	5 Oct 2012 11:13:41 -0000	1.1965
+++ spec.html	5 Oct 2012 13:34:53 -0000	1.1966
@@ -1,5 +1,13 @@
 <!doctype html>
-<html lang="en-US-x-Hixie"><head><meta content="text/html; charset=utf-8" http-equiv="Content-Type"><title>HTML5: Edition for Web Authors</title><link href="whatwg.css" rel="stylesheet"><style type="text/css">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US-x-Hixie" xml:lang="en-US-x-Hixie">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type"></meta>
+<meta content="HTML Tidy for HTML5 (experimental) for Linux/x86 https://github.com/w3c/tidy-html5/tree/c63cc39" name="generator"></meta>
+<title>HTML5</title>
+
+<style type="text/css">
+/**/
+/**/
[...128385 lines suppressed...]
+<p>Thanks to the many sources that provided inspiration for the
+examples used in the specification.</p>
+<p>Thanks also to the Microsoft blogging community for some ideas,
+to the attendees of the W3C Workshop on Web Applications and
+Compound Documents for inspiration, to the #mrt crew, the #mrt.no
+crew, and the #whatwg crew, and to Pillar and Hedral for their
+ideas and support.</p>
+<!-- Hopefully Kam won't notice he's covered by these
   acknowledgements three times! -->
-
 <!--
  v2  * library of resources:
         var library = new ZipFile("data.zip");
@@ -79437,4 +57482,5 @@
           <li><img alt="A calendar grid with a clock in the upper right
           hand corner." src="sample-datetime-ui-3"></li>
 -->
- </body></html>
+</body>
+</html>

Index: OUT.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/OUT.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- OUT.html	5 Jul 2011 16:21:25 -0000	1.3
+++ OUT.html	5 Oct 2012 13:34:52 -0000	1.4
@@ -1,5 +1,13 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="en-US-x-Hixie"><head><meta content="text/html; charset=utf-8" http-equiv="Content-Type"><title>HTML5 (Edition for Web Authors)</title><meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"><link href="whatwg.css" rel="stylesheet"><style type="text/css">
+<!DOCTYPE html>
+<html lang="en-US-x-Hixie" xmlns="http://www.w3.org/1999/xhtml"
+xml:lang="en-US-x-Hixie">
+<head>
+<meta name="generator" content=
+"HTML Tidy for HTML5 (experimental) for Linux/x86 https://github.com/w3c/tidy-html5/tree/c63cc39" />
+<title>HTML5</title>
+
+<style type="text/css">
[...158756 lines suppressed...]
+ v2  * make the spec consistent about whether the word "algorithm" is part of
+       an algorithm's name or not ("</dfn> algorithm", "</span> algorithm")
+ v2  * make the spec more consistent about its use of "hexadecimal"
+       and "base-sixteen", the order that 0-9 A-Z a-z is mentioned,
+       and the detail to which the spec explains how to interpret a
+       string as a hexadecimal number.
+ v2  * become more consistent about what markup we use to mark up
+       productions (nothing? <i>? <code>?)
+ v2  * use <code>Document</code> consistently instead of 'document'.
+ v2  * be clearer about arrays/lists/collections being zero-based
+       despite using the term "/index/th".
+ v2  * use the sample widgets:
+          <li><img alt="A text field with editable sections for each
+          value, with a button to pop up a dialog showing a calendar or
+          clock." src="sample-datetime-ui-2"></li>
+          <li><img alt="A calendar grid with a clock in the upper right
+          hand corner." src="sample-datetime-ui-3"></li>
+-->
+</body>
+</html>

Index: spec.preprocessed.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.preprocessed.html,v
retrieving revision 1.801
retrieving revision 1.802
diff -u -d -r1.801 -r1.802
--- spec.preprocessed.html	5 Oct 2012 11:13:52 -0000	1.801
+++ spec.preprocessed.html	5 Oct 2012 13:35:04 -0000	1.802
@@ -1,9 +1,11 @@
 <!DOCTYPE html PUBLIC "DUMMY" "DUMMY">
-<html lang="en-US-x-Hixie"><head><meta http-equiv="Content-Type" content="text/html; charset=ascii">
-<title>HTML5: Edition for Web Authors</title>
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US-x-Hixie" xml:lang="en-US-x-Hixie">
+<head><meta http-equiv="Content-Type" content="text/html; charset=ascii">
+<meta name="generator" content="HTML Tidy for HTML5 (experimental) for Linux/x86 https://github.com/w3c/tidy-html5/tree/c63cc39"></meta>
+<title>HTML5</title>
 
-<link href="whatwg.css" rel="stylesheet">
 <style type="text/css">
+/**/
[...117725 lines suppressed...]
+<p>Thanks to the many sources that provided inspiration for the
+examples used in the specification.</p>
+<p>Thanks also to the Microsoft blogging community for some ideas,
+to the attendees of the W3C Workshop on Web Applications and
+Compound Documents for inspiration, to the #mrt crew, the #mrt.no
+crew, and the #whatwg crew, and to Pillar and Hedral for their
+ideas and support.</p>
+<!-- Hopefully Kam won't notice he's covered by these
   acknowledgements three times! -->
-
 <!--
  v2  * library of resources:
         var library = new ZipFile("data.zip");
@@ -42730,4 +83853,5 @@
           <li><img alt="A calendar grid with a clock in the upper right
           hand corner." src="sample-datetime-ui-3"></li>
 -->
- </body></html>
+</body>
+</html>

Received on Friday, 5 October 2012 13:37:42 UTC