Prep for 25 Sept 2014 WD. Add alt tags. Add missing </dl> tag
authorGary Kacmarcik <garykac@google.com>
Tue, 23 Sep 2014 18:31:56 -0700
changeset 673 506c8691f0ea
parent 672 7d98f8bd1933
child 674 71c6dbbb0de6
Prep for 25 Sept 2014 WD. Add alt tags. Add missing </dl> tag
html/DOM3-Events.html
html/fixup-static-export.py
--- a/html/DOM3-Events.html	Fri Jun 13 15:30:30 2014 -0700
+++ b/html/DOM3-Events.html	Tue Sep 23 18:31:56 2014 -0700
@@ -18,7 +18,7 @@
 	<script src="bug-assist.js"></script>
 	<script type="text/javascript">
 	var respecConfig = {
-		specStatus: "ED",
+		specStatus: "WD",
 		shortName:  "DOM-Level-3-Events",
 		editors: [
 			{
@@ -61,7 +61,7 @@
 				note: "until Jul 2002",
 			}
 		],
-		publishDate:  "2014-06-13",
+		publishDate:  "2014-09-25",
 		edDraftURI: "https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html",
 		previousPublishDate: "2013-11-05",
 		previousMaturity: "WD",
@@ -365,7 +365,7 @@
 				end of this section.</p>
 
 			<figure id="figure-dom-event-flow">
-				<img src='images/eventflow.svg' height="560" />
+				<img src='images/eventflow.svg' height="560" alt="Graphical representation of an event dispatched in a DOM tree using the DOM event flow"/>
 				<figcaption>Graphical representation of an event dispatched in a DOM tree using the DOM event flow</figcaption>
 			</figure>
 
@@ -824,7 +824,7 @@
 			</p>
 
 		<figure id="figure-event-inheritance">
-			<img src='images/event-inheritance.svg' height="230" />
+			<img src='images/event-inheritance.svg' height="230" alt="Graphical representation of the DOM3 Events interface inheritance" />
 			<figcaption>Graphical representation of the DOM3 Events interface inheritance</figcaption>
 		</figure>
 
@@ -2586,8 +2586,9 @@
 							when provided with the parameter <code class="key">'SymbolLock'</code> must 
 							return <code>true</code>.</p>
 					</dd>
-			</section> <!-- END dictionary SharedKeyboardAndMouseEventInit defs -->
-
+				</dl> <!-- END dictionary SharedKeyboardAndMouseEventInit defs -->
+			</section> <!-- shared-mouse-and-keyboard-initializers -->
+			
 			<section id="events-mouseevent-event-order">
 				<h4>Mouse Event Order</h4>
 
@@ -2779,7 +2780,7 @@
 					</p>
 
 				<figure id="figure-mouse-event-stacked-elements">
-					<img src='images/stacked-event-mouse-dispatch.svg' height="250" />
+					<img src='images/stacked-event-mouse-dispatch.svg' height="250" alt="Graphical representation of three stacked elements all on top of each other. The bottom element is labeled A and the top element is C" />
 					<figcaption>Graphical representation of three stacked elements all on top of each other, with the pointing device moving over the stack.</figcaption>
 				</figure>
 
--- a/html/fixup-static-export.py	Fri Jun 13 15:30:30 2014 -0700
+++ b/html/fixup-static-export.py	Tue Sep 23 18:31:56 2014 -0700
@@ -8,15 +8,19 @@
 	' data-bug-product="WebAppsWG" data-bug-component="DOM3 Events" typeof="bibo:Document w3p:WD" about="" property="dcterms:language" content="en" prefix="bibo: http://purl.org/ontology/bibo/ w3p: http://www.w3.org/2001/02pd/rec54#"',
 	' property="dcterms:title"',
 	' property="dcterms:issued" datatype="xsd:dateTime" content="2013-11-05T08:00:00.000Z"',
-	' rel="bibo:editor" inlist=""',
+ 	' property="dcterms:issued" datatype="xsd:dateTime" content="2014-09-25T07:00:00.000Z"',
+ 	' rel="bibo:editor" inlist=""',
 	' typeof="foaf:Person"',
 	' property="foaf:name"',
 	' content="Gary Kacmarcik"',
 	' content="Travis Leithead"',
 	' property="dcterms:abstract" datatype=""',
 	' typeof="bibo:Chapter" resource="#ref" rel="bibo:Chapter"',
+	' typeof="bibo:Chapter" resource="#abstract" rel="bibo:Chapter"',
+	' typeof="bibo:Chapter" resource="#sotd" rel="bibo:Chapter"',
 	' aria-label="False"',
 	' aria-label="True"',
+	' about=""',
 	# More bug-assist.js stuff to remove for WD.
 	'<script src="bug-assist.js" type="text/javascript"></script>',
 	'<form action="http://www.w3.org/Bugs/Public/enter_bug.cgi" target="_blank" style="position: fixed; padding: 5px; top: 1em; right: 2em; font-family: sans-serif; font-size: 0.8em; background-color: rgb\(255, 255, 255\); border: 1px solid rgb\(255, 0, 0\);">Select text and <input type="submit" accesskey="f" value="file a bug" style="display: block;" /><input type="hidden" name="comment" value="" /><input type="hidden" name="product" value="WebAppsWG" /><input type="hidden" name="component" value="DOM3 Events" /></form>',
@@ -147,7 +151,8 @@
 
 # Don't use acronym inside reference name.
 replacestr = [
-	['\[US-<acronym title="American Standard Code for Information Interchange">ASCII</acronym>\]', '[<a id="ref-US-ASCII">US-ASCII</a>]'],
+	['\[US-<acronym title="American Standard Code for Information Interchange">ASCII</acronym>\]', '[US-ASCII]'],
+	['id="idl-def-KeyboardEventInit">partial dictionary', 'id="idl-def-KeyboardEventInit-extra">partial dictionary'],
 ]
 
 def replace(line):