Mercurial > p > roundup > code
changeset 1909:e2727ced8bea maint-0.6
remove SHA hashes from source ([SF#827510]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 11 Nov 2003 22:25:37 +0000 |
| parents | 5c6f3da9856f |
| children | 4ad75ca452d9 |
| files | CHANGES.txt roundup/__init__.py roundup/scripts/roundup_server.py templates/classic/detectors/userauditor.py templates/classic/html/_generic.help.html templates/classic/html/style.css templates/minimal/detectors/userauditor.py templates/minimal/html/_generic.help.html |
| diffstat | 8 files changed, 14 insertions(+), 17 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Thu Nov 06 12:33:55 2003 +0000 +++ b/CHANGES.txt Tue Nov 11 22:25:37 2003 +0000 @@ -3,15 +3,14 @@ 2003-10-?? 0.6.3 Fixed: -- Fixed detectors fix incorrectly fixed in bugfix release 0.6.2 -- Added note to upgrading doc for detectors fix in 0.6.2 +- fixed detectors fix incorrectly fixed in bugfix release 0.6.2 +- added note to upgrading doc for detectors fix in 0.6.2 - added script to help migrating queries from pre-0.6 trackers -- Fixed "documentation" of getnodeids in roundup.hyperdb +- fixed "documentation" of getnodeids in roundup.hyperdb - added flush() to DevNull (sf bug #835365) - fixed javascript for help window for only one checkbox case -- Date arithmetic was utterly broken, and has been for a long time. - Date +/- Interval now works, and Date - Date also works (produces - an Interval. +- Date +/- Interval now works, and Date - Date also works +- handle socket timeout exception (thanks Marcus Priesch) 2003-09-29 0.6.2
--- a/roundup/__init__.py Thu Nov 06 12:33:55 2003 +0000 +++ b/roundup/__init__.py Tue Nov 11 22:25:37 2003 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.25.2.2 2003-09-29 08:08:31 richard Exp $ +# $Id: __init__.py,v 1.25.2.3 2003-11-11 22:25:00 richard Exp $ ''' Roundup - issue tracking for knowledge workers. @@ -67,6 +67,6 @@ much prettier cake :) ''' -__version__ = '0.6.2' +__version__ = '0.6.3' # vim: set filetype=python ts=4 sw=4 et si
--- a/roundup/scripts/roundup_server.py Thu Nov 06 12:33:55 2003 +0000 +++ b/roundup/scripts/roundup_server.py Tue Nov 11 22:25:37 2003 +0000 @@ -16,7 +16,7 @@ # """ HTTP Server that serves roundup. -$Id: roundup_server.py,v 1.26.2.1 2003-09-04 23:30:28 richard Exp $ +$Id: roundup_server.py,v 1.26.2.2 2003-11-11 22:25:00 richard Exp $ """ # python version check @@ -78,6 +78,10 @@ self.send_error(404, self.path) except client.Unauthorised: self.send_error(403, self.path) + except socket.timeout: + s = StringIO.StringIO() + traceback.print_exc(None, s) + self.log_message(str(s.getvalue())) except: # it'd be nice to be able to detect if these are going to have # any effect...
--- a/templates/classic/detectors/userauditor.py Thu Nov 06 12:33:55 2003 +0000 +++ b/templates/classic/detectors/userauditor.py Tue Nov 11 22:25:37 2003 +0000 @@ -18,7 +18,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -#$Id: userauditor.py,v 1.1 2003-06-24 04:16:35 richard Exp $ +#$Id: userauditor.py,v 1.1.2.1 2003-11-11 22:25:00 richard Exp $ def audit_user_fields(db, cl, nodeid, newvalues): ''' Make sure user properties are valid. @@ -42,4 +42,3 @@ db.user.audit('create', audit_user_fields) # vim: set filetype=python ts=4 sw=4 et si -#SHA: d4aea7465d4b7ca78de71ed9e73e09ce29b1b111
--- a/templates/classic/html/_generic.help.html Thu Nov 06 12:33:55 2003 +0000 +++ b/templates/classic/html/_generic.help.html Tue Nov 11 22:25:37 2003 +0000 @@ -75,4 +75,3 @@ </form> </body> </html> -<!-- SHA: 97d46e2f10096a13afc6e5c48a3e6175ada9738f -->
--- a/templates/classic/html/style.css Thu Nov 06 12:33:55 2003 +0000 +++ b/templates/classic/html/style.css Tue Nov 11 22:25:37 2003 +0000 @@ -356,5 +356,3 @@ font-weight: bold; text-align: left; } -/* SHA: 1c2bdea9d2295da079168403292e5c9039bb5088 */ -/* SHA: 35d16ca4398e028f1b19902aadff924ffec27146 */
--- a/templates/minimal/detectors/userauditor.py Thu Nov 06 12:33:55 2003 +0000 +++ b/templates/minimal/detectors/userauditor.py Tue Nov 11 22:25:37 2003 +0000 @@ -18,7 +18,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # -#$Id: userauditor.py,v 1.1 2003-06-24 04:16:35 richard Exp $ +#$Id: userauditor.py,v 1.1.2.1 2003-11-11 22:25:00 richard Exp $ def audit_user_fields(db, cl, nodeid, newvalues): ''' Make sure user properties are valid. @@ -42,4 +42,3 @@ db.user.audit('create', audit_user_fields) # vim: set filetype=python ts=4 sw=4 et si -#SHA: d4aea7465d4b7ca78de71ed9e73e09ce29b1b111
