summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9e0561f)
raw | patch | inline | side by side (parent: 9e0561f)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 17 Oct 2002 00:22:16 +0000 (00:22 +0000) | ||
committer | richard <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
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1361 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
doc/index.txt | patch | blob | history | |
doc/installation.txt | patch | blob | history | |
setup.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index b468ebdf56a02e4bb68e8405b5ded1348180cec0..99d52535968c98d681de3d123cfbf82a27805c2d 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
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 aa6faaa23393ae0e8f19301c6a361755f10c198d..7973569ff7b62f89a7fad4453077cde6438c8d95 100644 (file)
--- a/doc/index.txt
+++ b/doc/index.txt
Dougal Scott,
Stefan Seefeld,
Jeffrey P Shell,
-Joel Shprentz.
+Joel Shprentz,
+Mike Thompson.
diff --git a/doc/installation.txt b/doc/installation.txt
index 4d8e114a408d76610332df62cf6dfae918c76e56..86017c2843604ebde5287a98ef890ac882fafc50 100644 (file)
--- a/doc/installation.txt
+++ b/doc/installation.txt
Installing Roundup
==================
-:Version: $Revision: 1.32 $
+:Version: $Revision: 1.33 $
.. contents::
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 97ce56f313e26f3102dcc35af987d7b4d890ad04..64176b8785e2f45bdcd5189854319d9019e65fc0 100644 (file)
--- a/setup.py
+++ b/setup.py
# 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
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'