----------------
* Update to work with grokcore.view >= 2.2. This generally means that this
package is no longer compatible with Plone < 4.3.
[davisagli]
* Change i18n domain to plone.dexterity to reuse the translations. plone.dexterity
already has all the strings needed.
[gaudenz]
* Fixes documentation mistake of documented ``form.wrapped()`` directive
which is in fact ``form.wrap()``
[romanofski]
* A number of schema directives were moved to other packages and reimplemented
to not depend on grok. The ``Schema`` class and the ``model``, ``fieldset``,
and ``primary`` directives were moved to ``plone.supermodel.model``. The
``omitted``, ``no_omit``, ``mode``, ``widget``, ``order_before``,
``order_after``, ``read_permission``, and ``write_permission`` directives were
moved to ``plone.autoform.directives``.
For now the directives are still available under their old names in this
package, but they are deprecated and may be removed at some point.
Some minor related changes:
* Tagged values are now stored on schemas as soon as they are defined, rather
than when the schemas are grokked. Additional actions required by the
directives, if any, are performed at the end of ZCML configuration.
* Due to a bug in zope.interface, ``plone.supermodel.model.Schema`` must be
the `first` base class of any schema to which the directives should apply.
Also, unfortunately it is no longer possible to give an error if the schema
directives are called on an interface that is not a ``Schema``.
[davisagli]