summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ac5f91a)
raw | patch | inline | side by side (parent: ac5f91a)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 25 Sep 2002 05:15:36 +0000 (05:15 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 25 Sep 2002 05:15:36 +0000 (05:15 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1232 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/cgi/client.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 5667c374fb21ba431921fe26ac93f58e5674ec54..7e6325bb33f58fe548f7af917496d0ef805c840e 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
- better handling of Page Template compilation errors
- handle multiple unrelated indexed classes
- #614188 ] Exception in mailgw.py
+- #613310 ] traceback on onexistant items
2002-09-13 0.5.0 beta2
diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py
index a2e1e1ee03e7c49937ddadc23ae04a047dca56bf..3285709c7a7460760d17aa724c2f8743458b2995 100644 (file)
--- a/roundup/cgi/client.py
+++ b/roundup/cgi/client.py
-# $Id: client.py,v 1.42 2002-09-25 02:10:25 richard Exp $
+# $Id: client.py,v 1.43 2002-09-25 05:15:36 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
self.serve_static_file(str(file))
except Unauthorised, message:
self.write(self.renderTemplate('page', '', error_message=message))
+ except NotFound:
+ # pass through
+ raise
except:
# everything else
self.write(cgitb.html())