Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

Changeset 973

Show
Ignore:
Timestamp:
02/16/06 12:52:21
Author:
fumanchu
Message:

Removed deprecated _cphttpserver.py.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG.txt

    r948 r973  
     12006-02-16: 
     2    * Removed _cphttpserver, the native HTTP server that was deprecated in CP 2.1 (fumanchu) 
     3 
    142006-01-27: 
    25    * CherryPy-2.2.0beta released 
     
    47    * Added cherrypy.lower_api switch (people get a speed boost if they 
    58    *   set it to True) 
     9 
     102006-01-02: 
     11    * New _cptree module, with strong encouragement to call tree.mount(Root()[, baseurl]) instead of cherrypy.root = Root(). 
    612 
    7132005-12-05: 
  • trunk/cherrypy/test/test.py

    r891 r973  
    2323    # The first server in the list is the default server. 
    2424    available_servers = {'serverless': (0, "Serverless", None), 
    25                          'native': (1, "Native HTTP Server", 
    26                                     "cherrypy._cphttpserver.embedded_server"), 
    27                          'wsgi': (2, "Native WSGI Server", 
     25                         'wsgi': (1, "Native WSGI Server", 
    2826                                  "cherrypy.test.helper.TestWSGI"), 
    2927                         } 
  • trunk/cherrypy/test/test_states.py

    r967 r973  
    199199    _run(None) 
    200200    _run("cherrypy._cpwsgi.WSGIServer") 
    201     _run("cherrypy._cphttpserver.PooledThreadServer") 
    202     conf['server.thread_pool'] = 1 
    203     _run("cherrypy._cphttpserver.CherryHTTPServer") 
    204201 
    205202 
     
    219216            run(server, conf) 
    220217        _run("cherrypy._cpwsgi.WSGIServer") 
    221         _run("cherrypy._cphttpserver.PooledThreadServer") 
    222         conf['server.thread_pool'] = 1 
    223         _run("cherrypy._cphttpserver.CherryHTTPServer") 
    224218 
    225219 
  • trunk/docs/book/xml/apireference.xml

    r972 r973  
    9191            <title>cherrypy.request.wsgi_environ</title> 
    9292            <para>This attribute is a dictionary containing the WSGI environment for the request. In 
    93             non-WSGI settings (i.e., running under _cphttpserver), it is absent.</para> 
     93            non-WSGI settings (i.e., custom HTTP servers), it is absent.</para> 
    9494        </section> 
    9595        <section> 
     
    204204            (you may pass the class names as a string if you wish):</para> 
    205205            <itemizedlist> 
    206                 <listitem> 
    207                     <para><code>cherrypy._cphttpserver.CherryHTTPServer</code>: this will load the 
    208                     old, single-threaded built-in HTTP server. This server is deprecated and will 
    209                     probably be removed in CherryPy 2.2.</para> 
    210                 </listitem> 
    211                 <listitem> 
    212                     <para><code>cherrypy._cphttpserver.PooledThreadServer</code>: this will load the 
    213                     old, multi-threaded built-in HTTP server. This server is deprecated and will 
    214                     probably be removed in CherryPy 2.2.</para> 
    215                 </listitem> 
    216                 <listitem> 
    217                     <para><code>cherrypy._cphttpserver.embedded_server</code>: use this to 
    218                     automatically select between the CherryHTTPServer and the PooledThreadServer 
    219                     based on the value of config.get("server.thread_pool") and 
    220                     config.get("server.socket_file").</para> 
    221                 </listitem> 
    222206                <listitem> 
    223207                    <para><code>None</code>: this will not load any HTTP server. Note that this is 

Hosted by WebFaction

Log in as guest/cpguest to create tickets