Mercurial > p > roundup > code
changeset 1287:5402a6f2a754
Added quotes around python interpreter in windows bat [SF#623963]
Fixed link at end of installation doc [SF#623957]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 17 Oct 2002 00:22:16 +0000 |
| parents | 4cbbdcf449f6 |
| children | ad8de51d7cd5 |
| files | CHANGES.txt doc/index.txt doc/installation.txt setup.py |
| diffstat | 4 files changed, 13 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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.
--- 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
--- 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'
