================
Features:
- Merged the tl.buildout_mod_python recipe into this project.
* The root recipe configures mod_python from a
``tl.buildout_apache:modpython`` section named by its ``python`` option.
A modpython part no longer acts as a config part for a root part.
* The modpython recipe creates its own virtual Python environment by
default, which the tl.buildout_mod_python recipe didn't do.
* The root recipe collects ``eggs``, ``find-links`` and ``extra-paths``
options from its config-parts and configures an appropriate PythonPath.
- The root recipe's ``modules`` option now accepts values of the form
``foo=/path/to/foo.so`` for loading modules known by shared object path.
- Support name-based virtual hosts via the ``virtual-hosts`` option of the
root recipe.
- The httpd recipe now exports the path to the demo cgi scripts as the
``cgi-bin`` variable.
- The ``htdocs`` and ``cgi-bin`` options of the main and each virtual host
default to the values of the respective httpd recipe's option, if present.
Bug fixes:
- Moved the responsibility for installing eggs to the root recipe so the
modpython recipe is confined to compilation.
* Got rid of the awkward path file.
* Avoid unnecessary re-compilations of the Apache module whenever the set
of specified eggs and paths changed.
- Collect config-parts depth-first.
- Improved test coverage.