Code

cgi-bin install note
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 18 Aug 2003 06:31:59 +0000 (06:31 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 18 Aug 2003 06:31:59 +0000 (06:31 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1818 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
doc/installation.txt
setup.py

index ef1a456f1643ed77df195b5fcd79f2404e40535c..2c86ddcd63bd358cec188b6b3d34a608f8ffb60c 100644 (file)
@@ -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)
index 43660f0fbef8736b7d59e4ef415010fee2f86739..ff3c05328fa86688668b79e4f98748861c2a9c73 100644 (file)
@@ -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)::
 
index 8a0b09ba8e23daf98a74b57a4fa1bd03816f5b5b..70918726f4c8c7e3ad35adf796ceaf8f929476a7 100644 (file)
--- 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',