[ttml1] remove obsolete files
authorGlenn Adams <glenn@skynav.com>
Thu, 19 Sep 2013 18:25:04 -0600
changeset 559 679dfb82cb2c
parent 558 4da6996180df
child 560 5f2631d07a3e
[ttml1] remove obsolete files
ttml1/spec/ackcurrent.xml
ttml1/spec/acknowledgements-old.txt
ttml1/spec/ackold.xml
ttml1/spec/changelog.xml
ttml1/spec/changelog.xsl
ttml1/spec/diffmk.jar
ttml1/spec/diffspec.xsl
ttml1/spec/editlist.txt
ttml1/spec/entities.dtd
ttml1/spec/entitiescr.dtd
ttml1/spec/generate-acknowledgements.xsl
ttml1/spec/xmlspec-ttml1.xsl
--- a/ttml1/spec/changelog.xml	Thu Sep 19 18:06:33 2013 -0600
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<feed xmlns:h="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/2005/Atom">
-   <id>http://dev.w3.org</id>
-   <updated>-01-TZ</updated>
-   <title> CVS log</title>
-   <author>
-      <name>World Wide Web Consortium</name>
-      <uri>http://dev.w3.org</uri>
-   </author>
-   <link rel="alternate" type="text/html" href="http://dev.w3.org"/>
-   <link rel="self" href="http://dev.w3.org"/>
-   <rights>World Wide Web Consortium</rights>
-</feed>
\ No newline at end of file
--- a/ttml1/spec/changelog.xsl	Thu Sep 19 18:06:33 2013 -0600
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
-		xmlns:h="http://www.w3.org/1999/xhtml"
-		xmlns="http://www.w3.org/1999/xhtml"
-		xmlns:a="http://www.w3.org/2005/Atom">
-    <xsl:template match="a:entry">
-        <xsl:if test="a:author/a:name!='@@ADDNAME@@'">
-	  <tr>
-	    <td>
-	      <xsl:value-of select="substring-before(a:published, 'T')"/>
-	    </td>
-	    <td>
-	      <xsl:value-of select="a:author/a:name"/>
-	    </td>
-	    <td>
-	      <xsl:value-of select="a:content/h:div/h:pre"/>
-	    </td>
-	  </tr>
-	</xsl:if>
-    </xsl:template>
-    <xsl:template match="a:feed">
-        <table border="1">
-            <tr>
-                <th>Date</th>
-                <th>Editor</th>
-                <th>Description</th>
-            </tr>
-            <xsl:apply-templates select="a:entry">
-                <xsl:sort select="a:published" order="descending"/>
-            </xsl:apply-templates>
-        </table>
-    </xsl:template>
-</xsl:stylesheet>
Binary file ttml1/spec/diffmk.jar has changed
--- a/ttml1/spec/diffspec.xsl	Thu Sep 19 18:06:33 2013 -0600
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,373 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--This file was created automatically by html2xhtml-->
-<!--from the HTML stylesheets. Do not edit this file.-->
-<!-- Version: $Id$ --><!-- Stylesheet for @diff markup in XMLspec --><!-- Author: Norman Walsh (Norman.Walsh@East.Sun.COM) --><!-- Date Created: 2000.07.21 --><!-- This stylesheet is copyright (c) 2000 by its authors.  Free
-     distribution and modification is permitted, including adding to
-     the list of authors and copyright holders, as long as this
-     copyright notice is maintained. --><!-- This stylesheet attempts to implement the XML Specification V2.1
-     DTD.  Documents conforming to earlier DTDs may not be correctly
-     transformed.
-
-     This stylesheet supports the use of change-markup with the @diff
-     attribute. If you use @diff, you should always use this stylesheet.
-     If you want to turn off the highlighting of differences, use this
-     stylesheet, but set show.diff.markup to 0.
-
-     Using the original xmlspec stylesheet with @diff markup will cause
-     @diff=del text to be presented.
---><!-- ChangeLog:
-     25 Sep 2000: (Norman.Walsh@East.Sun.COM)
-       - Use inline diff markup (as opposed to block) for name and
-         affiliation
-       - Handle @diff='del' correctly in bibl and other list-contexts.
-     14 Aug 2000: (Norman.Walsh@East.Sun.COM)
-       - Support additional.title param
-     27 Jul 2000: (Norman.Walsh@East.Sun.COM)
-       - Fix HTML markup problem with diff'd authors in authlist
-     26 Jul 2000: (Norman.Walsh@East.Sun.COM)
-       - Update pointer to latest xmlspec-stylesheet.
-     21 Jul 2000: (Norman.Walsh@East.Sun.COM)
-       - Initial version
---><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
-
-<xsl:import href="xmlspec.xsl"/>
-
-<xsl:param name="show.diff.markup" select="1"/>
-
-<xsl:param name="additional.css">
-<xsl:if test="$show.diff.markup != '0'">
-<xsl:text>
-div.diff-add  { background-color: #FFFF99; }
-div.diff-del  { text-decoration: line-through; }
-div.diff-chg  { background-color: #99FF99; }
-div.diff-off  {  }
-
-span.diff-add { background-color: #FFFF99; }
-span.diff-del { text-decoration: line-through; }
-span.diff-chg { background-color: #99FF99; }
-span.diff-off {  }
-
-td.diff-add   { background-color: #FFFF99; }
-td.diff-del   { text-decoration: line-through }
-td.diff-chg   { background-color: #99FF99; }
-td.diff-off   {  }
-</xsl:text>
-</xsl:if>
-</xsl:param>
-
-<xsl:param name="additional.title">
-  <xsl:if test="$show.diff.markup != '0'">
-    <xsl:text>Review Version</xsl:text>
-  </xsl:if>
-</xsl:param>
-
-<xsl:param name="called.by.diffspec" select="1"/>
-
-<!-- ==================================================================== -->
-
-  <!-- spec: the specification itself -->
-  <xsl:template match="spec">
-    <html xmlns="http://www.w3.org/1999/xhtml">
-      <xsl:if test="header/langusage/language">
-        <xsl:attribute name="lang">
-          <xsl:value-of select="header/langusage/language/@id"/>
-        </xsl:attribute>
-      </xsl:if>
-      <head>
-	
-        <title>
-          <xsl:apply-templates select="header/title"/>
-          <xsl:if test="header/version">
-            <xsl:text> </xsl:text>
-            <xsl:apply-templates select="header/version"/>
-          </xsl:if>
-          <xsl:if test="$additional.title != ''">
-            <xsl:text> -- </xsl:text>
-            <xsl:value-of select="$additional.title"/>
-	  </xsl:if>
-        </title>
-        <xsl:call-template name="css"/>
-      </head>
-      <body>
-        <xsl:if test="$show.diff.markup != 0">
-          <div>
-            <p>The presentation of this document has been augmented to
-            identify changes from a previous version. Three kinds of changes
-            are highlighted: <span class="diff-add">new, added text</span>,
-            <span class="diff-chg">changed text</span>, and
-            <span class="diff-del">deleted text</span>.</p>
-            <hr/>
-          </div>
-        </xsl:if>
-        <xsl:apply-templates/>
-        <xsl:if test="//footnote[not(ancestor::table)]">
-          <hr/>
-          <div class="endnotes">
-            <xsl:text>
-</xsl:text>
-            <h3>
-              <xsl:call-template name="anchor">
-                <xsl:with-param name="conditional" select="0"/>
-                <xsl:with-param name="default.id" select="'endnotes'"/>
-              </xsl:call-template>
-              <xsl:text>End Notes</xsl:text>
-            </h3>
-            <dl>
-              <xsl:apply-templates select="//footnote[not(ancestor::table)]" mode="notes"/>
-            </dl>
-          </div>
-        </xsl:if>
-      </body>
-    </html>
-  </xsl:template>
-
-<!-- ==================================================================== -->
-
-<xsl:template name="diff-markup">
-  <xsl:param name="diff">off</xsl:param>
-  <xsl:choose>
-    <xsl:when test="ancestor::scrap">
-      <!-- forget it, we can't add stuff inside tables -->
-      <!-- handled in base stylesheet -->
-      <xsl:apply-imports/>
-    </xsl:when>
-    <xsl:when test="self::gitem or self::bibl">
-      <!-- forget it, we can't add stuff inside dls; handled below -->
-      <xsl:apply-imports/>
-    </xsl:when>
-    <xsl:when test="ancestor-or-self::phrase">
-      <span xmlns="http://www.w3.org/1999/xhtml" class="diff-{$diff}">
-	<xsl:apply-imports/>
-      </span>
-    </xsl:when>
-    <xsl:when test="ancestor::p and not(self::p)">
-      <span xmlns="http://www.w3.org/1999/xhtml" class="diff-{$diff}">
-	<xsl:apply-imports/>
-      </span>
-    </xsl:when>
-    <xsl:when test="ancestor-or-self::affiliation">
-      <span xmlns="http://www.w3.org/1999/xhtml" class="diff-{$diff}">
-	<xsl:apply-imports/>
-      </span>
-    </xsl:when>
-    <xsl:when test="ancestor-or-self::name">
-      <span xmlns="http://www.w3.org/1999/xhtml" class="diff-{$diff}">
-	<xsl:apply-imports/>
-      </span>
-    </xsl:when>
-    <xsl:otherwise>
-      <div xmlns="http://www.w3.org/1999/xhtml" class="diff-{$diff}">
-	<xsl:apply-imports/>
-      </div>
-    </xsl:otherwise>
-  </xsl:choose>
-</xsl:template>
-
-<xsl:template match="*[@diff='chg']">
-  <xsl:choose>
-    <xsl:when test="$show.diff.markup != 0">
-      <xsl:call-template name="diff-markup">
-	<xsl:with-param name="diff">chg</xsl:with-param>
-      </xsl:call-template>
-    </xsl:when>
-    <xsl:otherwise>
-      <xsl:apply-imports/>
-    </xsl:otherwise>
-  </xsl:choose>
-</xsl:template>
-
-<xsl:template match="*[@diff='add']">
-  <xsl:choose>
-    <xsl:when test="$show.diff.markup != 0">
-      <xsl:call-template name="diff-markup">
-	<xsl:with-param name="diff">add</xsl:with-param>
-      </xsl:call-template>
-    </xsl:when>
-    <xsl:otherwise>
-      <xsl:apply-imports/>
-    </xsl:otherwise>
-  </xsl:choose>
-</xsl:template>
-
-<xsl:template match="*[@diff='del']">
-  <xsl:choose>
-    <xsl:when test="$show.diff.markup != 0">
-      <xsl:call-template name="diff-markup">
-	<xsl:with-param name="diff">del</xsl:with-param>
-      </xsl:call-template>
-    </xsl:when>
-    <xsl:otherwise>
-      <!-- suppress deleted markup -->
-    </xsl:otherwise>
-  </xsl:choose>
-</xsl:template>
-
-<xsl:template match="*[@diff='off']">
-  <xsl:choose>
-    <xsl:when test="$show.diff.markup != 0">
-      <xsl:call-template name="diff-markup">
-	<xsl:with-param name="diff">off</xsl:with-param>
-      </xsl:call-template>
-    </xsl:when>
-    <xsl:otherwise>
-      <xsl:apply-imports/>
-    </xsl:otherwise>
-  </xsl:choose>
-</xsl:template>
-
-<!-- ================================================================= -->
-
-  <xsl:template match="bibl[@diff]" priority="1">
-    <xsl:variable name="dt">
-      <xsl:if test="@id">
-	<a xmlns="http://www.w3.org/1999/xhtml" name="{@id}"/>
-      </xsl:if>
-      <xsl:choose>
-	<xsl:when test="@key">
-	  <xsl:value-of select="@key"/>
-	</xsl:when>
-	<xsl:otherwise>
-	  <xsl:value-of select="@id"/>
-	</xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <xsl:variable name="dd">
-      <xsl:apply-templates/>
-      <xsl:if test="@href">
-        <xsl:text>  (See </xsl:text>
-        <xsl:value-of select="@href"/>
-        <xsl:text>.)</xsl:text>
-      </xsl:if>
-    </xsl:variable>
-
-    <xsl:choose>
-      <xsl:when test="@diff and $show.diff.markup != 0">
-	<dt xmlns="http://www.w3.org/1999/xhtml" class="label">
-	  <span class="diff-{@diff}">
-	    <xsl:copy-of select="$dt"/>
-	  </span>
-	</dt>
-	<dd xmlns="http://www.w3.org/1999/xhtml">
-	  <div class="diff-{@diff}">
-	    <xsl:copy-of select="$dd"/>
-	  </div>
-	</dd>
-      </xsl:when>
-      <xsl:when test="@diff='del' and $show.diff.markup = 0">
-	<!-- suppressed -->
-      </xsl:when>
-      <xsl:otherwise>
-	<dt xmlns="http://www.w3.org/1999/xhtml" class="label">
-	  <xsl:copy-of select="$dt"/>
-	</dt>
-	<dd xmlns="http://www.w3.org/1999/xhtml">
-	  <xsl:copy-of select="$dd"/>
-	</dd>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-
-  <xsl:template match="gitem/label">
-    <xsl:variable name="diffval" select="ancestor-or-self::*/@diff"/>
-    <xsl:choose>
-      <xsl:when test="$diffval != '' and $show.diff.markup != 0">
-	<dt xmlns="http://www.w3.org/1999/xhtml" class="label">
-	  <span class="diff-{ancestor-or-self::*/@diff}">
-	    <xsl:apply-templates/>
-	  </span>
-	</dt>
-      </xsl:when>
-      <xsl:when test="$diffval='del' and $show.diff.markup = 0">
-	<!-- suppressed -->
-      </xsl:when>
-      <xsl:otherwise>
-	<dt xmlns="http://www.w3.org/1999/xhtml" class="label">
-	  <xsl:apply-templates/>
-	</dt>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-
-  <xsl:template match="gitem/def">
-    <xsl:variable name="diffval" select="ancestor-or-self::*/@diff"/>
-    <xsl:choose>
-      <xsl:when test="$diffval != '' and $show.diff.markup != 0">
-	<dd xmlns="http://www.w3.org/1999/xhtml">
-	  <div class="diff-{ancestor-or-self::*/@diff}">
-	    <xsl:apply-templates/>
-	  </div>
-	</dd>
-      </xsl:when>
-      <xsl:when test="$diffval='del' and $show.diff.markup = 0">
-	<!-- suppressed -->
-      </xsl:when>
-      <xsl:otherwise>
-	<dd xmlns="http://www.w3.org/1999/xhtml">
-	  <xsl:apply-templates/>
-	</dd>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-
-  <!-- authlist: list of authors (editors, really) -->
-  <!-- called in enforced order from header's template, in <dl>
-       context -->
-  <xsl:template match="authlist[@diff]">
-    <xsl:choose>
-      <xsl:when test="$show.diff.markup != 0">
-	<dt xmlns="http://www.w3.org/1999/xhtml">
-	  <span class="diff-{ancestor-or-self::*/@diff}">
-	    <xsl:text>Editor</xsl:text>
-	    <xsl:if test="count(author) &gt; 1">
-	      <xsl:text>s</xsl:text>
-	    </xsl:if>
-	    <xsl:text>:</xsl:text>
-	  </span>
-	</dt>
-      </xsl:when>
-      <xsl:when test="@diff='del' and $show.diff.markup = 0">
-	<!-- suppressed -->
-      </xsl:when>
-      <xsl:otherwise>
-	<dt xmlns="http://www.w3.org/1999/xhtml">
-	  <xsl:text>Editor</xsl:text>
-	  <xsl:if test="count(author) &gt; 1">
-	    <xsl:text>s</xsl:text>
-	  </xsl:if>
-	  <xsl:text>:</xsl:text>
-	</dt>
-      </xsl:otherwise>
-    </xsl:choose>
-    <xsl:apply-templates/>
-  </xsl:template>
-
-  <!-- author: an editor of a spec -->
-  <!-- only appears in authlist -->
-  <!-- called in <dl> context -->
-  <xsl:template match="author[@diff]" priority="1">
-    <xsl:choose>
-      <xsl:when test="@diff and $show.diff.markup != 0">
-	<dd xmlns="http://www.w3.org/1999/xhtml">
-	  <span class="diff-{ancestor-or-self::*/@diff}">
-	    <xsl:apply-templates/>
-	    <xsl:if test="@role = '2e'">
-	      <xsl:text> - Second Edition</xsl:text>
-	    </xsl:if>
-	  </span>
-	</dd>
-      </xsl:when>
-      <xsl:when test="@diff='del' and $show.diff.markup = 0">
-	<!-- suppressed -->
-      </xsl:when>
-      <xsl:otherwise>
-	<dd xmlns="http://www.w3.org/1999/xhtml">
-	  <xsl:apply-templates/>
-	  <xsl:if test="@role = '2e'">
-	    <xsl:text> - Second Edition</xsl:text>
-	  </xsl:if>
-	</dd>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-
-</xsl:stylesheet>
--- a/ttml1/spec/editlist.txt	Thu Sep 19 18:06:33 2013 -0600
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,125 +0,0 @@
-********************************************************************************
-*                                  EDIT LIST                                   *
-********************************************************************************
-
-ALREADY IMPLEMENTED
-
-[GA-A-024-20081214] 7.1.{4,6}   correct prose to accommodate nested divs and spans
-[GA-A-026-20090130] *           define default region
-[GA-A-027-20081214] 9.3.2 (7)   map anonymous spans to fo:inline only when parent is p or span
-[GA-A-028-20090130] *           move tts:extent from body to tt element
-[GA-A-029-20090130] *           fix inconsistency regarding time containment semantics
-[GA-A-030-20090130] 10.2        clarify semantics for dur and end
-[GA-A-032-20090130] 9.1.2       add ttm:role to region element
-[GA-A-033-20090415] *           unify and better formalize style resolution process
-[GA-A-034-20090427] 8.2.7       add "rollUp" shorthand value to tts:dynamicFlow
-[GA-A-035-20090504] 3.2         subdivide into transformation and presentation conformance
-[GA-A-036-20090504] C           update schemas
-[GA-I-008-20090415] 12.2.2      add "description" value to ttm:role enumeration
-[GA-I-009-20090504] 11,12       add examples to metadata and animation element vocabulary
-[GA-I-012-20090130] *           define default region
-[GA-I-015-20090415] *           change XML and XML Namespace references
-[GA-I-016-20081214] 10.2.*      fix incorrect reference to smil2 section (should be 10.4.1)
-[GA-I-017-20081214] 8.3.4       correct definition of <duration> syntax to <digit>+
-[GA-I-027-20081214] 8.2.20      correct names of textDecoration values (lineThrough)
-[GA-I-028-20090130] 8.2.13      elaborate prose to accommodate nested spans
-[GA-I-032-20090415] 8.4.3       style chaining an left preference
-[GA-I-033-20090415] 8.3.{5,14}  allow unquoted font family name that contains whitespace
-[GA-I-034-20090130] 9.3         elaborate processing of anonymous spans
-[GA-I-035-20090415] 8.3.1       opacity float value
-[GA-I-036-20090130] 8.2         inheritance by anonymous spans
-[GA-I-037-20081214] 9.3.2 (7)   map anonymous spans to fo:inline only when parent is p or span
-[GA-I-040-20090415] *           unify and better formalize style resolution process
-[GA-I-041-20090415] 7.1.3       change body to parallel time containment as default
-[GA-I-042-20090130] 9.3         processing in absence of region attribute
-[GA-I-043-20090415] 9.3.2       correct content hierarchy region mapping example code
-[GA-I-044-20081214] B.4         change typo "withing" to "within"
-[GA-I-045-20081214] 8.2.24      remove extra '"' at end of last line of wrap option example
-[GA-I-046-20081214] 8.2.23      missing inheritance and percentage constraints
-[GA-I-048-20090130] *           specify requiredExtensions and requiredFeatures
-[GA-I-050-20090130] *           improve consistency of style association prose on content elts
-[GA-I-051-20090130] 8.2.5       allow tts:display to apply to region element
-[GA-I-052-20090130] 8.3         fix order and missing entry in list of style value expressions
-[GA-I-054-20090427] 8.{2,4}     remove explicit inheritance
-[GA-I-055-20090427] 8.2.{20,21} make textDecoration and textOutline inheritable
-[GA-I-056-20090504] 8.2.20      fix indentation of tts:textDecoration example
-[GA-I-059-20090427] 8.2.*       make all style properties animatable
-[GA-I-060-20090504] 5.2,6.1     enhance profile specification mechanism
-[GA-I-061-20090427] B.3.{1,2}   correct flow interval computation with definite rate
-[GA-I-062-20090427] B.2         clarify meaning of "difference" in contents of flow buffer
-[GA-I-063-20090427] B.2         clarify meaning of "logical content position"
-[GA-I-064-20090427] B.5         clarify timeline used for dynamic flow
-[GA-I-065-20090427] 8.2.7,B     account for side effects of animation
-[GA-I-066-20090427] B.2         clarify assumptions regarding flow buffer state persistence
-[GA-I-067-20090427] B.2         clarify handling of temporal style changes w.r.t. flow buffer
-[GA-I-068-20090504] 9.3.3       ensure last block of body's block is filled out to region
-[GA-I-069-20090504] 8.2.8       mandate explicit lengths for tts:extent on tt:tt element
-[GA-I-070-20090504] 8.2.16      clarify "region's width and height were infinite"
-[GA-I-073-20090427] 1.2         remove superfluous text
-[GA-I-075-20090504] 5.2         clarify use of optional feature/extension
-[GA-I-076-20090427] 8.2.13      fix typo
-[GA-I-077-20090427] 8.2.*       add missing prose regarding anonymous spans
-[GA-I-078-20090427] 8.3.14      remove spurious reference to whitespace S syntactic element
-[GA-I-079-20090427] G           update XSL reference to XSL 1.1
-[GA-I-080-20090504] I           remove sample code appendix
-[GA-I-081-20090427] 8.3.6,B     remove 'pixel' flow unit and flow transitions
-[GA-I-082-20090427] 8.2.{13,16} change 'scroll' value to 'dynamic' for tts:overflow
-[GA-I-083-20090427] B.4         clarify flow operations prose logical vs formatted units
-[GA-I-084-20090427] 8.3.6       specify semantics if smooth or fade flow style not supported
-[GA-I-085-20090504] 6.2.4       ttp:frameRateMultiplier - missing default for denominator
-[GA-I-086-20090504] 8.3.6,B     tts:dynamicFlow - remove fade, within()
-[GA-I-087-20090504] 5.1         change TT style namespace value to #styling instead of #style
-[GA-I-088-20090504] *           remove editorial notes
-[GA-I-089-20090504] 12.2.2      ttm:role - allow multiple tokens
-[GA-I-090-20090504] 8.2.14      improve opacity semantics
-[GA-I-091-20090504] 8.2.*       implement style defaults
-[GA-I-092-20090529] 6.1.{2,4}   change base to xml:base
-[GA-I-093-20090529] 6.1.{2,4}   change base to xml:base
-[GA-I-094-20090529] 5.1,I       specify that TT namespaces are mutable
-[GA-I-096-20090529] G.3         create DFXP "Full" profile, requiring all features
-[GA-I-097-20090529] 12.1.1      fix metadata content model
-[GA-I-098-20090529] B           eliminate or clarify clear timing
-[GA-I-099-20090529] B           clarify semantics of blocked fill operation
-[GA-I-100-20090529] 8.3.6,B     remove block and inline fill units
-[GA-I-101-20090529] 8.2.7,I     add note justifying rollUp interval
-[GA-I-102-20090529] 8.[23].7,B  change names of intra() and inter() flow interval functions
-[GA-I-103-20090529] 8.2.7       proscribe multiple instances of same flow function
-[GA-I-104-20090529] B.{2,3}     clarify flow buffer language
-[GA-I-105-20090529] 8.2.16,B.4  clarify interaction between dynamic flow and wrap property
-[GA-I-106-20090529] 9.4,E       clarify line breaking, add line breaking feature designator
-[GA-I-108-20090529] G.1         remove redundant transformation requirement in transform profile
-[GA-I-110-20090529] 7.1.2       explicitly allow foreign attributes on head element
-[GA-I-111-20090529] 12.1.1      fix note regarding context of usage of metadata items
-[GA-I-112-20090529] 5.3.2       remove style, metadata, and parameter extension namespaces
-[GA-I-113-20090529] 3,E         remove circularity in definition of processor conformance
-[GA-I-114-20090529] E.2,G.2     reduce presentation profile requirements
-[GA-I-115-20090529] E.2,G.1     expand transformation profile requirements
-[GA-I-116-20090529] 5.2,6.{1,2} aggregate certain ttp:profile related text into one place
-[GA-I-117-20090529] 5.2,6.1     add 'use' value to ttp:{feature,extension} value attribute
-[GA-I-118-20090530] 9.3.2       clarify region association algorithm
-[GA-I-119-20090720] C.1         change #style to #styling, remove #*-extension NS in RNC schema
-[GA-I-120-20090720] C.1         add missing direction and unicodeBidi styles in RNC schema
-[GA-I-121-20090720] C.1         fix RNC schema problem with regard to ttm:agent
-[GA-I-122-20090720] 6.2.6       ttp:pixelAspectRatio - eliminate ':' separator
-[GA-I-122-20090720] 6.2.4       ttp:frameRateMultiplier - eliminate ':' separator
-[GA-I-123-20090720] 6.2.4       ttp:frameRateMultiplier - constrain numerator to non-zero
-[GA-I-125-20090720] 8.2.6       tts:displayAlign - remove inheritance
-[GA-I-126-20090720] 8.3.7       tts:dynamicFlow - needs flow style duration parameter
-[GA-I-128-20090720] B.5         tts:dynamicFlow - fix typos
-[GA-I-131-20090720] 5.1,6.1     profile, feature, and extension namespaces need trailing '/'
-[GA-I-132-20090720] *           miscellaneous typos
-[GA-I-133-20090720] 8.2.14      improve language regarding 'transparency'
-[GA-I-134-20090720] 8.2.15      reorder constraints on root container origin
-[GA-I-135-20090720] 10.2.3      add note regarding presence of both 'dur' and 'end' attributes
-[GA-I-136-20090720] 8.2.10      add note upon first use of 'c' length metric
-[GA-I-137-20090720] 12.1.1      tt:metadata - add example of foreign namespace element usage
-[GA-I-140-20090720] 10.2.3      @dur - add note on meaning of clock-time expressions
-[GA-I-141-20090720] 6.2.5,10.2.3 @dur - constrain usage with discontinuous marker mode
-[GA-I-142-20090720] *           change name of ttp:smpteMode to ttp:dropMode
-[GA-I-145-20090720] 4.1         elaborate note about potential false negative using RNC schema
-[GA-I-146-20090720] 8.2.7       tts:dynamicFlow - prohibit instances of same <flowFunction>
-[GA-I-127-20090905] 8.3.7,B     add 'break' flow interval argument
-[GA-I-129-20090905] 8.2.7       use 'break' flow interval argument in tts:dynamicFlow example
-[GA-I-130-20090905] E,G         add, rename feature designations
-[GA-I-147-20090905] 6.2.11      clarify 'media time' when using clock timebase
-[GA-I-148-20090905] 10.4        clarify 'offset based time' when using media or continuous smpte timebase
--- a/ttml1/spec/entities.dtd	Thu Sep 19 18:06:33 2013 -0600
+++ b/ttml1/spec/entities.dtd	Thu Sep 19 18:25:04 2013 -0600
@@ -21,7 +21,6 @@
 
 <!ENTITY acknowledgements SYSTEM "acknowledgements.xml" >
 <!ENTITY acknowledgements-current SYSTEM "acknowledgements-current.txt" >
-<!ENTITY acknowledgements-old SYSTEM "acknowledgements-old.txt" >
 
 <!-- Misc entities. Feel free to add more -->
 
--- a/ttml1/spec/entitiescr.dtd	Thu Sep 19 18:06:33 2013 -0600
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-<?xml version='1.0' encoding='ISO-8859-1' ?>
-
-<!--
-  Date parameters
-  -->
-<!ENTITY draft.year "2010">
-<!ENTITY draft.month "February">
-<!ENTITY draft.mm "02">
-<!ENTITY draft.day "23">
-<!ENTITY draft.dd "23">
-
-<!ENTITY draft.date "&draft.year;&draft.mm;&draft.dd;">
-
-<!ENTITY prefix "ttaf1-dfxp">
-
-<!ENTITY w3c.tr.latest  "http://www.w3.org/TR">	
-
-<!-- Latest version links. don't touch -->
-<!ENTITY latest "&w3c.tr.latest;/&prefix;/">
-
-<!ENTITY w3c.tr  "&w3c.tr.latest;/&draft.year;">	
-
-<!ENTITY document.role "public">
-
-<!-- The following is used for document .-->
-<!ENTITY document.status "W3C Candidate Recommendation">
-<!ENTITY w3c.status "CR">
-<!ENTITY doctype "cr">
-
-<!ENTITY w3c-designation
-  "&w3c.tr.latest;/&draft.year;/&w3c.status;-&prefix;-&draft.date;/">
--- a/ttml1/spec/generate-acknowledgements.xsl	Thu Sep 19 18:06:33 2013 -0600
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-  xmlns:html="http://www.w3.org/1999/xhtml"
-  exclude-result-prefixes="html"
-  version="1.0">
-
-  <xsl:output
-    method="text"
-    indent="yes"
-    encoding="utf-8"
-    />
-
-  <xsl:param name="participating" />
-
-  <xsl:template match="/">
-    <xsl:call-template name="list-participants">
-      <xsl:with-param name="participating" select="$participating"/>
-    </xsl:call-template>
-  </xsl:template>
-
-  <xsl:template match="html:tr">
-      <xsl:value-of select="html:th[@class='name']/html:a"/>
-      <xsl:text> (</xsl:text>
-      <xsl:value-of select="html:td[@class='orgname']"/>
-      <xsl:text>)</xsl:text>
-  </xsl:template>
-
-  <xsl:template name="list-participants">
-    <xsl:param name="participating"/>
-    <xsl:variable name="status">
-      <xsl:choose>
-	<xsl:when test="$participating = 1">
-	  <xsl:text>good standing</xsl:text>
-	</xsl:when>
-	<xsl:otherwise>
-	  <xsl:text>no longer participating</xsl:text>	  
-	</xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <xsl:for-each select="//html:dl[contains(@class, 'group-member')
-			  and contains(normalize-space(html:dd[@class='status']), $status)]">
-      <xsl:value-of select="html:dt[@class='foaf-name']"/>
-      <xsl:if test="$participating = 1"><xsl:text> (</xsl:text>
-      <xsl:value-of select="html:dd[@class='orgname']"/>
-      <xsl:text>)</xsl:text></xsl:if>
-      <xsl:if test="position()!=last()">
-	<xsl:text>, </xsl:text>
-      </xsl:if>
-      <xsl:if test="position()=last()">
-	<xsl:text>.</xsl:text>
-      </xsl:if>
-    </xsl:for-each>
-  </xsl:template>
-
-</xsl:stylesheet>
--- a/ttml1/spec/xmlspec-ttml1.xsl	Thu Sep 19 18:06:33 2013 -0600
+++ b/ttml1/spec/xmlspec-ttml1.xsl	Thu Sep 19 18:25:04 2013 -0600
@@ -1,7 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
 <xsl:import href="xmlspec.xsl"/>
-<xsl:import href="changelog.xsl"/>
 <xsl:param name="toc.level" select="5"/>
 <xsl:param name="show.ednotes">1</xsl:param>
 <!-- [GA] remove 2013-05-09