|
|
This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. (June 2009) |
| Developer(s) | Richard Jones |
|---|---|
| Initial release | August 18, 2001 |
| Stable release | 1.4.19 / July 15, 2011 |
| Written in | Python |
| Operating system | Cross-platform |
| Type | Issue tracking system |
| License | MIT license[1] |
| Website | roundup-tracker.org |
Roundup is an open-source issue or bug tracking system featuring a command-line, web and e-mail interface. It is written in Python and designed to be highly customizable[2]. Roundup was designed by Ka-Ping Yee for the Software Carpentry project and has been developed since 2001 under the direction of Richard Jones. It is currently the issue tracker for the Python programming language itself[3]. It was once described as "like Bugzilla without the six years of training, or RT without that tedious MySQL rubbish."[4]
|
Contents
|
The standard configuration of Roundup features:
Roundup runs as a daemon process, CGI script[8] or alternatively using WSGI (mod_python is supported but that project is no longer in development).
Roundup is customized by changing the contents of the tracker instance directory:
The database schema is defined in a Python file in the tracker instance's root directory; it is re-read whenever the server is started anew. When changes are found (e.g. new attributes), the tables of the underlying RDBS are altered accordingly.
Roundup uses the Template Attribute Language (TAL) known from Zope to create HTML or XHTML output. Some templates are used for several classes, e.g. _generic.index.html, which allows (authorized) users to change the objects of all classes which lack an own index template.
When an "issue123" is requested, this designator is split in the issue class and the id "123"[9]. By default an "item" template is chosen: First, an issue.item.html template file is looked for; if it can't be found, _generic.item.html is used as a fallback option. If this is missing equally, an error occurs.
Many Roundup functions, including some of the standard functionality, are implemented using so-called detectors[10], which are located in the "detectors" sub-directory of the tracker instance. They are Python subroutines which have access to the object to change (if already created) and the requested attribute changes.
Detectors are distinguished between auditors and reactors. Auditors are used primarily for several automatic changes (in the standard configuration, the assignedto user is automagically added to the nosy list of the issue), and to refuse un-allowed changes; reactors are executed thereafter and used e.g. for the e-mail notification feature, sending notification mails to all users interested in a certain issue when a comment is added to it.
Detectors are triggered whenever one of the actions
is requested. They can be used to create an elaborated custom workflow.
The instance subdirectory "extensions" can hold additional files which are needed for extended functionalities which can't (conveniently) be done with TAL; even totally new actions are possible.
Python modules which are used by both detectors and extensions can be put in the "lib" subdirectory
classic tracker template is distributed as the standard template and data structure set, but can be used as a starting point for customizationThis entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)