From cdab0bcb4a2677e3a6426accf2a2cec2bde84fb5 Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 10 Aug 2009 03:42:17 +0000 Subject: [PATCH] remove unused, deprecated import git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4344 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 2 +- doc/announcement.txt | 38 ++++++++++++----------------- roundup/__init__.py | 2 +- roundup/backends/back_postgresql.py | 2 +- setup.py | 27 +++++++++++--------- 5 files changed, 35 insertions(+), 36 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 8ce2756..f882af3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,7 +1,7 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2009-03-?? 1.4.9 (r??) +2009-08-10 1.4.9 (r4340) Fixes: diff --git a/doc/announcement.txt b/doc/announcement.txt index 1392f15..a387a87 100644 --- a/doc/announcement.txt +++ b/doc/announcement.txt @@ -1,25 +1,19 @@ -I'm proud to release version 1.4.8 of Roundup. - -This release fixes some regressions: - -- bug introduced into hyperdb filter (issue 2550505) -- bug introduced into CVS export and view (issue 2550529) -- bugs introduced in the migration to the email package (issue 2550531) - -And adds a couple of other fixes: - -- handle bogus pagination values (issue 2550530) -- fix TLS handling with some SMTP servers (issues 2484879 and 1912923) - - -Though some new features made it in also: - -- Provide a "no selection" option in web interface selection widgets -- Debug logging now uses the logging module rather than print -- Allow CGI frontend to serve XMLRPC requests. -- Added XMLRPC actions, as well as bridging CGI actions to XMLRPC actions. -- Optimized large file serving via mod_python / sendfile(). -- Support resuming downloads for (large) files. +I'm proud to release version 1.4.9 of Roundup which fixes some bugs: + +- fixed action taken in response to invalid GET request +- fixed classic tracker template to submit POST requests when appropriate +- fix problems with french and german locale files (issue 2550546) +- Run each message of the mail-gateway in a separate transaction, + see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/9500 +- fix problem with bounce-message if incoming mail has insufficient + privilege, e.g., user not existing (issue 2550534) +- fix construction of individual messages to nosy recipents with + attachments (issue 2550568) +- re-order sqlite imports to handle multiple installed versions (issue + 2550570) +- don't show entire history by default + (fixes http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540629) +- remove use of string exception If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation. diff --git a/roundup/__init__.py b/roundup/__init__.py index 1c3b24d..8e1a0c7 100644 --- a/roundup/__init__.py +++ b/roundup/__init__.py @@ -68,6 +68,6 @@ much prettier cake :) ''' __docformat__ = 'restructuredtext' -__version__ = '1.4.8' +__version__ = '1.4.9' # vim: set filetype=python ts=4 sw=4 et si diff --git a/roundup/backends/back_postgresql.py b/roundup/backends/back_postgresql.py index 3298389..9e9d278 100644 --- a/roundup/backends/back_postgresql.py +++ b/roundup/backends/back_postgresql.py @@ -9,7 +9,7 @@ '''Postgresql backend via psycopg for Roundup.''' __docformat__ = 'restructuredtext' -import os, shutil, popen2, time +import os, shutil, time try: import psycopg from psycopg import QuotedString diff --git a/setup.py b/setup.py index 206f74e..668f0b1 100644 --- a/setup.py +++ b/setup.py @@ -101,17 +101,22 @@ def main(): description="A simple-to-use and -install issue-tracking system" " with command-line, web and e-mail interfaces. Highly" " customisable.", - long_description=''' -1.4.8 fixes some regressions: - -- bug introduced into hyperdb filter (issue 2550505) -- bug introduced into CVS export and view (issue 2550529) -- bugs introduced in the migration to the email package (issue 2550531) - -And adds a couple of other fixes: - -- handle bogus pagination values (issue 2550530) -- fix TLS handling with some SMTP servers (issues 2484879 and 1912923) + long_description='''This version of Roundup fixes some bugs: + +- fixed action taken in response to invalid GET request +- fixed classic tracker template to submit POST requests when appropriate +- fix problems with french and german locale files (issue 2550546) +- Run each message of the mail-gateway in a separate transaction, + see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/9500 +- fix problem with bounce-message if incoming mail has insufficient + privilege, e.g., user not existing (issue 2550534) +- fix construction of individual messages to nosy recipents with + attachments (issue 2550568) +- re-order sqlite imports to handle multiple installed versions (issue + 2550570) +- don't show entire history by default + (fixes http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540629) +- remove use of string exception If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation. -- 2.30.2