Changeset 1931
- Timestamp:
- 03/18/08 13:23:50
- Files:
-
- trunk/MANIFEST.in (modified) (1 diff)
- trunk/cherrypy/lib/auth.py (modified) (1 prop)
- trunk/cherrypy/test/test_refleaks.py (modified) (1 prop)
- trunk/setup.py (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/MANIFEST.in
r1650 r1931 1 include cherrypy/cherryd 1 2 include cherrypy/favicon.ico 2 3 include cherrypy/LICENSE.txt 4 include cherrypy/scaffold/*.conf 5 include cherrypy/scaffold/static/*.png 6 include cherrypy/test/style.css 7 include cherrypy/test/test.pem 8 include cherrypy/test/static/*.html 9 include cherrypy/test/static/*.jpg 3 10 include cherrypy/tutorial/*.conf 4 11 include cherrypy/tutorial/*.pdf 5 12 include cherrypy/tutorial/*.html 6 13 include cherrypy/tutorial/README.txt 7 include cherrypy/test/style.css8 include cherrypy/test/test.pem9 include cherrypy/test/static/*.html10 include cherrypy/test/static/*.jpg11 include cherrypy/restsrv/restctl.shtrunk/cherrypy/lib/auth.py
- Property svn:eol-style set to native
trunk/cherrypy/test/test_refleaks.py
- Property svn:eol-style set to native
trunk/setup.py
- Property svn:eol-style set to native
r1850 r1931 40 40 "cherrypy", "cherrypy.lib", 41 41 "cherrypy.tutorial", "cherrypy.test", 42 "cherrypy.wsgiserver", "cherrypy. restsrv",42 "cherrypy.wsgiserver", "cherrypy.process", 43 43 ] 44 44 download_url="http://download.cherrypy.org/cherrypy/3.1.0beta3/" 45 45 data_files=[ 46 ('cherrypy', ['cherrypy/cherryd', 47 'cherrypy/favicon.ico', 48 'cherrypy/LICENSE.txt', 49 ]), 50 ('cherrypy/process', []), 51 ('cherrypy/scaffold', ['cherrypy/scaffold/example.conf', 52 'cherrypy/scaffold/site.conf', 53 ]), 54 ('cherrypy/scaffold/static', ['made_with_cherrypy_small.png', 55 ]), 56 ('cherrypy/test', ['cherrypy/test/style.css', 57 'cherrypy/test/test.pem', 58 ]), 59 ('cherrypy/test/static', ['cherrypy/test/static/index.html', 60 'cherrypy/test/static/dirback.jpg',]), 46 61 ('cherrypy/tutorial', 47 62 [ … … 52 67 ] 53 68 ), 54 ('cherrypy', ['cherrypy/favicon.ico',55 'cherrypy/LICENSE.txt',56 ]),57 ('cherrypy/restsrv', ['cherrypy/restsrv/restctl.sh',]),58 ('cherrypy/test', ['cherrypy/test/style.css',59 'cherrypy/test/test.pem',60 ]),61 ('cherrypy/test/static', ['cherrypy/test/static/index.html',62 'cherrypy/test/static/dirback.jpg',]),63 69 ] 64 70 ###############################################################################

