Mercurial > p > roundup > code
view run_tests @ 1320:3758a5af985f
Lots of little fixes in this update:
- fixed Date.local()
- email quoted text stripping is controllable again [SF#650742]
- extract attachment name from content-disposition if name missing [SF#637278]
- removed FILTER_POSITION from bundled configs
- reverse message listing in issue display (reversion of recent change)
- bad entries for multilink editing in cgi don't traceback now [SF#640310]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 10 Dec 2002 00:11:16 +0000 |
| parents | e5826025eeb7 |
| children | 4074e2336eed |
line wrap: on
line source
#! /usr/bin/env python # # Copyright (c) 2001 Richard Jones # This module is free software, and you may redistribute it and/or modify # under the same terms as Python, so long as this copyright message and # disclaimer are retained in their original form. # # This module is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # $Id: run_tests,v 1.8 2002-09-10 01:07:04 richard Exp $ # make sure we have the htmlbase try: from roundup.templates.classic import htmlbase except ImportError: import setup setup.buildTemplates() from test import go import sys if len(sys.argv) > 1: go(sys.argv[1:]) else: go() # vim: set filetype=python ts=4 sw=4 et si
