Mercurial > p > roundup > code
diff roundup/web/router.py @ 4943:7920d700e580 routing
Add support for extensions to provide custom pages to Roundup
and update CHANGES.txt
1. Added registerHandler() extension point to instance.Tracker
to register URL handlers for specific routes
2. Added processing of extension routes to client.cgi
3. Added example plugins/extensions/custompage.py
| author | anatoly techtonik <techtonik@gmail.com> |
|---|---|
| date | Tue, 25 Nov 2014 17:29:38 +0300 |
| parents | 997fa47c92d5 |
| children | d8e0af01543b |
line wrap: on
line diff
--- a/roundup/web/router.py Tue Nov 25 15:58:14 2014 +0300 +++ b/roundup/web/router.py Tue Nov 25 17:29:38 2014 +0300 @@ -1,10 +1,10 @@ #!/usr/bin/env python +# This Router component was written by techtonik@gmail.com and it's been +# placed in the Public Domain. Copy and modify to your heart's content. + """ The purpose of router is to make Roundup URL scheme configurable and allow extensions add their own handlers and URLs to tracker. - -Public domain work by: - anatoly techtonik <techtonik@gmail.com> """ DEBUG = False
