comparison doc/installation.txt @ 3965:248c3a7bc94d

seems like a reasonable patch
author Richard Jones <richard@users.sourceforge.net>
date Thu, 07 Feb 2008 03:36:30 +0000
parents 29dfb873b32e
children be9122d753c5
comparison
equal deleted inserted replaced
3964:22339538cf10 3965:248c3a7bc94d
1 ================== 1 ==================
2 Installing Roundup 2 Installing Roundup
3 ================== 3 ==================
4 4
5 :Version: $Revision: 1.129 $ 5 :Version: $Revision: 1.130 $
6 6
7 .. contents:: 7 .. contents::
8 :depth: 2 8 :depth: 2
9 9
10 10
498 # let apache handle static files from 'html' directories 498 # let apache handle static files from 'html' directories
499 AliasMatch /roundup/(.+)/@@file/(.*) /var/db/roundup/$1/html/$2 499 AliasMatch /roundup/(.+)/@@file/(.*) /var/db/roundup/$1/html/$2
500 # everything else is handled by roundup web UI 500 # everything else is handled by roundup web UI
501 AliasMatch /roundup/([^/]+)/(?!@@file/)(.*) /var/db/roundup/$1/dummy.py/$2 501 AliasMatch /roundup/([^/]+)/(?!@@file/)(.*) /var/db/roundup/$1/dummy.py/$2
502 # roundup requires a slash after tracker name - add it if missing 502 # roundup requires a slash after tracker name - add it if missing
503 RedirectMatch permanent /roundup/([^/]+)$ /roundup/$1/ 503 RedirectMatch permanent ^/roundup/([^/]+)$ /roundup/$1/
504 # common settings for all roundup trackers 504 # common settings for all roundup trackers
505 <Directory /var/db/roundup/*> 505 <Directory /var/db/roundup/*>
506 Order allow,deny 506 Order allow,deny
507 Allow from all 507 Allow from all
508 AllowOverride None 508 AllowOverride None
519 PythonOption TrackerLanguage ru 519 PythonOption TrackerLanguage ru
520 </Directory> 520 </Directory>
521 <Directory /var/db/roundup/devel> 521 <Directory /var/db/roundup/devel>
522 PythonOption TrackerHome /var/db/roundup/devel 522 PythonOption TrackerHome /var/db/roundup/devel
523 </Directory> 523 </Directory>
524 524
525 Notice that the ``/var/db/roundup`` path shown above refers to the directory 525 Notice that the ``/var/db/roundup`` path shown above refers to the directory
526 in which the tracker homes are stored. The actual value will thus depend on 526 in which the tracker homes are stored. The actual value will thus depend on
527 your system. 527 your system.
528 528
529 On Windows the corresponding lines will look similar to these:: 529 On Windows the corresponding lines will look similar to these::

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