# HG changeset patch # User Richard Jones # Date 1034814136 0 # Node ID 5402a6f2a754eae866c75d143a1a5c4335f642e8 # Parent 4cbbdcf449f660bc56462d65ff41a0daa2578f04 Added quotes around python interpreter in windows bat [SF#623963] Fixed link at end of installation doc [SF#623957] diff -r 4cbbdcf449f6 -r 5402a6f2a754 CHANGES.txt --- a/CHANGES.txt Wed Oct 16 06:55:17 2002 +0000 +++ b/CHANGES.txt Thu Oct 17 00:22:16 2002 +0000 @@ -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. +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 diff -r 4cbbdcf449f6 -r 5402a6f2a754 doc/index.txt --- a/doc/index.txt Wed Oct 16 06:55:17 2002 +0000 +++ b/doc/index.txt Thu Oct 17 00:22:16 2002 +0000 @@ -78,7 +78,8 @@ Dougal Scott, Stefan Seefeld, Jeffrey P Shell, -Joel Shprentz. +Joel Shprentz, +Mike Thompson. diff -r 4cbbdcf449f6 -r 5402a6f2a754 doc/installation.txt --- a/doc/installation.txt Wed Oct 16 06:55:17 2002 +0000 +++ b/doc/installation.txt Thu Oct 17 00:22:16 2002 +0000 @@ -2,7 +2,7 @@ Installing Roundup ================== -:Version: $Revision: 1.32 $ +:Version: $Revision: 1.33 $ .. contents:: @@ -423,10 +423,10 @@ Back to `Table of Contents`_ -Next: `Getting Started`_ +Next: `User Guide`_ .. _`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 diff -r 4cbbdcf449f6 -r 5402a6f2a754 setup.py --- a/setup.py Wed Oct 16 06:55:17 2002 +0000 +++ b/setup.py Thu Oct 17 00:22:16 2002 +0000 @@ -16,7 +16,7 @@ # 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 @@ -85,8 +85,8 @@ 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'