Code

- added quotes around python interpreter in windows bat (sf bug 623963)
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 17 Oct 2002 00:22:16 +0000 (00:22 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 17 Oct 2002 00:22:16 +0000 (00:22 +0000)
- fixed link at end of installation doc (sf bug 623957)

git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1361 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
doc/index.txt
doc/installation.txt
setup.py

index b468ebdf56a02e4bb68e8405b5ded1348180cec0..99d52535968c98d681de3d123cfbf82a27805c2d 100644 (file)
@@ -1,6 +1,11 @@
 This file contains the changes to the Roundup system over time. The entries
 are given with the most recent entry first.
 
 This file contains the changes to the Roundup system over time. The entries
 are given with the most recent entry first.
 
+2002-10-?? 0.5.2
+- added quotes around python interpreter in windows bat (sf bug 623963)
+- fixed link at end of installation doc (sf bug 623957)
+
+
 2002-10-16 0.5.1
 - highlight rows in groups of three
 - metakit cleanups
 2002-10-16 0.5.1
 - highlight rows in groups of three
 - metakit cleanups
index aa6faaa23393ae0e8f19301c6a361755f10c198d..7973569ff7b62f89a7fad4453077cde6438c8d95 100644 (file)
@@ -78,7 +78,8 @@ Bernhard Reiter,
 Dougal Scott,
 Stefan Seefeld,
 Jeffrey P Shell,
 Dougal Scott,
 Stefan Seefeld,
 Jeffrey P Shell,
-Joel Shprentz.
+Joel Shprentz,
+Mike Thompson.
 
 
 
 
 
 
index 4d8e114a408d76610332df62cf6dfae918c76e56..86017c2843604ebde5287a98ef890ac882fafc50 100644 (file)
@@ -2,7 +2,7 @@
 Installing Roundup
 ==================
 
 Installing Roundup
 ==================
 
-:Version: $Revision: 1.32 $
+:Version: $Revision: 1.33 $
 
 .. contents::
 
 
 .. contents::
 
@@ -423,10 +423,10 @@ Python 2.1.1 as shipped with SuSE7.3 might be missing module
 
 Back to `Table of Contents`_
 
 
 Back to `Table of Contents`_
 
-Next: `Getting Started`_
+Next: `User Guide`_
 
 .. _`table of contents`: index.html
 
 .. _`table of contents`: index.html
-.. _`getting started`: getting_started.html
+.. _`user guide`: user_guide.html
 .. _`roundup specification`: spec.html
 .. _`tracker configuration`: customizing.html#tracker-configuration
 .. _`customisation documentation`: customizing.html
 .. _`roundup specification`: spec.html
 .. _`tracker configuration`: customizing.html#tracker-configuration
 .. _`customisation documentation`: customizing.html
index 97ce56f313e26f3102dcc35af987d7b4d890ad04..64176b8785e2f45bdcd5189854319d9019e65fc0 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.
 # 
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: setup.py,v 1.39 2002-09-23 08:17:50 richard Exp $
+# $Id: setup.py,v 1.40 2002-10-17 00:22:16 richard Exp $
 
 from distutils.core import setup, Extension
 from distutils.util import get_platform
 
 from distutils.core import setup, Extension
 from distutils.util import get_platform
@@ -85,8 +85,8 @@ class build_scripts_create(build_scripts):
             try:
                 if sys.platform == "win32":
                     file.write('@echo off\n'
             try:
                 if sys.platform == "win32":
                     file.write('@echo off\n'
-                        'if NOT "%%_4ver%%" == "" %(python)s -O -c "from %(package)s.scripts.%(module)s import run; run()" %%$\n'
-                        'if     "%%_4ver%%" == "" %(python)s -O -c "from %(package)s.scripts.%(module)s import run; run()" %%*\n'
+                        'if NOT "%%_4ver%%" == "" "%(python)s" -O -c "from %(package)s.scripts.%(module)s import run; run()" %%$\n'
+                        'if     "%%_4ver%%" == "" "%(python)s" -O -c "from %(package)s.scripts.%(module)s import run; run()" %%*\n'
                         % script_vars)
                 else:
                     file.write('#! %(python)s -O\n'
                         % script_vars)
                 else:
                     file.write('#! %(python)s -O\n'