Skip to content

Commit 8120784

Browse files
author
Richard Jones
committed
Some version number and documentation fixes.
1 parent 0600ad2 commit 8120784

File tree

4 files changed

+52
-26
lines changed

4 files changed

+52
-26
lines changed

MIGRATION.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Migrating to newer versions of Roundup
55
Migrating from 0.2.x to 0.3.x
66
=============================
77

8+
Please read each section carefully and edit your instance home files
9+
accordingly.
10+
11+
812
Cookie Authentication changes
913
-----------------------------
1014
0.3.0 introduces cookie authentication - you will need to copy the

doc/announcement.txt

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
Roundup 0.3.0pre3 - an issue tracking system
2-
3-
**PREVIEW RELEASE**
1+
Roundup 0.3.0 - an issue tracking system
42

53
This release contains several new features which will require migration, so
64
we're releasing this preview for the bleeding-edge users.
75

8-
**NOTE** existing users _must_ read the MIGRATION.txt that accompanies the
9-
source.
10-
11-
This release contains a bunch of changes and bug fixes. See the CHANGES
12-
file for details.
6+
Big stuff in this release:
7+
- lots of bug fixes, thanks to all users for their great feedback!
8+
- much more flexible administration tool
9+
- much better handling of errors
10+
- more configuration options
11+
- CGI login uses cookies instead of basic auth
12+
- passwords are encoded in the database
13+
- much, much more: see the CHANGES file for details.
1314

1415
Source and documentation is available at the website:
1516
http://roundup.sourceforge.net/
1617

1718
Release Info (via download page):
18-
http://sourceforge.net/project/showfiles.php?group_id=31577
19+
http://sourceforge.net/projects/roundup
1920

2021
Mailing lists - the place to ask questions:
2122
http://sourceforge.net/mail/?group_id=31577

doc/index.html

Lines changed: 33 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -209,26 +209,44 @@ <h2><a name="startweb">Web Interface</a></h2>
209209

210210
<strong>Apache:</strong>
211211
<ol>
212-
<li>Make sure roundup.cgi is executable. Edit it at the top -
212+
<li>The CGI script is found in the cgi-bin directory of the roundup
213+
distribution.
214+
</li>
215+
<li>Make sure roundup.cgi is executable. Edit it at the top -
213216
ROUNDUP_INSTANCE_HOMES needs to know about your instance.
214-
<li>Edit your <tt>/etc/httpd/conf/httpd.conf</tt> and make sure that the
215-
<tt>/home/httpd/html/roundup/roundup.cgi</tt> script will be treated as a CGI
217+
</li>
218+
<li>Edit your /etc/httpd/conf/httpd.conf and make sure that the
219+
/home/httpd/html/roundup/roundup.cgi script will be treated as a CGI
216220
script.
217-
<li>Add the following to your <tt>/etc/httpd/conf/httpd.conf</tt>:
218-
<pre>
219-
------8<------- snip here ------8<-------
220-
RewriteEngine on
221-
RewriteCond %{HTTP:Authorization} ^(.*)
222-
RewriteRule ^/roundup/roundup.cgi(.*) /home/httpd/html/roundup/roundup.cgi$1 [e=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l]
223-
------8<------- snip here ------8<-------
224-
</pre>
225-
note: the RewriteRule must be on one line - no breaks
226-
<li>Re-start your apache to re-load the config
227-
<li>Load up the page <tt>/roundup/roundup.cgi/&lt;instance name&gt;/index</tt> where
221+
</li>
222+
<li>Re-start your apache to re-load the config if necessary.
223+
</li>
224+
<li>Load up the page "/roundup/roundup.cgi/<instance name>/index" where
228225
instance name is the name you nominated in ROUNDUP_INSTANCE_HOMES.
226+
</li>
227+
<li>To use the CGI script unchanged, which allows much easier updates,
228+
add these directives to your "httpd.conf":
229+
<pre>
230+
SetEnv ROUNDUP_LOG "/var/log/roundup.log"
231+
SetEnv ROUNDUP_INSTANCE_HOMES "Default=/usr/local/share/roundup/instances/Default"
232+
SetEnv ROUNDUP_DEBUG "0"
233+
</pre>
234+
</li>
235+
<li>On Windows, write a batch file "roundup.bat" similar to the one below
236+
and place it into your cgi-bin directory:
237+
<pre>
238+
@echo off
239+
set ROUNDUP_LOG=c:\Python21\share\roundup\cgi.log
240+
set ROUNDUP_INSTANCE_HOMES=Default=c:\Python21\share\roundup\instances\Default;
241+
set ROUNDUP_DEBUG=0
242+
c:\Python21\python.exe c:\Python21\share\roundup\cgi-bin\roundup.cgi
243+
</pre>
244+
</li>
229245
</ol>
230246

231247

248+
249+
232250
<h2><a name="users">Users</a></h2>
233251

234252
<h3>Users and permissions</h3>
@@ -1183,7 +1201,7 @@ <h1><a name="ack">Acknowledgements</a></h1>
11831201

11841202
<p>&nbsp;</p>
11851203
<hr>
1186-
$Id: index.html,v 1.18 2001-11-07 05:38:57 richard Exp $
1204+
$Id: index.html,v 1.19 2001-11-21 23:42:54 richard Exp $
11871205
<p>&nbsp;</p>
11881206

11891207
</body></html>

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.24 2001-11-06 22:32:15 jhermann Exp $
19+
# $Id: setup.py,v 1.25 2001-11-21 23:42:54 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -42,7 +42,7 @@
4242

4343

4444
setup ( name = "roundup",
45-
version = "0.3.0pre3",
45+
version = "0.3.0",
4646
description = "Roundup issue tracking system.",
4747
author = "Richard Jones",
4848
author_email = "[email protected]",
@@ -56,6 +56,9 @@
5656

5757
#
5858
# $Log: not supported by cvs2svn $
59+
# Revision 1.24 2001/11/06 22:32:15 jhermann
60+
# Install roundup.cgi to share/roundup
61+
#
5962
# Revision 1.23 2001/10/17 06:04:00 richard
6063
# Beginnings of an interactive mode for roundup-admin
6164
#

0 commit comments

Comments
 (0)