Code

fixed reporting of source missing warnings
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 12 Jul 2010 06:05:40 +0000 (06:05 +0000)
committerrichard <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
doc/announcement.txt
roundup/dist/command/build.py

index 1a583d38d8b22bf6fd31301439bb1318a48ab77b..9a681fdc385f75d95f8f768816e3ff0baa127723 100644 (file)
@@ -1,9 +1,17 @@
 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
@@ -13,9 +21,11 @@ Fixed:
 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
index 52ef202f6c619a8e59ad0abc15d406f710e05a6b..1a371d8190064124a9b30602d30729ce46fcaece 100644 (file)
@@ -2,6 +2,7 @@ I'm proud to release version 1.4.15 of Roundup which mostly fixes some
 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)
@@ -32,12 +32,10 @@ def check_manifest():
         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)!'%(