Mercurial > p > roundup > code
comparison roundup/__init__.py @ 3938:083e280165a8
Pre-release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sat, 03 Nov 2007 00:56:52 +0000 |
| parents | 4299abf32e16 |
| children | 553a27b25012 |
comparison
equal
deleted
inserted
replaced
| 3937:3c3077582c16 | 3938:083e280165a8 |
|---|---|
| 12 # BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, | 12 # BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: __init__.py,v 1.46 2007-02-15 04:02:43 richard Exp $ | 18 # $Id: __init__.py,v 1.47 2007-11-03 00:56:52 richard Exp $ |
| 19 | 19 |
| 20 '''Roundup - issue tracking for knowledge workers. | 20 '''Roundup - issue tracking for knowledge workers. |
| 21 | 21 |
| 22 This is a simple-to-use and -install issue-tracking system with | 22 This is a simple-to-use and -install issue-tracking system with |
| 23 command-line, web and e-mail interfaces. | 23 command-line, web and e-mail interfaces. |
| 25 Roundup manages a number of issues (with properties such as | 25 Roundup manages a number of issues (with properties such as |
| 26 "description", "priority", and so on) and provides the ability to (a) submit | 26 "description", "priority", and so on) and provides the ability to (a) submit |
| 27 new issues, (b) find and edit existing issues, and (c) discuss issues with | 27 new issues, (b) find and edit existing issues, and (c) discuss issues with |
| 28 other participants. The system will facilitate communication among the | 28 other participants. The system will facilitate communication among the |
| 29 participants by managing discussions and notifying interested parties when | 29 participants by managing discussions and notifying interested parties when |
| 30 issues are edited. | 30 issues are edited. |
| 31 | 31 |
| 32 Roundup's structure is that of a cake:: | 32 Roundup's structure is that of a cake:: |
| 33 | 33 |
| 34 _________________________________________________________________________ | 34 _________________________________________________________________________ |
| 35 | E-mail Client | Web Browser | Detector Scripts | Shell | | 35 | E-mail Client | Web Browser | Detector Scripts | Shell | |
| 36 |------------------+-----------------+----------------------+-------------| | 36 |------------------+-----------------+----------------------+-------------| |
| 37 | E-mail User | Web User | Detector | Command | | 37 | E-mail User | Web User | Detector | Command | |
| 38 |-------------------------------------------------------------------------| | 38 |-------------------------------------------------------------------------| |
| 39 | Roundup Database Layer | | 39 | Roundup Database Layer | |
| 40 |-------------------------------------------------------------------------| | 40 |-------------------------------------------------------------------------| |
| 41 | Hyperdatabase Layer | | 41 | Hyperdatabase Layer | |
| 42 |-------------------------------------------------------------------------| | 42 |-------------------------------------------------------------------------| |
| 66 written by Ka-Ping Yee in the "doc" directory. If nothing else, it has a | 66 written by Ka-Ping Yee in the "doc" directory. If nothing else, it has a |
| 67 much prettier cake :) | 67 much prettier cake :) |
| 68 ''' | 68 ''' |
| 69 __docformat__ = 'restructuredtext' | 69 __docformat__ = 'restructuredtext' |
| 70 | 70 |
| 71 __version__ = '1.3.3' | 71 __version__ = '1.4.0' |
| 72 | 72 |
| 73 # vim: set filetype=python ts=4 sw=4 et si | 73 # vim: set filetype=python ts=4 sw=4 et si |
