Changeset 69:6a1a1235936b

Show
Ignore:
Timestamp:
06/05/07 09:42:39 (1 year ago)
Author:
Allan Saddi <allan@saddi.com>
Tags:

1.0

branch:
default
transplant_source:
�����(����nk�R����
Message:

Remove publisher and middleware packages. Add cgi server for completeness.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ChangeLog

    r68 r69  
    88        * Prevent ThreadPool inconsistences if an exception is 
    99          actually raised. Thanks to Tim Chen for the patch. 
     10 
     112007-06-05  Allan Saddi  <allan@saddi.com> 
     12 
     13        * Remove publisher and middleware packages. 
     14        * Add cgi server for completeness. 
    1015 
    11162007-05-17  Allan Saddi  <allan@saddi.com> 
     
    3742        * Update servers to default to an empty QUERY_STRING if 
    3843          not present in the environ. 
    39  
    4044        * Update gzip.py: compresslevel -> compress_level 
    41  
    4245        * Update gzip.py by updating docstrings and renaming 
    4346          classes/methods/functions to better follow Python naming 
     
    6669 
    6770        * Add *_thread egg entry-point aliases. 
    68  
    6971        * Add UNIX domain socket support to scgi, scgi_fork, 
    7072          scgi_app. 
    71  
    7273        * Add flup.client package which contains various 
    7374          WSGI -> connector client implentations. (So far: FastCGI, 
  • setup.py

    r67 r69  
    66setup( 
    77    name = 'flup', 
    8     version = '0.5', 
     8    version = '1.0', 
    99    packages = find_packages(), 
    10     zip_safe = True, # Despite flup.resolver.importingmodule 
     10    zip_safe = True, 
    1111     
    1212    entry_points = """ 
     
    2525    author = 'Allan Saddi', 
    2626    author_email = 'allan@saddi.com', 
    27     description = 'Random assortment of WSGI servers, middleware', 
     27    description = 'Random assortment of WSGI servers', 
    2828    license = 'BSD', 
    2929    url='http://www.saddi.com/software/flup/',