Parameter checking stylesheet + py file
authorDave Pawson <davep@dpawson.co.uk>
Thu, 26 Jul 2007 08:21:53 +0000 (08:21 +0000)
committerDave Pawson <davep@dpawson.co.uk>
Thu, 26 Jul 2007 08:21:53 +0000 (08:21 +0000)
contrib/tools/pawson/checkparams.xsl [new file with mode: 0644]
contrib/tools/pawson/dirlist.py [new file with mode: 0755]
contrib/tools/pawson/params.xml [new file with mode: 0644]

diff --git a/contrib/tools/pawson/checkparams.xsl b/contrib/tools/pawson/checkparams.xsl
new file mode 100644 (file)
index 0000000..77a45df
--- /dev/null
@@ -0,0 +1,140 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xsl:stylesheet 
+  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+  xmlns:dp="http://www.dpawson.co.uk/ns#"
+  xmlns:xs="http://www.w3.org/2001/XMLSchema-datatypes"
+  xmlns:db="http://docbook.org/ns/docbook"
+          xmlns:xlink="http://www.w3.org/1999/xlink"
+          xmlns:xi="http://www.w3.org/2001/XInclude"
+          xmlns:src="http://nwalsh.com/xmlns/litprog/fragment"
+  version="2.0">
+
+
+
+<d:doc xmlns:d="rnib.org.uk/tbs#">
+ <revhistory>
+   <purpose><para>Validate the contents of a parameter files, via list of files which is the input instance.</para></purpose>
+   <revision>
+    <revnumber>1.0</revnumber>
+    <date>2007-07-17T11:19:47Z</date>
+    <authorinitials>DaveP</authorinitials>
+    <revdescription>
+     <para></para>
+    </revdescription>
+    <revremark></revremark>
+   </revision>
+   <revision>
+    <revnumber>1.1</revnumber>
+    <date>2007-07-26T08:16:12Z</date>
+    <authorinitials>DaveP</authorinitials>
+    <revdescription>
+     <para>Amended to work with directory listing from dirlist.py</para>
+    </revdescription>
+    <revremark></revremark>
+   </revision>
+
+
+
+  </revhistory>
+  </d:doc>
+  
+
+  <xsl:output method="text" indent="yes" encoding="utf-8"/>
+
+  <xsl:template match="/">
+    <xsl:variable name="path" select="concat(directory/@name,'/')"/>
+    <xsl:for-each select="directory/file/@name">
+      <!--     <xsl:message>
+        <xsl:value-of select="concat($path,.)"/>
+      </xsl:message>
+-->
+      <xsl:apply-templates select="document(concat($path,.))/db:refentry"/>
+    </xsl:for-each>
+        
+  </xsl:template>
+
+
+  <xsl:template match="db:refentry">
+    <xsl:apply-templates/>
+  </xsl:template>
+
+  <xsl:template match="db:refnamediv">
+    <xsl:choose>
+      <xsl:when test="db:refname =/db:refentry/@xml:id" />
+      <xsl:otherwise>
+        refnamediv id = <xsl:value-of select="db:refname"/>
+        refentry/@xml:id = <xsl:value-of select="/db:refentry/@xml:id"/>
+      </xsl:otherwise>
+    </xsl:choose>
+  </xsl:template>
+
+
+
+
+  <xsl:template match="src:fragment">
+     <xsl:choose>
+      <xsl:when test="contains(@xml:id, /db:refentry/@xml:id)"/>
+      <xsl:otherwise>
+        <xsl:message>
+-------------------
+<xsl:text>File </xsl:text>  <xsl:value-of select="base-uri()"/>       
+<xsl:text>
+refentry id, </xsl:text><xsl:value-of select="/db:refentry/@xml:id"/>
+        <xsl:if test="string(@xml:id)">
+src:fragment/@xml:id <xsl:value-of select="@xml:id"/>   
+        </xsl:if>
+        </xsl:message>
+      </xsl:otherwise>
+    </xsl:choose>
+
+    <xsl:if test="not(contains(@xml:id, '.frag')) ">
+      <xsl:message>
+        <xsl:text>
+          refentry id, </xsl:text>'<xsl:value-of select="/db:refentry/@xml:id"/>'
+        <xsl:if test="string(@xml:id)">
+          <xsl:text>  src:fragment/@xml:id '</xsl:text><xsl:value-of select="@xml:id"/>'  
+          Missing .frag extension
+        </xsl:if>
+      </xsl:message>
+    </xsl:if>
+
+
+    <xsl:apply-templates/>
+  </xsl:template>
+
+
+  <xsl:template match="xsl:param">
+    <xsl:choose>
+      <xsl:when test="@select= '1' or 
+                      @select='0' or 
+                      (not(@select)) or 
+                      contains(@select, 'concat') or
+                      contains(@select, '$') or
+                      contains(@select, ';')"/>
+      <xsl:otherwise>
+        <xsl:message>
+<xsl:text>File </xsl:text>  <xsl:value-of select="base-uri()"/>    
+<xsl:text>
+        xsl:param, </xsl:text> [<xsl:value-of select="@select"/>]
+        </xsl:message>      
+  
+      </xsl:otherwise>
+
+    </xsl:choose>
+
+
+  </xsl:template>
+
+
+  <!--
+  <xsl:template match="*">
+  <xsl:message>
+    *****<xsl:value-of select="name(..)"/>/{<xsl:value-of select="namespace-uri()"/>}<xsl:value-of select="name()"/>******
+    </xsl:message>
+</xsl:template>
+-->
+
+
+</xsl:stylesheet>
diff --git a/contrib/tools/pawson/dirlist.py b/contrib/tools/pawson/dirlist.py
new file mode 100755 (executable)
index 0000000..6fd62ed
--- /dev/null
@@ -0,0 +1,258 @@
+#dirlist.py,  Dave Pawson; Help from Uche Ogbuji\r
+#Write a disk directory out in XML format.\r
+#\r
+# Update:9 May 05. 1.1  Re-worked for Linux using 4Suite.\r
+#       : Added datetime and size\r
+# Update: 17 May 05 1.2\r
+#         Rev 1.1\r
+#       : Corrected getops processing\r
+#       : Todo. work out what to do with messages for pipelining.\r
+#       : A clean solution would omit this.\r
+# Update:22 May 05\r
+# Cleaned up size conversion, added /? for win32 users.\r
+# \r
+# Update: 23 May 05\r
+#       : Uche mentioned PEP 8! Duly updated. Is that a pep talk?\r
+#\r
+#\r
+#\r
+# Update: 15 June 05\r
+#       : Directory names, on win32 showing up as C:\dir\dir\r
+#       : Changed to work as url's\r
+#       : C:/dir/dir  (OK with file:/)\r
+#       : Additional parameter, -n  to stop recursion beyond\r
+#                            top directory\r
+#       : Files filtered by global string constant... Should it be a param?\r
+#       : defaults to all nnn.xml files, where n is an integer\r
+# Update: 25 June 05\r
+#       : Removed bug. Filtering on pattern did not wrap enough code.\r
+# Copyright Dave Pawson, Uche Ogbuji 2005\r
+# This program is free software; you can redistribute it and/or modify\r
+# it under the terms of the GNU General Public License as published by\r
+# the Free Software Foundation; either version 2 of the License, or\r
+# (at your option) any later version.\r
+\r
+# This program is distributed in the hope that it will be useful,\r
+# but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+# GNU General Public License for more details.\r
+\r
+# You should have received a copy of the GNU General Public License\r
+# along with this program; if not, write to the Free Software\r
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r
+\r
+from  shutil import copy2\r
+import sys\r
+import getopt\r
+import os.path\r
+import re\r
+import time\r
+from xml.dom.ext.reader import Sax2\r
+from xml import xpath\r
+from stat import *\r
+import md5\r
+from Ft.Xml import MarkupWriter # Download from\r
+#http://sourceforge.net/project/showfiles.php?group_id=39954&package_id=41020&release_id=320824\r
+\r
+#\r
+#\r
+#\r
+version = "1.4"\r
+date = "2005-06-26T14:19:16Z"\r
+prog = "dirlist"\r
+\r
+filePattern ="[a-z.]+\.xml$"\r
+\r
+#debug=7\r
+#\r
+#recurse through the path, writing directory and filenames\r
+#if date=true, add date attribute\r
+#if size=true, add size attribute\r
+#\r
+def recurse_dir(path, writer, date, size, md5op,recurs):\r
+    for cdir, subdirs, files in os.walk(path):\r
+        writer.startElement(u'directory',\r
+                            attributes={u'name': unicode(cdir)})\r
+        patt=re.compile(filePattern) # only look for requisite files\r
+        for f in files:\r
+            if (patt.match(f)):\r
+                accessedTime = formatTime(os.stat(os.path.join(cdir,f))[ST_MTIME])\r
+                sz = formatSize(os.stat(os.path.join(cdir,f))[ST_SIZE])\r
+                md5 = md5sum(os.path.join(cdir,f))\r
+                writer.startElement(u'file',attributes={u'name': unicode(f)})\r
+                \r
+                if (date):\r
+                    writer.attribute(u'date', unicode(accessedTime))\r
+                if (size):\r
+                    writer.attribute(u'sz', unicode(sz))\r
+                if (md5op):\r
+                    writer.attribute(u'md5',unicode(md5))\r
+                writer.endElement(u'file')\r
+        if (recurs):\r
+            for subdir in subdirs: recurse_dir(os.path.join(cdir, subdir),\r
+                                           writer,date,size,md5op,recurs)\r
+        writer.endElement(u'directory')\r
+        break\r
+\r
+\r
+#\r
+#Convert Time to local time\r
+#print datetime.datetime(2004,5,5).strftime('%x')\r
+def formatTime(tics):\r
+    import datetime\r
+    # Converting Epoch Seconds to DMYHMS\r
+    t = datetime.datetime.fromtimestamp(tics)\r
+    # print t.strftime('%Y-%m-%d')\r
+    return t.strftime('%Y-%m-%d')\r
+\r
+\r
+#\r
+# Convert size to kB or Mb.\r
+# Omit the L from the size, for readability.\r
+#\r
+def formatSize(b):\r
+    if (b < 1024):\r
+        return repr(b)[:-1]+"b"\r
+    if (b < (1024 * 1024)):\r
+        return repr(b / 1024)[:-1]+"Kb"\r
+    else:\r
+        return repr(b / (1024*1024))+"Mb"\r
+\r
+\r
+#\r
+#Calculate the md5sum for given file\r
+#\r
+def md5sum(fname):\r
+    myfile = open(fname)\r
+    m = md5.new()\r
+    md5sums = 0\r
+    for aline in myfile.readlines():\r
+        m.update(aline)\r
+        myfile.close()\r
+    return m.hexdigest()\r
+\r
+\r
+\r
+#\r
+#Return the id value from a given xml file, or null string if not found\r
+#\r
+#\r
+\r
+def getID(fname):\r
+    print fname\r
+    # create Reader object\r
+    reader = Sax2.Reader()\r
+    # parse the document\r
+    doc = reader.fromStream(fname)\r
+    nodes = xpath.Evaluate('//*[local-name()="id"]',doc.documentElement)\r
+    return nodes[0].firstChild.nodeValue\r
+\r
+    \r
+        \r
+    \r
+\r
+\r
+\r
+#\r
+#Obtain a list of files in a given directory\r
+#returns a possibly empty dictionary of NNN:dir/noteNNN.txt\r
+#\r
+def genXML(directory, out, addDate,addSize, md5op,recurs):\r
+    writer = MarkupWriter(out, indent=u"yes")\r
+    writer.startDocument()\r
+    recurse_dir(directory, writer, addDate, addSize, md5op,recurs)\r
+\r
+\r
+#\r
+# Print usage instructions\r
+#\r
+def usage():\r
+    usg = """\r
+    %s.py Version %s" \r
+    Usage: \n python %s.py  [options] -p path -o outputXMLFile \r
+    \t\t Produces an XML file,\r
+    \t\t\t listing the directory (path) provided \r
+    \t\t Options:\r
+    \t\t -d --date  Add date attribute\r
+    \t\t -s --size  Add size attribute\r
+    \t\t -m --mdsum Add md5sum attribute\r
+    \t\t -n --norecurse Do not recurse into directories\r
+    \t\t\t -p[--path] Path to directory to process\r
+    \t\t\t -o output file.\r
+    \t\t\t Omit the output option to generate output to stdout\r
+    """ \\r
+    % (prog, version, prog)\r
+    print usg\r
+\r
+\r
+#\r
+# Main program entry\r
+#\r
+def main():\r
+    if len(sys.argv) < 2:\r
+        usage()\r
+        sys.exit(2)\r
+    outfile = sys.stdout\r
+    outfile = ""\r
+    directory = None\r
+    addDate = False\r
+    md5op = False\r
+    addSize = False\r
+    recurs = True\r
+    try:\r
+        opts, args = \\r
+              getopt.getopt(sys.argv[1:],\r
+                            "hsdmnp:o:",\r
+                            ["help","size","date","md5sum","norecurse","path=","output="])\r
+    except getopt.GetoptError:\r
+        print "\t\tInvalid arguments"\r
+        usage()  # print help information and exit:\r
+        sys.exit(2)\r
+    if (len(opts) < 1):\r
+        print "Insufficient arguments", len(args)\r
+        usage()\r
+        sys.exit(2)\r
+    for o, a in opts:\r
+        if o in ("?", "//?"):\r
+            usage()\r
+            sys.exit()\r
+        if o in ("-p","--path"):\r
+            directory = os.path.realpath(a)\r
+        if o in ("-d", "--date"):\r
+            addDate = True\r
+        if o in ("-m", "--md5sum"):\r
+            md5op=True\r
+        if o in ("-s", "--size"):\r
+            addSize = True\r
+        if o in ("-h", "--help"):\r
+            usage()\r
+            sys.exit()\r
+        if o in ("-n", "--norecurse"):\r
+            recurs = False\r
+        if o in ("-o","--output"):\r
+            outfile = a\r
+    if not( os.path.isdir(directory)):\r
+        sys.stderr.write ("\t\t Error, '%s' is not a directory\n" % directory) \r
+        sys.exit(2)\r
+    try:\r
+        if (outfile <> ""):\r
+            out = open(outfile,'w')\r
+        else:\r
+            out = sys.stdout\r
+    except EnvironmentError:\r
+        sys.stderr.write("%s not writable, Quitting" %outfile)\r
+        sys.exit(2)\r
+\r
+\r
+#\r
+# Call the main method.\r
+#\r
+    genXML(directory, out, addDate, addSize, md5op,recurs)\r
+    if (outfile != ""):\r
+        out.close()\r
+\r
+\r
+if __name__ == '__main__':\r
+    main()\r
+\r
+#http://www.jorendorff.com/articles/python/path/\r
diff --git a/contrib/tools/pawson/params.xml b/contrib/tools/pawson/params.xml
new file mode 100644 (file)
index 0000000..a978e10
--- /dev/null
@@ -0,0 +1,591 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<directory name="/sgml/docbook/db4/params">
+  <file date="2007-07-16" name="admon.graphics.path.xml"/>
+  <file date="2007-07-13" name="man.indent.lists.xml"/>
+  <file date="2007-07-13" name="make.graphic.viewport.xml"/>
+  <file date="2007-07-13" name="side.float.properties.xml"/>
+  <file date="2007-07-17" name="olink.base.uri.xml"/>
+  <file date="2007-07-17" name="body.bg.color.xml"/>
+  <file date="2007-07-13" name="man.break.after.slash.xml"/>
+  <file date="2007-07-13" name="toc.spacer.graphic.xml"/>
+  <file date="2007-07-13" name="man.indent.blurbs.xml"/>
+  <file date="2007-07-13" name="double.sided.xml"/>
+  <file date="2007-07-17" name="page.margin.top.xml"/>
+  <file date="2007-07-13" name="generate.manifest.xml"/>
+  <file date="2007-07-13" name="insert.link.page.number.xml"/>
+  <file date="2007-07-13" name="refentry.source.fallback.profile.xml"/>
+  <file date="2007-07-13" name="footers.on.blank.pages.xml"/>
+  <file date="2007-07-24" name="generate.meta.abstract.xml"/>
+  <file date="2007-07-13" name="list.item.spacing.xml"/>
+  <file date="2007-07-13" name="column.count.titlepage.xml"/>
+  <file date="2007-07-13" name="component.title.properties.xml"/>
+  <file date="2007-07-16" name="phrase.propagates.style.xml"/>
+  <file date="2007-07-16" name="blurb.on.titlepage.enabled.xml"/>
+  <file date="2007-07-17" name="olink.resolver.xml"/>
+  <file date="2007-07-13" name="annotate.toc.xml"/>
+  <file date="2007-07-16" name="htmlhelp.hhc.folders.instead.books.xml"/>
+  <file date="2007-07-13" name="column.count.lot.xml"/>
+  <file date="2007-07-13" name="chunk.tocs.and.lots.xml"/>
+  <file date="2007-07-24" name="chunker.output.indent.xml"/>
+  <file date="2007-07-13" name="chunk.section.depth.xml"/>
+  <file date="2007-07-17" name="table.footnote.number.format.xml"/>
+  <file date="2007-07-24" name="chunker.output.method.xml"/>
+  <file date="2007-07-13" name="olink.debug.xml"/>
+  <file date="2007-07-13" name="footer.content.properties.xml"/>
+  <file date="2007-07-13" name="title.margin.left.xml"/>
+  <file date="2007-07-17" name="spacing.paras.xml"/>
+  <file date="2007-07-16" name="olink.outline.ext.xml"/>
+  <file date="2007-07-13" name="man.indent.refsect.xml"/>
+  <file date="2007-07-13" name="insert.xref.page.number.xml"/>
+  <file date="2007-07-13" name="navtocwidth.xml"/>
+  <file date="2007-07-16" name="suppress.header.navigation.xml"/>
+  <file date="2007-07-17" name="table.cell.border.color.xml"/>
+  <file date="2007-07-17" name="callout.graphics.path.xml"/>
+  <file date="2007-07-13" name="shade.verbatim.xml"/>
+  <file date="2007-07-16" name="htmlhelp.hhk.xml"/>
+  <file date="2007-07-16" name="refentry.generate.title.xml"/>
+  <file date="2007-07-13" name="man.links.are.underlined.xml"/>
+  <file date="2007-07-13" name="man.output.in.separate.dir.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.zoom.xml"/>
+  <file date="2007-07-13" name="htmlhelp.show.advanced.search.xml"/>
+  <file date="2007-07-24" name="use.embed.for.svg.xml"/>
+  <file date="2007-07-16" name="suppress.navigation.xml"/>
+  <file date="2007-07-17" name="ua.js.xml"/>
+  <file date="2007-07-17" name="htmlhelp.hhp.xml"/>
+  <file date="2007-07-13" name="toc.blank.graphic.xml"/>
+  <file date="2007-07-13" name="man.indent.verbatims.xml"/>
+  <file date="2007-07-17" name="draft.watermark.image.xml"/>
+  <file date="2007-07-13" name="glosslist.as.blocks.xml"/>
+  <file date="2007-07-16" name="section.label.includes.component.label.xml"/>
+  <file date="2007-07-16" name="index.prefer.titleabbrev.xml"/>
+  <file date="2007-07-16" name="htmlhelp.hhc.show.root.xml"/>
+  <file date="2007-07-13" name="generate.index.xml"/>
+  <file date="2007-07-24" name="htmlhelp.map.file.xml"/>
+  <file date="2007-07-16" name="id.warnings.xml"/>
+  <file date="2007-07-13" name="man.justify.xml"/>
+  <file date="2007-07-16" name="olink.pubid.xml"/>
+  <file date="2007-07-16" name="profile.conformance.xml"/>
+  <file date="2007-07-17" name="use.extensions.xml"/>
+  <file date="2007-07-13" name="refentry.title.properties.xml"/>
+  <file date="2007-07-13" name="html.stylesheet.type.xml"/>
+  <file date="2007-07-16" name="htmlhelp.show.menu.xml"/>
+  <file date="2007-07-13" name="article.appendix.title.properties.xml"/>
+  <file date="2007-07-13" name="segmentedlist.as.table.xml"/>
+  <file date="2007-07-17" name="graphics.dir.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.options.xml"/>
+  <file date="2007-07-17" name="no.home.image.xml"/>
+  <file date="2007-07-16" name="olink.sysid.xml"/>
+  <file date="2007-07-13" name="informalequation.properties.xml"/>
+  <file date="2007-07-13" name="ignore.image.scaling.xml"/>
+  <file date="2007-07-13" name="autotoc.label.in.hyperlink.xml"/>
+  <file date="2007-07-13" name="column.count.body.xml"/>
+  <file date="2007-07-16" name="refentry.xref.manvolnum.xml"/>
+  <file date="2007-07-13" name="verbatim.properties.xml"/>
+  <file date="2007-07-13" name="use.local.olink.style.xml"/>
+  <file date="2007-07-13" name="toc.margin.properties.xml"/>
+  <file date="2007-07-17" name="sidebar.float.width.xml"/>
+  <file date="2007-07-13" name="body.start.indent.xml"/>
+  <file date="2007-07-17" name="pages.template.xml"/>
+  <file date="2007-07-17" name="callout.defaultcolumn.xml"/>
+  <file date="2007-07-24" name="variablelist.as.table.xml"/>
+  <file date="2007-07-17" name="symbol.font.family.xml"/>
+  <file date="2007-07-13" name="dynamic.toc.xml"/>
+  <file date="2007-07-13" name="man.output.subdirs.enabled.xml"/>
+  <file date="2007-07-17" name="htmlhelp.title.xml"/>
+  <file date="2007-07-16" name="olink.properties.xml"/>
+  <file date="2007-07-13" name="abstract.properties.xml"/>
+  <file date="2007-07-13" name="generate.legalnotice.link.xml"/>
+  <file date="2007-07-17" name="minus.image.xml"/>
+  <file date="2007-07-13" name="ebnf.statement.terminator.xml"/>
+  <file date="2007-07-17" name="header.table.height.xml"/>
+  <file date="2007-07-17" name="section.autolabel.max.depth.xml"/>
+  <file date="2007-07-13" name="nav.separator.xml"/>
+  <file date="2007-07-13" name="make.index.markup.xml"/>
+  <file date="2007-07-17" name="suppress.homepage.title.xml"/>
+  <file date="2007-07-17" name="multiframe.top.bgcolor.xml"/>
+  <file date="2007-07-16" name="profile.revision.xml"/>
+  <file date="2007-07-13" name="ulink.show.xml"/>
+  <file date="2007-07-17" name="index.range.separator.xml"/>
+  <file date="2007-07-13" name="man.th.title.max.length.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.print.xml"/>
+  <file date="2007-07-13" name="textbgcolor.xml"/>
+  <file date="2007-07-17" name="column.gap.body.xml"/>
+  <file date="2007-07-16" name="htmlhelp.encoding.xml"/>
+  <file date="2007-07-13" name="formal.procedures.xml"/>
+  <file date="2007-07-13" name="nongraphical.admonition.properties.xml"/>
+  <file date="2007-07-17" name="funcsynopsis.tabular.threshold.xml"/>
+  <file date="2007-07-16" name="generate.section.toc.level.xml"/>
+  <file date="2007-07-17" name="output.indent.xml"/>
+  <file date="2007-07-13" name="index.page.number.properties.xml"/>
+  <file date="2007-07-13" name="index.on.role.xml"/>
+  <file date="2007-07-16" name="profile.userlevel.xml"/>
+  <file date="2007-07-13" name="refentry.manual.profile.xml"/>
+  <file date="2007-07-13" name="table.properties.xml"/>
+  <file date="2007-07-24" name="annotation.css.xml"/>
+  <file date="2007-07-13" name="hyphenate.xml"/>
+  <file date="2007-07-13" name="foilgroup.toc.xml"/>
+  <file date="2007-07-13" name="chunk.append.xml"/>
+  <file date="2007-07-17" name="column.gap.lot.xml"/>
+  <file date="2007-07-16" name="profile.wordsize.xml"/>
+  <file date="2007-07-13" name="refentry.source.name.suppress.xml"/>
+  <file date="2007-07-16" name="navig.graphics.path.xml"/>
+  <file date="2007-07-13" name="toc.list.type.xml"/>
+  <file date="2007-07-16" name="xref.with.number.and.title.xml"/>
+  <file date="2007-07-13" name="component.titlepage.properties.xml"/>
+  <file date="2007-07-17" name="prev.image.xml"/>
+  <file date="2007-07-17" name="manifest.xml"/>
+  <file date="2007-07-13" name="bibliography.numbered.xml"/>
+  <file date="2007-07-17" name="css.stylesheet.xml"/>
+  <file date="2007-07-13" name="figure.properties.xml"/>
+  <file date="2007-07-16" name="default.float.class.xml"/>
+  <file date="2007-07-24" name="htmlhelp.force.map.and.alias.xml"/>
+  <file date="2007-07-16" name="textdata.default.encoding.xml"/>
+  <file date="2007-07-13" name="htmlhelp.hhc.width.xml"/>
+  <file date="2007-07-17" name="root.filename.xml"/>
+  <file date="2007-07-17" name="body.font.family.xml"/>
+  <file date="2007-07-13" name="refentry.source.name.profile.enabled.xml"/>
+  <file date="2007-07-17" name="current.docid.xml"/>
+  <file date="2007-07-16" name="qandadiv.autolabel.xml"/>
+  <file date="2007-07-16" name="htmlhelp.show.toolbar.text.xml"/>
+  <file date="2007-07-16" name="editedby.enabled.xml"/>
+  <file date="2007-07-17" name="table.spacer.image.xml"/>
+  <file date="2007-07-13" name="pgwide.properties.xml"/>
+  <file date="2007-07-17" name="default.units.xml"/>
+  <file date="2007-07-17" name="crop.marks.xml"/>
+  <file date="2007-07-17" name="footer.column.widths.xml"/>
+  <file date="2007-07-16" name="part.autolabel.xml"/>
+  <file date="2007-07-13" name="nav.table.summary.xml"/>
+  <file date="2007-07-17" name="wordml.template.xml"/>
+  <file date="2007-07-16" name="table.borders.with.css.xml"/>
+  <file date="2007-07-16" name="shade.verbatim.style.xml"/>
+  <file date="2007-07-16" name="component.label.includes.part.label.xml"/>
+  <file date="2007-07-13" name="subscript.properties.xml"/>
+  <file date="2007-07-13" name="index.entry.properties.xml"/>
+  <file date="2007-07-17" name="showtoc.image.xml"/>
+  <file date="2007-07-13" name="procedure.properties.xml"/>
+  <file date="2007-07-13" name="hyphenate.verbatim.xml"/>
+  <file date="2007-07-13" name="callout.unicode.xml"/>
+  <file date="2007-07-16" name="process.empty.source.toc.xml"/>
+  <file date="2007-07-16" name="olink.fragid.xml"/>
+  <file date="2007-07-13" name="man.hyphenate.filenames.xml"/>
+  <file date="2007-07-13" name="table.footnote.properties.xml"/>
+  <file date="2007-07-17" name="section.container.element.xml"/>
+  <file date="2007-07-16" name="email.delimiters.enabled.xml"/>
+  <file date="2007-07-17" name="nominal.table.width.xml"/>
+  <file date="2007-07-13" name="refentry.version.suppress.xml"/>
+  <file date="2007-07-13" name="toc.pointer.text.xml"/>
+  <file date="2007-07-13" name="footnote.sep.leader.properties.xml"/>
+  <file date="2007-07-13" name="foilgroup.properties.xml"/>
+  <file date="2007-07-17" name="multiframe.navigation.height.xml"/>
+  <file date="2007-07-16" name="htmlhelp.display.progress.xml"/>
+  <file date="2007-07-13" name="refentry.version.profile.enabled.xml"/>
+  <file date="2007-07-24" name="glossary.as.blocks.xml"/>
+  <file date="2007-07-13" name="running.foot.properties.xml"/>
+  <file date="2007-07-13" name="formal.title.placement.xml"/>
+  <file date="2007-07-17" name="default.table.frame.xml"/>
+  <file date="2007-07-13" name="htmlhelp.hhp.windows.xml"/>
+  <file date="2007-07-16" name="profile.condition.xml"/>
+  <file date="2007-07-17" name="tex.math.in.alt.xml"/>
+  <file date="2007-07-13" name="man.output.manifest.filename.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.forward.xml"/>
+  <file date="2007-07-13" name="fop.extensions.xml"/>
+  <file date="2007-07-13" name="man.string.subst.map.local.post.xml"/>
+  <file date="2007-07-13" name="generate.revhistory.link.xml"/>
+  <file date="2007-07-16" name="navig.graphics.xml"/>
+  <file date="2007-07-13" name="passivetex.extensions.xml"/>
+  <file date="2007-07-13" name="man.hyphenate.computer.inlines.xml"/>
+  <file date="2007-07-17" name="ulink.hyphenate.chars.xml"/>
+  <file date="2007-07-17" name="footnote.number.format.xml"/>
+  <file date="2007-07-16" name="profile.revisionflag.xml"/>
+  <file date="2007-07-13" name="html.head.legalnotice.link.types.xml"/>
+  <file date="2007-07-13" name="footnote.properties.xml"/>
+  <file date="2007-07-13" name="ulink.footnotes.xml"/>
+  <file date="2007-07-24" name="saxon.character.representation.xml"/>
+  <file date="2007-07-17" name="column.gap.back.xml"/>
+  <file date="2007-07-16" name="profile.security.xml"/>
+  <file date="2007-07-13" name="eclipse.plugin.provider.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.next.xml"/>
+  <file date="2007-07-13" name="refentry.date.profile.xml"/>
+  <file date="2007-07-13" name="toc.spacer.image.xml"/>
+  <file date="2007-07-24" name="man.copyright.section.enabled.xml"/>
+  <file date="2007-07-13" name="revhistory.table.properties.xml"/>
+  <file date="2007-07-16" name="html.stylesheet.xml"/>
+  <file date="2007-07-16" name="othercredit.like.author.enabled.xml"/>
+  <file date="2007-07-16" name="suppress.footer.navigation.xml"/>
+  <file date="2007-07-13" name="toc.spacer.text.xml"/>
+  <file date="2007-07-17" name="toc.width.xml"/>
+  <file date="2007-07-13" name="revhistory.title.properties.xml"/>
+  <file date="2007-07-13" name="ebnf.assignment.xml"/>
+  <file date="2007-07-13" name="footer.table.properties.xml"/>
+  <file date="2007-07-17" name="margin.note.width.xml"/>
+  <file date="2007-07-13" name="informaltable.properties.xml"/>
+  <file date="2007-07-13" name="arbortext.extensions.xml"/>
+  <file date="2007-07-24" name="index.on.type.xml"/>
+  <file date="2007-07-17" name="table.frame.border.color.xml"/>
+  <file date="2007-07-13" name="man.output.lang.in.name.enabled.xml"/>
+  <file date="2007-07-16" name="show.comments.xml"/>
+  <file date="2007-07-17" name="home.image.xml"/>
+  <file date="2007-07-13" name="qanda.title.properties.xml"/>
+  <file date="2007-07-13" name="monospace.properties.xml"/>
+  <file date="2007-07-17" name="man.endnotes.list.heading.xml"/>
+  <file date="2007-07-13" name="man.font.funcprototype.xml"/>
+  <file date="2007-07-17" name="column.gap.index.xml"/>
+  <file date="2007-07-17" name="column.gap.front.xml"/>
+  <file date="2007-07-16" name="author.othername.in.middle.xml"/>
+  <file date="2007-07-16" name="profile.vendor.xml"/>
+  <file date="2007-07-17" name="profile.audience.xml"/>
+  <file date="2007-07-24" name="htmlhelp.only.xml"/>
+  <file date="2007-07-16" name="pixels.per.inch.xml"/>
+  <file date="2007-07-17" name="htmlhelp.hhp.window.xml"/>
+  <file date="2007-07-13" name="chunk.separate.lots.xml"/>
+  <file date="2007-07-24" name="chunker.output.standalone.xml"/>
+  <file date="2007-07-17" name="next.image.xml"/>
+  <file date="2007-07-16" name="html.longdesc.xml"/>
+  <file date="2007-07-16" name="htmlhelp.show.favorities.xml"/>
+  <file date="2007-07-17" name="default.image.width.xml"/>
+  <file date="2007-07-17" name="no.prev.image.xml"/>
+  <file date="2007-07-13" name="admonition.title.properties.xml"/>
+  <file date="2007-07-13" name="table.table.properties.xml"/>
+  <file date="2007-07-13" name="html.extra.head.links.xml"/>
+  <file date="2007-07-13" name="make.valid.html.xml"/>
+  <file date="2007-07-17" name="index.term.separator.xml"/>
+  <file date="2007-07-13" name="man.output.manifest.enabled.xml"/>
+  <file date="2007-07-16" name="bridgehead.in.toc.xml"/>
+  <file date="2007-07-16" name="htmlhelp.chm.xml"/>
+  <file date="2007-07-16" name="html.base.xml"/>
+  <file date="2007-07-16" name="nominal.image.width.xml"/>
+  <file date="2007-07-17" name="sidebar.title.properties.xml"/>
+  <file date="2007-07-13" name="man.charmap.subset.profile.xml"/>
+  <file date="2007-07-17" name="crop.mark.bleed.xml"/>
+  <file date="2007-07-17" name="htmlhelp.hhc.section.depth.xml"/>
+  <file date="2007-07-13" name="glossterm.auto.link.xml"/>
+  <file date="2007-07-24" name="htmlhelp.alias.file.xml"/>
+  <file date="2007-07-16" name="emphasis.propagates.style.xml"/>
+  <file date="2007-07-17" name="hidetoc.image.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.refresh.xml"/>
+  <file date="2007-07-13" name="html.cleanup.xml"/>
+  <file date="2007-07-13" name="banner.before.navigation.xml"/>
+  <file date="2007-07-13" name="xref.properties.xml"/>
+  <file date="2007-07-16" name="html.longdesc.link.xml"/>
+  <file date="2007-07-17" name="slide.font.family.xml"/>
+  <file date="2007-07-16" name="points.per.em.xml"/>
+  <file date="2007-07-13" name="informalexample.properties.xml"/>
+  <file date="2007-07-13" name="para.propagates.style.xml"/>
+  <file date="2007-07-17" name="sans.font.family.xml"/>
+  <file date="2007-07-17" name="chunk.sections.xml"/>
+  <file date="2007-07-17" name="saxon.linenumbering.xml"/>
+  <file date="2007-07-13" name="show.foil.number.xml"/>
+  <file date="2007-07-24" name="annotation.graphic.close.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.stop.xml"/>
+  <file date="2007-07-17" name="autotoc.label.separator.xml"/>
+  <file date="2007-07-17" name="tex.math.delims.xml"/>
+  <file date="2007-07-17" name="currentpage.marker.xml"/>
+  <file date="2007-07-17" name="region.after.extent.xml"/>
+  <file date="2007-07-13" name="keyboard.nav.xml"/>
+  <file date="2007-07-13" name="man.string.subst.map.local.pre.xml"/>
+  <file date="2007-07-17" name="margin.note.float.type.xml"/>
+  <file date="2007-07-13" name="xep.extensions.xml"/>
+  <file date="2007-07-17" name="overlay.logo.xml"/>
+  <file date="2007-07-17" name="refentry.separator.xml"/>
+  <file date="2007-07-17" name="body.margin.bottom.xml"/>
+  <file date="2007-07-16" name="html.ext.xml"/>
+  <file date="2007-07-16" name="profile.value.xml"/>
+  <file date="2007-07-17" name="no.next.image.xml"/>
+  <file date="2007-07-16" name="profile.status.xml"/>
+  <file date="2007-07-24" name="abstract.notitle.enabled.xml"/>
+  <file date="2007-07-24" name="annotation.js.xml"/>
+  <file date="2007-07-16" name="linenumbering.separator.xml"/>
+  <file date="2007-07-13" name="navbgcolor.xml"/>
+  <file date="2007-07-13" name="eclipse.plugin.id.xml"/>
+  <file date="2007-07-13" name="slides.properties.xml"/>
+  <file date="2007-07-13" name="list.block.spacing.xml"/>
+  <file date="2007-07-17" name="default.table.width.xml"/>
+  <file date="2007-07-17" name="punct.honorific.xml"/>
+  <file date="2007-07-13" name="header.hr.xml"/>
+  <file date="2007-07-16" name="preferred.mediaobject.role.xml"/>
+  <file date="2007-07-13" name="monospace.verbatim.properties.xml"/>
+  <file date="2007-07-24" name="javahelp.encoding.xml"/>
+  <file date="2007-07-13" name="header.content.properties.xml"/>
+  <file date="2007-07-13" name="body.attributes.xml"/>
+  <file date="2007-07-17" name="use.id.function.xml"/>
+  <file date="2007-07-13" name="generate.toc.xml"/>
+  <file date="2007-07-13" name="use.role.for.mediaobject.xml"/>
+  <file date="2007-07-13" name="htmlhelp.use.hhk.xml"/>
+  <file date="2007-07-13" name="graphic.default.extension.xml"/>
+  <file date="2007-07-13" name="glossary.sort.xml"/>
+  <file date="2007-07-13" name="page.width.portrait.xml"/>
+  <file date="2007-07-17" name="sequential.links.xml"/>
+  <file date="2007-07-13" name="section.properties.xml"/>
+  <file date="2007-07-13" name="equation.properties.xml"/>
+  <file date="2007-07-13" name="refentry.manual.fallback.profile.xml"/>
+  <file date="2007-07-13" name="man.segtitle.suppress.xml"/>
+  <file date="2007-07-17" name="toc.row.height.xml"/>
+  <file date="2007-07-16" name="htmlhelp.autolabel.xml"/>
+  <file date="2007-07-13" name="htmlhelp.hhp.tail.xml"/>
+  <file date="2007-07-13" name="toc.pointer.graphic.xml"/>
+  <file date="2007-07-13" name="qanda.in.toc.xml"/>
+  <file date="2007-07-13" name="template.xml"/>
+  <file date="2007-07-13" name="superscript.properties.xml"/>
+  <file date="2007-07-17" name="use.role.as.xrefstyle.xml"/>
+  <file date="2007-07-13" name="man.font.table.title.xml"/>
+  <file date="2007-07-17" name="region.before.extent.xml"/>
+  <file date="2007-07-17" name="bibliography.style.xml"/>
+  <file date="2007-07-17" name="no.toc.image.xml"/>
+  <file date="2007-07-17" name="toc.indent.width.xml"/>
+  <file date="2007-07-17" name="footer.table.height.xml"/>
+  <file date="2007-07-13" name="feedback.link.text.xml"/>
+  <file date="2007-07-13" name="man.output.quietly.xml"/>
+  <file date="2007-07-16" name="html.cellspacing.xml"/>
+  <file date="2007-07-17" name="callout.unicode.font.xml"/>
+  <file date="2007-07-24" name="textinsert.extension.xml"/>
+  <file date="2007-07-17" name="column.gap.titlepage.xml"/>
+  <file date="2007-07-13" name="page.height.portrait.xml"/>
+  <file date="2007-07-13" name="admon.graphics.xml"/>
+  <file date="2007-07-17" name="linenumbering.extension.xml"/>
+  <file date="2007-07-13" name="man.hyphenate.urls.xml"/>
+  <file date="2007-07-13" name="body.font.master.xml"/>
+  <file date="2007-07-13" name="man.output.base.dir.xml"/>
+  <file date="2007-07-16" name="refentry.generate.name.xml"/>
+  <file date="2007-07-17" name="index.number.separator.xml"/>
+  <file date="2007-07-17" name="use.id.as.filename.xml"/>
+  <file date="2007-07-16" name="qanda.nested.in.toc.xml"/>
+  <file date="2007-07-16" name="htmlhelp.enhanced.decompilation.xml"/>
+  <file date="2007-07-13" name="insert.olink.pdf.frag.xml"/>
+  <file date="2007-07-13" name="man.subheading.divider.xml"/>
+  <file date="2007-07-13" name="foil.properties.xml"/>
+  <file date="2007-07-18" name="paper.type.xml"/>
+  <file date="2007-07-13" name="chunk.tocs.and.lots.has.title.xml"/>
+  <file date="2007-07-13" name="normal.para.spacing.xml"/>
+  <file date="2007-07-17" name="runinhead.title.end.punct.xml"/>
+  <file date="2007-07-13" name="section.title.properties.xml"/>
+  <file date="2007-07-17" name="title.font.family.xml"/>
+  <file date="2007-07-17" name="index.method.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.locate.xml"/>
+  <file date="2007-07-16" name="runinhead.default.title.end.punct.xml"/>
+  <file date="2007-07-17" name="glossary.collection.xml"/>
+  <file date="2007-07-17" name="profile.arch.xml"/>
+  <file date="2007-07-17" name="olink.lang.fallback.sequence.xml"/>
+  <file date="2007-07-13" name="page.width.xml"/>
+  <file date="2007-07-13" name="toc.blank.text.xml"/>
+  <file date="2007-07-16" name="htmlhelp.hhc.xml"/>
+  <file date="2007-07-17" name="marker.section.level.xml"/>
+  <file date="2007-07-17" name="man.charmap.uri.xml"/>
+  <file date="2007-07-13" name="graphicsize.use.img.src.path.xml"/>
+  <file date="2007-07-17" name="orderedlist.label.width.xml"/>
+  <file date="2007-07-13" name="axf.extensions.xml"/>
+  <file date="2007-07-13" name="biblioentry.properties.xml"/>
+  <file date="2007-07-13" name="eclipse.plugin.name.xml"/>
+  <file date="2007-07-13" name="informalfigure.properties.xml"/>
+  <file date="2007-07-13" name="column.count.front.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.home.xml"/>
+  <file date="2007-07-13" name="header.table.properties.xml"/>
+  <file date="2007-07-16" name="firstterm.only.link.xml"/>
+  <file date="2007-07-17" name="tablecolumns.extension.xml"/>
+  <file date="2007-07-13" name="graphicsize.extension.xml"/>
+  <file date="2007-07-16" name="qanda.inherit.numeration.xml"/>
+  <file date="2007-07-17" name="callout.unicode.start.character.xml"/>
+  <file date="2007-07-13" name="chunk.quietly.xml"/>
+  <file date="2007-07-17" name="footnote.number.symbols.xml"/>
+  <file date="2007-07-16" name="table.cell.border.thickness.xml"/>
+  <file date="2007-07-17" name="callout.list.table.xml"/>
+  <file date="2007-07-13" name="prefer.internal.olink.xml"/>
+  <file date="2007-07-13" name="entry.propagates.style.xml"/>
+  <file date="2007-07-13" name="man.indent.width.xml"/>
+  <file date="2007-07-17" name="multiframe.bottom.bgcolor.xml"/>
+  <file date="2007-07-13" name="graphical.admonition.properties.xml"/>
+  <file date="2007-07-13" name="foil.title.size.xml"/>
+  <file date="2007-07-13" name="orderedlist.properties.xml"/>
+  <file date="2007-07-13" name="refentry.date.profile.enabled.xml"/>
+  <file date="2007-07-17" name="no.up.image.xml"/>
+  <file date="2007-07-13" name="informal.object.properties.xml"/>
+  <file date="2007-07-17" name="ulink.hyphenate.xml"/>
+  <file date="2007-07-17" name="text.toc.xml"/>
+  <file date="2007-07-13" name="admonition.properties.xml"/>
+  <file date="2007-07-17" name="callout.unicode.number.limit.xml"/>
+  <file date="2007-07-17" name="page.orientation.xml"/>
+  <file date="2007-07-13" name="refentry.pagebreak.xml"/>
+  <file date="2007-07-17" name="margin.note.title.properties.xml"/>
+  <file date="2007-07-13" name="use.svg.xml"/>
+  <file date="2007-07-17" name="toc.image.xml"/>
+  <file date="2007-07-13" name="footnote.font.size.xml"/>
+  <file date="2007-07-13" name="menuchoice.menu.separator.xml"/>
+  <file date="2007-07-17" name="nominal.image.depth.xml"/>
+  <file date="2007-07-17" name="slide.title.font.family.xml"/>
+  <file date="2007-07-16" name="htmlhelp.enumerate.images.xml"/>
+  <file date="2007-07-17" name="up.image.xml"/>
+  <file date="2007-07-16" name="profile.separator.xml"/>
+  <file date="2007-07-18" name="base.dir.xml"/>
+  <file date="2007-07-13" name="root.properties.xml"/>
+  <file date="2007-07-13" name="chunk.first.sections.xml"/>
+  <file date="2007-07-13" name="refentry.manual.profile.enabled.xml"/>
+  <file date="2007-07-13" name="man.hyphenate.xml"/>
+  <file date="2007-07-13" name="formal.title.properties.xml"/>
+  <file date="2007-07-17" name="olink.doctitle.xml"/>
+  <file date="2007-07-17" name="plus.image.xml"/>
+  <file date="2007-07-16" name="navig.showtitles.xml"/>
+  <file date="2007-07-17" name="overlay.js.xml"/>
+  <file date="2007-07-13" name="variablelist.term.break.after.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.prev.xml"/>
+  <file date="2007-07-13" name="man.subheading.divider.enabled.xml"/>
+  <file date="2007-07-16" name="preface.autolabel.xml"/>
+  <file date="2007-07-13" name="footer.rule.xml"/>
+  <file date="2007-07-13" name="foil.subtitle.properties.xml"/>
+  <file date="2007-07-13" name="contrib.inline.enabled.xml"/>
+  <file date="2007-07-17" name="css.stylesheet.dir.xml"/>
+  <file date="2007-07-17" name="monospace.font.family.xml"/>
+  <file date="2007-07-17" name="profile.attribute.xml"/>
+  <file date="2007-07-24" name="man.authors.section.enabled.xml"/>
+  <file date="2007-07-17" name="man.output.encoding.xml"/>
+  <file date="2007-07-13" name="toc.line.properties.xml"/>
+  <file date="2007-07-16" name="funcsynopsis.decoration.xml"/>
+  <file date="2007-07-16" name="function.parens.xml"/>
+  <file date="2007-07-13" name="feedback.href.xml"/>
+  <file date="2007-07-16" name="keep.relative.image.uris.xml"/>
+  <file date="2007-07-13" name="multiframe.xml"/>
+  <file date="2007-07-24" name="tex.math.file.xml"/>
+  <file date="2007-07-17" name="manual.toc.xml"/>
+  <file date="2007-07-13" name="page.height.xml"/>
+  <file date="2007-07-13" name="page.margin.outer.xml"/>
+  <file date="2007-07-17" name="menuchoice.separator.xml"/>
+  <file date="2007-07-13" name="annotation.support.xml"/>
+  <file date="2007-07-17" name="itemizedlist.label.width.xml"/>
+  <file date="2007-07-13" name="admon.textlabel.xml"/>
+  <file date="2007-07-13" name="abstract.title.properties.xml"/>
+  <file date="2007-07-17" name="glossterm.separation.xml"/>
+  <file date="2007-07-16" name="html.cellpadding.xml"/>
+  <file date="2007-07-13" name="toc.pointer.image.xml"/>
+  <file date="2007-07-13" name="titlefoil.html.xml"/>
+  <file date="2007-07-16" name="appendix.autolabel.xml"/>
+  <file date="2007-07-13" name="toc.blank.image.xml"/>
+  <file date="2007-07-16" name="toc.max.depth.xml"/>
+  <file date="2007-07-17" name="linenumbering.width.xml"/>
+  <file date="2007-07-16" name="rootid.xml"/>
+  <file date="2007-07-17" name="callout.graphics.xml"/>
+  <file date="2007-07-17" name="crop.mark.width.xml"/>
+  <file date="2007-07-13" name="variablelist.term.separator.xml"/>
+  <file date="2007-07-13" name="margin.note.properties.xml"/>
+  <file date="2007-07-17" name="hyphenate.verbatim.characters.xml"/>
+  <file date="2007-07-13" name="manifest.in.base.dir.xml"/>
+  <file date="2007-07-17" name="callout.graphics.extension.xml"/>
+  <file date="2007-07-13" name="orderedlist.label.properties.xml"/>
+  <file date="2007-07-17" name="saxon.tablecolumns.xml"/>
+  <file date="2007-07-13" name="active.toc.xml"/>
+  <file date="2007-07-16" name="show.revisionflag.xml"/>
+  <file date="2007-07-13" name="eclipse.autolabel.xml"/>
+  <file date="2007-07-24" name="annotation.graphic.open.xml"/>
+  <file date="2007-07-16" name="ebnf.table.bgcolor.xml"/>
+  <file date="2007-07-13" name="example.properties.xml"/>
+  <file date="2007-07-13" name="sidebar.properties.xml"/>
+  <file date="2007-07-16" name="table.frame.border.thickness.xml"/>
+  <file date="2007-07-13" name="refentry.meta.get.quietly.xml"/>
+  <file date="2007-07-13" name="table.cell.padding.xml"/>
+  <file date="2007-07-17" name="text.next.xml"/>
+  <file date="2007-07-13" name="man.charmap.enabled.xml"/>
+  <file date="2007-07-13" name="speakernote.properties.xml"/>
+  <file date="2007-07-16" name="target.database.document.xml"/>
+  <file date="2007-07-13" name="variablelist.max.termlength.xml"/>
+  <file date="2007-07-13" name="man.table.footnotes.divider.xml"/>
+  <file date="2007-07-17" name="dingbat.font.family.xml"/>
+  <file date="2007-07-16" name="make.single.year.ranges.xml"/>
+  <file date="2007-07-16" name="link.mailto.url.xml"/>
+  <file date="2007-07-17" name="foil.title.master.xml"/>
+  <file date="2007-07-17" name="header.column.widths.xml"/>
+  <file date="2007-07-17" name="slides.js.xml"/>
+  <file date="2007-07-16" name="simplesect.in.toc.xml"/>
+  <file date="2007-07-13" name="man.endnotes.list.enabled.xml"/>
+  <file date="2007-07-13" name="toc.section.depth.xml"/>
+  <file date="2007-07-17" name="table.footnote.number.symbols.xml"/>
+  <file date="2007-07-17" name="bullet.image.xml"/>
+  <file date="2007-07-17" name="callouts.extension.xml"/>
+  <file date="2007-07-17" name="targets.filename.xml"/>
+  <file date="2007-07-16" name="html.head.legalnotice.link.multiple.xml"/>
+  <file date="2007-07-17" name="text.home.xml"/>
+  <file date="2007-07-13" name="footnote.mark.properties.xml"/>
+  <file date="2007-07-17" name="text.up.xml"/>
+  <file date="2007-07-16" name="htmlhelp.remember.window.position.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.back.xml"/>
+  <file date="2007-07-13" name="headers.on.blank.pages.xml"/>
+  <file date="2007-07-13" name="navbodywidth.xml"/>
+  <file date="2007-07-16" name="profile.role.xml"/>
+  <file date="2007-07-13" name="ebnf.table.border.xml"/>
+  <file date="2007-07-13" name="htmlhelp.button.home.url.xml"/>
+  <file date="2007-07-13" name="compact.list.item.spacing.xml"/>
+  <file date="2007-07-13" name="section.autolabel.xml"/>
+  <file date="2007-07-13" name="man.font.funcsynopsisinfo.xml"/>
+  <file date="2007-07-13" name="page.margin.inner.xml"/>
+  <file date="2007-07-13" name="blockquote.properties.xml"/>
+  <file date="2007-07-17" name="page.margin.bottom.xml"/>
+  <file date="2007-07-13" name="man.string.subst.map.xml"/>
+  <file date="2007-07-17" name="glossentry.show.acronym.xml"/>
+  <file date="2007-07-13" name="list.block.properties.xml"/>
+  <file date="2007-07-13" name="htmlhelp.window.geometry.xml"/>
+  <file date="2007-07-24" name="htmlhelp.button.hideshow.xml"/>
+  <file date="2007-07-13" name="toc.hide.show.xml"/>
+  <file date="2007-07-13" name="header.rule.xml"/>
+  <file date="2007-07-17" name="body.font.size.xml"/>
+  <file date="2007-07-16" name="htmlhelp.hhc.binary.xml"/>
+  <file date="2007-07-13" name="callout.icon.size.xml"/>
+  <file date="2007-07-13" name="itemizedlist.label.properties.xml"/>
+  <file date="2007-07-17" name="text.prev.xml"/>
+  <file date="2007-07-13" name="refclass.suppress.xml"/>
+  <file date="2007-07-24" name="generate.id.attributes.xml"/>
+  <file date="2007-07-13" name="man.endnotes.are.numbered.xml"/>
+  <file date="2007-07-17" name="htmlhelp.default.topic.xml"/>
+  <file date="2007-07-17" name="collect.xref.targets.xml"/>
+  <file date="2007-07-13" name="insert.olink.page.number.xml"/>
+  <file date="2007-07-13" name="toc.html.xml"/>
+  <file date="2007-07-13" name="formal.object.properties.xml"/>
+  <file date="2007-07-24" name="chunker.output.encoding.xml"/>
+  <file date="2007-07-16" name="chunk.toc.xml"/>
+  <file date="2007-07-13" name="highlight.source.xml"/>
+  <file date="2007-07-17" name="sidebar.float.type.xml"/>
+  <file date="2007-07-17" name="admon.graphics.extension.xml"/>
+  <file date="2007-07-13" name="column.count.back.xml"/>
+  <file date="2007-07-16" name="css.decoration.xml"/>
+  <file date="2007-07-16" name="inherit.keywords.xml"/>
+  <file date="2007-07-13" name="make.year.ranges.xml"/>
+  <file date="2007-07-17" name="column.count.index.xml"/>
+  <file date="2007-07-17" name="bibliography.collection.xml"/>
+  <file date="2007-07-17" name="saxon.callouts.xml"/>
+  <file date="2007-07-17" name="toc.bg.color.xml"/>
+  <file date="2007-07-13" name="alignment.xml"/>
+  <file date="2007-07-13" name="biblioentry.item.separator.xml"/>
+  <file date="2007-07-17" name="table.entry.padding.xml"/>
+  <file date="2007-07-24" name="label.from.part.xml"/>
+  <file date="2007-07-13" name="html.append.xml"/>
+  <file date="2007-07-17" name="table.cell.border.style.xml"/>
+  <file date="2007-07-13" name="process.source.toc.xml"/>
+  <file date="2007-07-16" name="reference.autolabel.xml"/>
+  <file date="2007-07-13" name="overlay.xml"/>
+  <file date="2007-07-13" name="man.font.table.headings.xml"/>
+  <file date="2007-07-13" name="revhistory.table.cell.properties.xml"/>
+  <file date="2007-07-16" name="ulink.target.xml"/>
+  <file date="2007-07-24" name="variablelist.as.blocks.xml"/>
+  <file date="2007-07-13" name="img.src.path.xml"/>
+  <file date="2007-07-17" name="navig.graphics.extension.xml"/>
+  <file date="2007-07-16" name="qanda.defaultlabel.xml"/>
+  <file date="2007-07-13" name="itemizedlist.properties.xml"/>
+  <file date="2007-07-17" name="profile.os.xml"/>
+  <file date="2007-07-16" name="draft.mode.xml"/>
+  <file date="2007-07-17" name="highlight.default.language.xml"/>
+  <file date="2007-07-13" name="footer.hr.xml"/>
+  <file date="2007-07-13" name="refentry.version.profile.xml"/>
+  <file date="2007-07-13" name="index.preferred.page.properties.xml"/>
+  <file date="2007-07-16" name="funcsynopsis.style.xml"/>
+  <file date="2007-07-17" name="script.dir.xml"/>
+  <file date="2007-07-17" name="table.frame.border.style.xml"/>
+  <file date="2007-07-13" name="xep.index.item.properties.xml"/>
+  <file date="2007-07-13" name="refentry.source.name.profile.xml"/>
+  <file date="2007-07-13" name="feedback.with.ids.xml"/>
+  <file date="2007-07-17" name="body.end.indent.xml"/>
+  <file date="2007-07-17" name="callout.graphics.number.limit.xml"/>
+  <file date="2007-07-16" name="admon.style.xml"/>
+  <file date="2007-07-13" name="man.charmap.use.subset.xml"/>
+  <file date="2007-07-16" name="chapter.autolabel.xml"/>
+  <file date="2007-07-17" name="glossterm.width.xml"/>
+  <file date="2007-07-17" name="profile.lang.xml"/>
+  <file date="2007-07-17" name="crop.mark.offset.xml"/>
+  <file date="2007-07-17" name="citerefentry.link.xml"/>
+  <file date="2007-07-17" name="body.margin.top.xml"/>
+  <file date="2007-07-13" name="index.div.title.properties.xml"/>
+</directory>
\ No newline at end of file