Skip to content

Commit 6689ce5

Browse files
author
Richard Jones
committed
cgi-bin install note
1 parent c3f75d7 commit 6689ce5

File tree

3 files changed

+20
-17
lines changed

3 files changed

+20
-17
lines changed

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4+
2003-08-?? 0.6.1
5+
- Add note about installing cgi-bin with a different interpreter
6+
7+
48
2003-08-08 0.6.0
59
- Fixed editing attributes on FileClass nodes.
610
- Query editing now works correctly (sf bug 621248)

doc/installation.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Installing Roundup
33
==================
44

5-
:Version: $Revision: 1.56 $
5+
:Version: $Revision: 1.57 $
66

77
.. contents::
88

@@ -280,6 +280,9 @@ A benefit of using the cgi-bin approach is that it's the easiest way to
280280
restrict access to your tracker to only use HTTPS. Access will be slower
281281
than through the `stand-alone web server`_ though.
282282

283+
Note that if your Python isn't install as "python" then you'll need to edit
284+
the ``roundup.cgi`` script to fix the first line.
285+
283286
If you're using IIS on a Windows platform, you'll need to run this command
284287
for the cgi to work (it turns on the PATH_INFO cgi variable)::
285288

setup.py

Lines changed: 12 additions & 16 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.55 2003-06-22 00:28:56 richard Exp $
19+
# $Id: setup.py,v 1.56 2003-08-18 06:31:59 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -186,9 +186,6 @@ def main():
186186
command-line, web and e-mail interfaces. It is based on the winning design
187187
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
188188
189-
This release has a couple of bufixes mostly important to Windows users,
190-
making it possible for them to install new trackers!
191-
192189
The 0.6 release has lots of new goodies including:
193190
194191
- new instant-gratification Demo Mode ("python demo.py" :)
@@ -201,28 +198,27 @@ def main():
201198
- more documentation including revamped design document, unix manual pages
202199
and some FAQ entries
203200
- significantly more powerful form handling allowing editing of multiple
204-
items
205-
and creation of multiple items
201+
items and creation of multiple items
206202
- tracker templates can contain subdirectories and static files (e.g.
207-
images)
208-
and we may now distribute templates separately from Roundup. Template
209-
HTML files now have a .html extension too.
210-
- user registration is now a two-step process, with confirmation from the email
211-
address supplied in the registration form, and we also have a password reset
212-
feature for forgotten password / login
213-
- Windows Service mode for roundup-server when daemonification is attempted
214-
on Windows.
203+
images) and we may now distribute templates separately from Roundup.
204+
Template HTML files now have a .html extension too.
205+
- user registration is now a two-step process, with confirmation from the
206+
email address supplied in the registration form, and we also have a
207+
password reset feature for forgotten password / login
208+
- Windows Service mode for roundup-server when daemonification is
209+
attempted on Windows
210+
- lots of speed enhancements, making the web interface much more responsive
215211
- fixed issues with dumb email or web clients
216-
- lots more little tweaks and back-end work...
217212
- email system handles more SMTP and POP features (TLS, APOP, ...)
213+
- lots more little tweaks and back-end work...
218214
''',
219215
author = "Richard Jones",
220216
author_email = "[email protected]",
221217
url = 'http://roundup.sourceforge.net/',
222218
download_url = 'http://sourceforge.net/project/showfiles.php?group_id=31577',
223219
packages = packagelist,
224220
classifiers = [
225-
'Development Status :: 4 - Beta',
221+
'Development Status :: 5 - Production/Stable',
226222
'Environment :: Console',
227223
'Environment :: Web Environment',
228224
'Intended Audience :: End Users/Desktop',

0 commit comments

Comments
 (0)