summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 830d0e0)
raw | patch | inline | side by side (parent: 830d0e0)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 12 Jul 2010 06:05:40 +0000 (06:05 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 12 Jul 2010 06:05:40 +0000 (06:05 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4500 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
doc/announcement.txt | patch | blob | history | |
roundup/dist/command/build.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 1a583d38d8b22bf6fd31301439bb1318a48ab77b..9a681fdc385f75d95f8f768816e3ff0baa127723 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.
+2010-??-?? 1.4.16
+
+Fixed:
+
+- fixed reporting of source missing warnings
+
+
2010-07-12 1.4.15
Fixed:
+
- A bunch of regressions were introduced in the last release making Roundup
no longer work in Python releases prior to 2.6
- make URL detection a little smarter about brackets per issue2550657
2010-07-01 1.4.14
Features:
+
- Preparations for getting 2to3 work, not completed yet. (Richard Jones)
Fixed:
+
- User input not escaped when a bad template name is supplied (thanks
Benjamin Pollack)
- The email for the first message on an issue was having its In-Reply-To
diff --git a/doc/announcement.txt b/doc/announcement.txt
index 52ef202f6c619a8e59ad0abc15d406f710e05a6b..1a371d8190064124a9b30602d30729ce46fcaece 100644 (file)
--- a/doc/announcement.txt
+++ b/doc/announcement.txt
regressions in the last release:
Fixed:
+
- A bunch of regressions were introduced in the last release making Roundup
no longer work in Python releases prior to 2.6
- make URL detection a little smarter about brackets per issue2550657
index 9337aa8809b1cf3003b4a4eda2b6dfba54fc0731..0fca2cec65cfe814cb28c5ab5c607163cb285cae 100644 (file)
manifest = [l.strip() for l in f.readlines()]
finally:
f.close()
- err = [line for line in manifest if not os.path.exists(line)]
- err.sort()
+ err = set([line for line in manifest if not os.path.exists(line)])
# ignore auto-generated files
- if err == ['roundup-admin', 'roundup-demo', 'roundup-gettext',
- 'roundup-mailgw', 'roundup-server']:
- err = []
+ err = err - set(['roundup-admin', 'roundup-demo', 'roundup-gettext',
+ 'roundup-mailgw', 'roundup-server', 'roundup-xmlrpc-server'])
if err:
n = len(manifest)
print '\n*** SOURCE WARNING: There are files missing (%d/%d found)!'%(