summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: baef732)
raw | patch | inline | side by side (parent: baef732)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 13 Mar 2009 22:48:17 +0000 (22:48 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 13 Mar 2009 22:48:17 +0000 (22:48 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4202 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
doc/announcement.txt | patch | blob | history | |
setup.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index a221786103c8c6e569b3888b39452f5145d5252f..a13973637d7c8ec979bf40c63de6bf1445d85098 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.
-2009-03-13 1.4.7 (r4197)
+2009-03-13 1.4.7 (r4202)
Features:
- Provide a "no selection" option in web interface selection widgets
- EditCSV and ExportCSV altered to include permission checks
- HTTP POST required on actions which alter data
- HTML file uploads served as application/octet-stream
+- Handle Unauthorised in file serving correctly
- New item action reject creation of new users
- Item retirement was not being controlled
- Roundup is now compatible with Python 2.6
diff --git a/doc/announcement.txt b/doc/announcement.txt
index 0326bbf2b61a07f5d4d2a2ad5823a72c82c5c7b2..2b12502700eabb17d0453a2d6149a2e640dc9ff6 100644 (file)
--- a/doc/announcement.txt
+++ b/doc/announcement.txt
- EditCSV and ExportCSV altered to include permission checks
- HTTP POST required on actions which alter data
- HTML file uploads served as application/octet-stream
+- Handle Unauthorised in file serving correctly
- New item action reject creation of new users
- Item retirement was not being controlled
- Roundup is now compatible with Python 2.6
- Improved French and German translations
- Improve consistency of item sorting in HTML interface
-- Support sendfile() in mod_python for better file transfer
+- Various other small bug fixes, robustification and optimisation
+
+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
-- Enable XML-RPC through regular web interface
-- Various other small bug fixes, robustification and optimisation
+- 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.
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/setup.py b/setup.py
index 839ed0c4f5f15724c7c8f10dea18cf03a6554818..68e72195d38df26942c3e945f0ca90634da75a86 100644 (file)
--- a/setup.py
+++ b/setup.py
'd' -- A directory
'e' -- A glob pattern"""
-
+
return (d, [f for f in glob('%s/%s'%(d, e)) if os.path.isfile(f)])
def scriptname(path):
# perform the setup action
from roundup import __version__
-
+
setup(name='roundup',
version=__version__,
author="Richard Jones",
- EditCSV and ExportCSV altered to include permission checks
- HTTP POST required on actions which alter data
- HTML file uploads served as application/octet-stream
+- Handle Unauthorised in file serving correctly
- New item action reject creation of new users
- Item retirement was not being controlled
- Roundup is now compatible with Python 2.6
- Improved French and German translations
- Improve consistency of item sorting in HTML interface
-- Support sendfile() in mod_python for better file transfer
+- Various other small bug fixes, robustification and optimisation
+
+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
-- Enable XML-RPC through regular web interface
-- Various other small bug fixes, robustification and optimisation
+- 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.
If you're upgrading from an older version of Roundup you *must* follow
the "Software Upgrade" guidelines given in the maintenance documentation.