From: richard Date: Mon, 18 Aug 2003 06:31:59 +0000 (+0000) Subject: cgi-bin install note X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a599c68a48d60a68b724a75274cb9c33ef919021;p=roundup.git cgi-bin install note git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1818 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index ef1a456..2c86ddc 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,10 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. +2003-08-?? 0.6.1 +- Add note about installing cgi-bin with a different interpreter + + 2003-08-08 0.6.0 - Fixed editing attributes on FileClass nodes. - Query editing now works correctly (sf bug 621248) diff --git a/doc/installation.txt b/doc/installation.txt index 43660f0..ff3c053 100644 --- a/doc/installation.txt +++ b/doc/installation.txt @@ -2,7 +2,7 @@ Installing Roundup ================== -:Version: $Revision: 1.56 $ +:Version: $Revision: 1.57 $ .. contents:: @@ -280,6 +280,9 @@ A benefit of using the cgi-bin approach is that it's the easiest way to restrict access to your tracker to only use HTTPS. Access will be slower than through the `stand-alone web server`_ though. +Note that if your Python isn't install as "python" then you'll need to edit +the ``roundup.cgi`` script to fix the first line. + If you're using IIS on a Windows platform, you'll need to run this command for the cgi to work (it turns on the PATH_INFO cgi variable):: diff --git a/setup.py b/setup.py index 8a0b09b..7091872 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: setup.py,v 1.55 2003-06-22 00:28:56 richard Exp $ +# $Id: setup.py,v 1.56 2003-08-18 06:31:59 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -186,9 +186,6 @@ def main(): command-line, web and e-mail interfaces. It is based on the winning design from Ka-Ping Yee in the Software Carpentry "Track" design competition. -This release has a couple of bufixes mostly important to Windows users, -making it possible for them to install new trackers! - The 0.6 release has lots of new goodies including: - new instant-gratification Demo Mode ("python demo.py" :) @@ -201,20 +198,19 @@ The 0.6 release has lots of new goodies including: - more documentation including revamped design document, unix manual pages and some FAQ entries - significantly more powerful form handling allowing editing of multiple - items - and creation of multiple items + items and creation of multiple items - tracker templates can contain subdirectories and static files (e.g. - images) - and we may now distribute templates separately from Roundup. Template - HTML files now have a .html extension too. -- user registration is now a two-step process, with confirmation from the email - address supplied in the registration form, and we also have a password reset - feature for forgotten password / login -- Windows Service mode for roundup-server when daemonification is attempted - on Windows. + images) and we may now distribute templates separately from Roundup. + Template HTML files now have a .html extension too. +- user registration is now a two-step process, with confirmation from the + email address supplied in the registration form, and we also have a + password reset feature for forgotten password / login +- Windows Service mode for roundup-server when daemonification is + attempted on Windows +- lots of speed enhancements, making the web interface much more responsive - fixed issues with dumb email or web clients -- lots more little tweaks and back-end work... - email system handles more SMTP and POP features (TLS, APOP, ...) +- lots more little tweaks and back-end work... ''', author = "Richard Jones", author_email = "richard@users.sourceforge.net", @@ -222,7 +218,7 @@ The 0.6 release has lots of new goodies including: download_url = 'http://sourceforge.net/project/showfiles.php?group_id=31577', packages = packagelist, classifiers = [ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Environment :: Web Environment', 'Intended Audience :: End Users/Desktop',