comparison roundup/__init__.py @ 2005:fc52d57c6c3e

documentation cleanup
author Richard Jones <richard@users.sourceforge.net>
date Wed, 11 Feb 2004 23:55:10 +0000
parents 8a6077ec701b
children d31025f2ec43
comparison
equal deleted inserted replaced
2004:1782fe36e7b8 2005:fc52d57c6c3e
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.26 2004-01-20 00:05:07 richard Exp $ 18 # $Id: __init__.py,v 1.27 2004-02-11 23:55:08 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.
24 24
25 Roundup manages a number of issues (with properties such as 25 Roundup manages a number of issues (with properties such as
41 | Hyperdatabase Layer | 41 | Hyperdatabase Layer |
42 |-------------------------------------------------------------------------| 42 |-------------------------------------------------------------------------|
43 | Storage Layer | 43 | Storage Layer |
44 ------------------------------------------------------------------------- 44 -------------------------------------------------------------------------
45 45
46 The first layer represents the users (chocolate). 46 1. The first layer represents the users (chocolate).
47 The second layer is the Roundup interface to the users (vanilla). 47 2. The second layer is the Roundup interface to the users (vanilla).
48 The third and fourth layers are the internal Roundup database storage 48 3. The third and fourth layers are the internal Roundup database storage
49 mechanisms (strawberry). 49 mechanisms (strawberry).
50 The final, lowest layer is the underlying database storage (rum). 50 4. The final, lowest layer is the underlying database storage (rum).
51 51
52 These are implemented in the code in the following manner:: 52 These are implemented in the code in the following manner::
53 53
54 E-mail User: roundup-mailgw and roundup.mailgw 54 E-mail User: roundup-mailgw and roundup.mailgw
55 Web User: cgi-bin/roundup.cgi or roundup-server over 55 Web User: cgi-bin/roundup.cgi or roundup-server over
64 64
65 For more information, see the original overview and specification documents 65 For more information, see the original overview and specification documents
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 70
70 __version__ = '0.7.0b1' 71 __version__ = '0.7.0b1'
71 72
72 # vim: set filetype=python ts=4 sw=4 et si 73 # vim: set filetype=python ts=4 sw=4 et si

Roundup Issue Tracker: http://roundup-tracker.org/