html5/spec-author-view/tools preprocess.xsl,1.73,1.74

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

Modified Files:
	preprocess.xsl 
Log Message:
Revamp how audioTracks and videoTracks work on HTMLMediaElement and MediaStream. (whatwg r6275)

[updated by splitter]


Index: preprocess.xsl
===================================================================
RCS file: /sources/public/html5/spec-author-view/tools/preprocess.xsl,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -d -r1.73 -r1.74
--- preprocess.xsl	1 Jul 2011 08:30:32 -0000	1.73
+++ preprocess.xsl	1 Jul 2011 09:14:48 -0000	1.74
@@ -434,6 +434,16 @@
       <a href="#the-menu-element">menu</a>
       elements.</p>
   </xsl:template>
+  <xsl:template match="a[@href = 'http://anubis.dkuug.dk/jtc1/sc2/open/02n3333.pdf']">
+    <span>
+      <xsl:apply-templates/>
+    </span>
+  </xsl:template>
+  <xsl:template match="a[@href = 'http://www.ifi.uzh.ch/mml/mduerst/papers/PDF/IUC11-UTF-8.pdf']">
+    <span>
+      <xsl:apply-templates/>
+    </span>
+  </xsl:template>
   <xsl:template match="a[@href='#hrefMEDIAFRAG']">
     <a>
       <xsl:copy-of select="@*"/>
@@ -449,21 +459,12 @@
     </a>
   </xsl:template>
   <xsl:template match="div[@class = 'impl']">
-    <xsl:for-each select="p[child::a[@href = '#reflect']]">
-      <xsl:text>&#10;</xsl:text>
-      <p>
-        <xsl:apply-templates/>
-      </p>
-      <xsl:text>&#10;</xsl:text>
-    </xsl:for-each>
-    <xsl:for-each select="p[child::dfn[@id = 'dom-a-protocol']]">
-      <xsl:text>&#10;</xsl:text>
-      <p>
-        <xsl:apply-templates/>
-      </p>
-      <xsl:text>&#10;</xsl:text>
-    </xsl:for-each>
-    <xsl:for-each select="p[child::dfn[@id = 'dom-area-protocol']]">
+    <xsl:for-each select="p[child::a[@href = '#reflect']]
+      | p[child::dfn[@id = 'dom-a-protocol']]
+      | p[child::dfn[@id = 'dom-area-protocol']]
+      | p[child::dfn[@id = 'dom-cva-validity']]
+      | p[child::dfn[starts-with(@id, 'dom-textarea-')]]
+      ">
       <xsl:text>&#10;</xsl:text>
       <p>
         <xsl:apply-templates/>

Received on Friday, 1 July 2011 09:14:51 UTC