View | Annotate | Download (1.9 KB)
Increment version for future release.
Prepare 0.11 release.
Remove dependency on setuptools' ez_setup.
Install setuptools or distribute manually, it's your choice.
Increment version for further development.
Prepare for 0.10 release.
Add a DjangoRenderer (django.template -based rendering) contrib module and tests.
Convert most of the tests to use WebTest instead of the wsgi_out util and hand-built requests. Deprecate wsgi_out.
WebTest has a nicer API but it also provides lint-like checks on the response so it's actually checking the sanity of the response at the same time as the actual tests....
Require various templating engines for tests.
Include ez_setup.py to bootstrap setup.py on setuptools-less installations.
Please, use your OS's package manager to install setuptools if possible. Otherwsie, i.e. Python 2.4 on Ubuntu 9.04, this should do it for you.
Prepare for future release.
Prepare 0.9 release.
Replace (private) copy of mimeparse with an external dependency.
mimeparse is now available from pypi (e.g. easy_install mimeparse) so I've completely removed the copy from restish.
Add test_suite to setup.py and remove prints.
Thanks to greut for the idea, although I decided to use setuptools's built-in support for collecting the test suite rather than relying on nose. You can always run 'nosetests' instead, if it's installed.
Move version to next dev release.
Prepare 0.8 release.
Prepare 0.7.2 release
Prepare 0.7.1 release.
Move version for future release.
Prepare 0.7 release.
added changelog link to setup.py
Prepare 0.6 release.
Set zip_safe=False to work better with Paster.
It turns out "paster create" doesn't like compressed eggs.
(Merged from dev-0.5 branch).
Fix URL to remove the query string and anchor if the path is changed.
The query string and anchor id are both typically specific to the content of the page. It therefore makes no sense to keep them when the path is changed.
pulled version back for minor release
Move version for future releases.
Add longer description to setup.py.
Prepare for first official release to the world.
Add a paster template to generate a basic restish project.
Remove all dependence on Pylons and specific templating engines.
Restish now has no support for specific templating engines (it only supported Mako anyway ;-)). Instead the developer is expected to configure the restish.templating.renderer environ key with a callable...
Add setuptools stuff.