comparison doc/FAQ.txt @ 2921:ad4fb8a14a97

more doc updates, not so many TODOs any more
author Richard Jones <richard@users.sourceforge.net>
date Thu, 18 Nov 2004 05:05:25 +0000
parents 21a0b049fed8
children 74fecc186a2d 9cecc6c6b297
comparison
equal deleted inserted replaced
2920:98e6219ddb83 2921:ad4fb8a14a97
1 =========== 1 ===========
2 Roundup FAQ 2 Roundup FAQ
3 =========== 3 ===========
4 4
5 :Version: $Revision: 1.19 $ 5 :Version: $Revision: 1.20 $
6 6
7 .. contents:: 7 .. contents::
8 8
9 9
10 Installation 10 Installation
32 How do I put Roundup behind Apache 32 How do I put Roundup behind Apache
33 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 33 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
34 34
35 We have a project (foo) running on ``tracker.example:8080``. 35 We have a project (foo) running on ``tracker.example:8080``.
36 We want ``http://tracker.example/issues`` to use the roundup server, so we 36 We want ``http://tracker.example/issues`` to use the roundup server, so we
37 set that up on port 8080 on ``tracker.example`` with the ``config.py`` line:: 37 set that up on port 8080 on ``tracker.example`` with the ``config.ini`` line::
38 38
39 TRACKER_WEB = 'http://tracker.example/issues/' 39 [tracker]
40 ...
41 web = 'http://tracker.example/issues/'
40 42
41 We have a "foo_issues" tracker and we run the server with:: 43 We have a "foo_issues" tracker and we run the server with::
42 44
43 roundup-server -p 8080 issues=/home/roundup/trackers/issues 45 roundup-server -p 8080 issues=/home/roundup/trackers/issues
44 46
170 172
171 173
172 I keep getting logged out 174 I keep getting logged out
173 ~~~~~~~~~~~~~~~~~~~~~~~~~ 175 ~~~~~~~~~~~~~~~~~~~~~~~~~
174 176
175 Make sure that the TRACKER_WEB setting in your tracker's config.py is set 177 Make sure that the ``tracker`` -> ``web`` setting in your tracker's
176 to the URL of the tracker. 178 config.ini is set to the URL of the tracker.
177 179
178 180
179 How is sorting performed, and why does it seem to fail sometimes? 181 How is sorting performed, and why does it seem to fail sometimes?
180 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 182 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
181 183

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