|
1 | | -*Roundup (0.4.1): An Issue-Tracking System for Knowledge Workers* |
| 1 | +Installing Roundup |
| 2 | +================== |
2 | 3 |
|
3 | 4 | `Table of contents`_ |
4 | 5 |
|
5 | 6 | - Overview_ |
| 7 | + |
| 8 | + - `Classic Template`_ |
| 9 | + - `Extended Template`_ |
| 10 | + |
6 | 11 | - Prerequisites_ |
7 | 12 |
|
8 | 13 | - `Testing your Python`_ |
|
15 | 20 | Overview |
16 | 21 | ======== |
17 | 22 |
|
18 | | -TODO |
| 23 | +Broken out separately, there are several conceptual pieces to a |
| 24 | +Roundup installation: |
| 25 | + |
| 26 | +Roundup support code |
| 27 | + Installed into your Python install's lib directory |
| 28 | + |
| 29 | +Roundup scripts |
| 30 | + These include the email gateway, the roundup |
| 31 | + HTTP server, the roundup administration command-line interface, etc. |
| 32 | + |
| 33 | +Roundup instances |
| 34 | + Instances consist of core support files, issues |
| 35 | + (be they bug reports or otherwise), instance configuration file(s), |
| 36 | + etc. Roundup instances also adhere to a specific "Template" which |
| 37 | + defines the fields usable/assignable on a per-issue basis. A |
| 38 | + description of the provided templates follows. |
| 39 | + |
| 40 | +Classic Template |
| 41 | +---------------- |
| 42 | + |
| 43 | +The classic template is the one defined in the `Roundup Specification`_. It |
| 44 | +holds issues which have priorities and statuses. Each issue may also have a |
| 45 | +set of messages which are disseminated to the issue's list of nosy users. |
| 46 | + |
| 47 | + |
| 48 | +Extended Template |
| 49 | +----------------- |
| 50 | + |
| 51 | +The extended template adds additional information to issues: product, |
| 52 | +platform, version, targetversion and supportcall. |
| 53 | +There is an additional class for |
| 54 | +handling support calls, which includes a time log, customername, rate and |
| 55 | +source. |
| 56 | + |
| 57 | +The priorty class has different default entries too: "fatal-bug", "bug", |
| 58 | +"usability" and "feature". |
| 59 | + |
| 60 | +Users of this template will want to change the contents of the product |
| 61 | +class as soon as the instance is created. |
| 62 | + |
19 | 63 |
|
20 | 64 | Prerequisites |
21 | 65 | ============= |
@@ -43,24 +87,6 @@ Installation |
43 | 87 |
|
44 | 88 | Set aside 15-30 minutes. |
45 | 89 |
|
46 | | -Broken out separately, there are several conceptual pieces to a |
47 | | -Roundup installation: |
48 | | - |
49 | | -Roundup support code |
50 | | - Installed into your Python install's lib directory |
51 | | - |
52 | | -Roundup scripts |
53 | | - These include the email gateway, the roundup |
54 | | - HTTP server, the roundup administration command-line interface, etc. |
55 | | - |
56 | | -Roundup instances |
57 | | - Instances consist of core support files, issues |
58 | | - (be they bug reports or otherwise), instance configuration file(s), |
59 | | - etc. Roundup instances also adhere to a specific "Template" which |
60 | | - defines the fields usable/assignable on a per-issue basis. A |
61 | | - description of the provided templates can be found under the |
62 | | - 'TODO' section. |
63 | | - |
64 | 90 | 1. To install the Roundup support code into your Python tree and |
65 | 91 | Roundup scripts into /usr/local/bin:: |
66 | 92 |
|
@@ -89,7 +115,7 @@ Roundup instances |
89 | 115 | c. ``roundup-admin init`` |
90 | 116 |
|
91 | 117 | You will be asked a series of questions. A description of |
92 | | - the Roundup-provided templates can be found under TODO:: |
| 118 | + the Roundup-provided templates can be found under the Overview_:: |
93 | 119 |
|
94 | 120 | Enter instance home: /opt/roundup/instances/support |
95 | 121 | Templates: classic, extended |
@@ -157,7 +183,8 @@ Further Reading |
157 | 183 |
|
158 | 184 | If you intend to use Roundup with anything other than the defualt |
159 | 185 | templates, if you would like to hack on Roundup, or if you would |
160 | | -like implementation details, you should read 'TODO' |
| 186 | +like implementation details, you should read `Customising Roundup`_. |
| 187 | + |
161 | 188 |
|
162 | 189 | Platform-Specific Notes |
163 | 190 | ======================= |
@@ -190,5 +217,7 @@ Next: `Getting Started`_ |
190 | 217 |
|
191 | 218 | .. _`table of contents`: index.html |
192 | 219 | .. _`getting started`: getting_started.html |
| 220 | +.. _`roundup specification`: spec.html |
| 221 | +.. _`customising roundup`: customizing.html |
193 | 222 |
|
194 | | -$Id: installation.stx,v 1.2 2002-03-08 23:41:46 richard Exp $ |
| 223 | +$Id: installation.stx,v 1.3 2002-03-09 22:46:52 richard Exp $ |
0 commit comments