Metadata-Version: 1.0
Name: zope.server
Version: 3.6.0
Summary: Zope Server (Web and FTP)
Home-page: http://pypi.python.org/pypi/zope.server
Author: Zope Corporation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: This package contains generic base classes for channel-based servers, the
        servers themselves and helper objects, such as tasks and requests.
        
        ============
        WSGI Support
        ============
        
        `zope.server`'s HTTP server comes with WSGI_ support.
        ``zope.server.http.wsgihttpserver.WSGIHTTPServer`` can act as a WSGI gateway.
        There's also an entry point for PasteDeploy_ that lets you use zope.server's
        WSGI gateway from a configuration file, e.g.::
        
        [server:main]
        use = egg:zope.server
        host = 127.0.0.1
        port = 8080
        
        .. _WSGI: http://www.python.org/dev/peps/pep-0333/
        .. _PasteDeploy: http://pythonpaste.org/deploy/
        
        
        =======
        CHANGES
        =======
        
        3.6.0 (2009-05-27)
        ------------------
        
        - Moved some imports from test modules to their setUp to prevent
        failures when ZEO tests are run by the same testrunner
        
        - Removed unused dependency on zope.deprecation.
        
        - Remove old zpkg-related DEPENDENCIES.cfg file.
        
        3.5.0 (2008-03-01)
        ------------------
        
        - Improve package meta-data.
        
        - Fix of 599 error on conflict error in request
        see: http://mail.zope.org/pipermail/zope-dev/2008-January/030844.html
        
        - Removed dependency on ZODB.
        
        3.5.0a2 (2007-06-02)
        --------------------
        
        Made WSGI server really WSGI-compliant by adding variables to the
        environment that are required by the spec.
        
        3.5.0a1 (2007-06-02)
        --------------------
        
        Added a factory and entry point for PasteDeploy.
        
        3.4 (2007-04-22)
        ----------------
        
        - Initial release as a separate project, corresponds to zope.server
        from Zope 3.4.0a1
        
        - Made WSGI server really WSGI-compliant by adding variables to the
        environment that are required by the spec.
        
        
Keywords: zope3 server http ftp
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
