Changeset 164
- Timestamp:
- 04/25/05 10:42:15
- Files:
-
- trunk/CHANGELOG.txt (modified) (3 diffs)
- trunk/MANIFEST.in (modified) (1 diff)
- trunk/README.txt (modified) (2 diffs)
- trunk/cherrypy/tutorial/Readme2.txt (deleted)
- trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/CHANGELOG.txt
r159 r164 1 2005-04-25: 2 * CherryPY-2.0-final released 1 3 * Added tests about static content and httptools.redirect (Remi) 2 4 * Handle %20 (and others) in static content - ticket #104 (Remi) … … 10 12 * Improved the way static files are being served (Remi) 11 13 12 2004 /12-29:14 2004-12-29: 13 15 * CherryPY-2.0-beta released 14 16 * xmlrpcfilter added (Remco) … … 32 34 * Fixed file upload bug (Remi) 33 35 34 2004 /10/13:36 2004-10-13: 35 37 * First alpha release of CherryPy-2 (Remi) 36 38 trunk/MANIFEST.in
r120 r164 2 2 include CHERRYPYTEAM.txt 3 3 include *.conf 4 include cherrypy/tutorial/README.txt 5 include cherrypy/test/style.css 6 include cherrypy/test/static/index.html trunk/README.txt
r109 r164 1 * To install, just type :1 * To install, just type (python-2.3 or later needed): 2 2 3 3 python setup.py install … … 5 5 * To learn how to use it, look at the examples under cherrypy/tutorial/ or go to http://www.cherrypy.org for more info. 6 6 7 * To run the unittest, just go to the cherrypy/test/ directory and type:7 * To run the regression tests, just go to the cherrypy/test/ directory and type: 8 8 9 9 python test.py trunk/setup.py
r161 r164 24 24 license="BSD", 25 25 packages=["cherrypy", "cherrypy.lib", "cherrypy.lib.filter", "cherrypy.tutorial", "cherrypy.test"], 26 download_url="http://trac.cherrypy.org/cgi-bin/trac.cgi/wiki/CherryPyDownload", 27 data_files=[('lib/site-packages/cherrypy/tutorial', ['cherrypy/tutorial/Readme.txt', 28 'cherrypy/tutorial/tutorial.conf'])] 29 26 download_url="http://www.cherrypy.org/wiki/CherryPyDownload", 30 27 ) 31 28

