|
16 | 16 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
17 | 17 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
18 | 18 | # |
19 | | -# $Id: setup.py,v 1.96 2006-12-19 03:03:36 richard Exp $ |
| 19 | +# $Id: setup.py,v 1.97 2007-02-15 04:02:43 richard Exp $ |
20 | 20 |
|
21 | 21 | from distutils.core import setup, Extension |
22 | 22 | from distutils.util import get_platform |
@@ -219,6 +219,11 @@ def check_manifest(): |
219 | 219 | finally: |
220 | 220 | f.close() |
221 | 221 | err = [line for line in manifest if not os.path.exists(line)] |
| 222 | + err.sort() |
| 223 | + # ignore auto-generated files |
| 224 | + if err == ['roundup-admin', 'roundup-demo', 'roundup-gettext', |
| 225 | + 'roundup-mailgw', 'roundup-server']: |
| 226 | + err = [] |
222 | 227 | if err: |
223 | 228 | n = len(manifest) |
224 | 229 | print '\n*** SOURCE WARNING: There are files missing (%d/%d found)!'%( |
@@ -347,21 +352,15 @@ def main(): |
347 | 352 | '''In this release |
348 | 353 | =============== |
349 | 354 |
|
350 | | -Fixed in 1.3.2: |
351 | | -
|
352 | | -- relax rules for required fields in form_parser.py (sf bug 1599740) |
353 | | -- documentation cleanup from Luke Ross (sf patch 1594860) |
354 | | -- updated Spanish translation from Ramiro Morales (sf patch 1594718) |
355 | | -- handle 8-bit untranslateable messages in tracker templates |
356 | | -- handling of required for boolean False and numeric 0 (sf bug 1608200) |
357 | | -- removed bogus args attr of ConfigurationError (sf bug 1608056) |
358 | | -- implemented start_response in roundup.cgi (sf bug 1604304) |
359 | | -- clarified windows service documentation (sf patch 1597713) |
360 | | -- HTMLClass fixed to work with new item permissions check (sf bug 1602983) |
361 | | -- support POP over SSL (sf patch 1597703) |
362 | | -- clean up input field generation and quoting of values (sf bug 1615616) |
363 | | -- allow use of roundup-server pidfile without forking (sf bug 1614753) |
364 | | -- allow translation of status/priority menu options (sf bug 1613976) |
| 355 | +Fixed in 1.3.3: |
| 356 | +
|
| 357 | +- If-Modified-Since handling was broken |
| 358 | +- Updated documentation for customising hard-coded searches in page.html |
| 359 | +- Updated Windows installation docs (thanks Bo Berglund) |
| 360 | +- Handle rounding of seconds generating invalid date values |
| 361 | +- Handle 8-bit untranslateable messages from database properties |
| 362 | +- Fix scripts/roundup-reminder date calculation (sf bug 1649979) |
| 363 | +- Improved due_date and timelog customisation docs (sf bug 1625124) |
365 | 364 |
|
366 | 365 | New Features in 1.3.0: |
367 | 366 |
|
|
0 commit comments