summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/conf.py2
-rw-r--r--doc/pyxbgen_cli.txt9
-rw-r--r--doc/releases.txt23
3 files changed, 33 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py
index c557dc6..36ecd32 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -47,7 +47,7 @@ copyright = u'2009, Peter A. Bigot'
# The short X.Y version.
version = '1.1'
# The full version, including alpha/beta/rc tags.
-release = '1.1.1'
+release = '1.1.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/doc/pyxbgen_cli.txt b/doc/pyxbgen_cli.txt
index 58728f7..1ac9055 100644
--- a/doc/pyxbgen_cli.txt
+++ b/doc/pyxbgen_cli.txt
@@ -41,6 +41,7 @@ Specify and locate schema for which bindings should be generated.
``--schema-location`` *FILE_or_URL* ``-u`` :ref:`Add the location of an entrypoint schema. The...<pyxbgen--schema-location>`
``--schema-root`` *DIRECTORY* :ref:`The directory from which entrypoint schemas...<pyxbgen--schema-root>`
``--schema-stripped-prefix`` *TEXT* :ref:`Optional string that is stripped from the...<pyxbgen--schema-stripped-prefix>`
+ ``--location-prefix-rewrite`` *TEXT* :ref:`Add a rewrite entry for schema locations....<pyxbgen--location-prefix-rewrite>`
``--uri-content-archive-directory`` *DIRECTORY* :ref:`The directory path into which any content...<pyxbgen--uri-content-archive-directory>`
=================================== ============= ====== ==================================================
@@ -71,6 +72,14 @@ purpose is to convert absolute schema locations into relative ones to
allow offline processing when all schema are available in a local
directory. See ``schemaRoot``.
+.. _pyxbgen--location-prefix-rewrite:
+
+``--location-prefix-rewrite``
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Add a rewrite entry for schema locations. Parameter values are strings
+of the form ``pfx=sub``. The effect is that a schema location that
+begins with ``pfx`` is rewritten so that it instead begins with ``sub``.
+
.. _pyxbgen--uri-content-archive-directory:
``--uri-content-archive-directory``
diff --git a/doc/releases.txt b/doc/releases.txt
index 13e042c..4dc60de 100644
--- a/doc/releases.txt
+++ b/doc/releases.txt
@@ -40,6 +40,29 @@ Linux several years ago:
1.1.x (Beta)
==============
+1.1.2 (30 May 2010)
+-------------------
+
+Complete replacement of the model group portion of the content model. The
+NFA-to-DFA approach is gone. The resulting system does a better job in less
+space and significantly faster: 30% on the standard tmsxtvd test, orders of
+magnitude on documents with large sequences of optional elements.
+
+Note: A couple unit tests fail due to incidental reasons that will be address
+when fixing :ticket:`75`. Also, the architecture documentation for the
+validation portion of the content model is completely out of date.
+
+- Handle sequences of optional elements more effectively. :ticket:`33`
+
+- Correct multi-step attribute restriction/extension. :ticket:`80`
+
+- Support prefix rewrite for schema location URIs. :ticket:`81`
+
+- Fix syntax error generating wildcard namespace constraints. :ticket:`84`
+
+- Support whitespace validation bypass in simple type definitions. :ticket:`85`
+
+
1.1.1 (28 Jan 2010, rev 2135)
-----------------------------