From 96db8ee2bdc4620fce8db87a1ac7e55c89f10206 Mon Sep 17 00:00:00 2001 From: richard Date: Thu, 17 Oct 2002 00:22:16 +0000 Subject: [PATCH] - added quotes around python interpreter in windows bat (sf bug 623963) - 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 | 5 +++++ doc/index.txt | 3 ++- doc/installation.txt | 6 +++--- setup.py | 6 +++--- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index b468ebd..99d5253 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 --git a/doc/index.txt b/doc/index.txt index aa6faaa..7973569 100644 --- a/doc/index.txt +++ b/doc/index.txt @@ -78,7 +78,8 @@ Bernhard Reiter, Dougal Scott, Stefan Seefeld, Jeffrey P Shell, -Joel Shprentz. +Joel Shprentz, +Mike Thompson. diff --git a/doc/installation.txt b/doc/installation.txt index 4d8e114..86017c2 100644 --- a/doc/installation.txt +++ b/doc/installation.txt @@ -2,7 +2,7 @@ Installing Roundup ================== -:Version: $Revision: 1.32 $ +:Version: $Revision: 1.33 $ .. contents:: @@ -423,10 +423,10 @@ Python 2.1.1 as shipped with SuSE7.3 might be missing module 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 --git a/setup.py b/setup.py index 97ce56f..64176b8 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.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 @@ class build_scripts_create(build_scripts): 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' -- 2.30.2