# HG changeset patch # User paulb # Date 1085851704 0 # Node ID 7914aa22e6214537277243bd8c18b46180431b99 # Parent 7686e3dfb6a56cd213ff3135e92fe62e28ef2e94 [project @ 2004-05-29 17:28:24 by paulb] Added the user identity to the simple application. diff -r 7686e3dfb6a5 -r 7914aa22e621 examples/Common/Simple/__init__.py --- a/examples/Common/Simple/__init__.py Sat May 29 17:28:14 2004 +0000 +++ b/examples/Common/Simple/__init__.py Sat May 29 17:28:24 2004 +0000 @@ -26,6 +26,7 @@
  • Path info: %s
  • Query string: %s
  • Request method: %s
  • +
  • User: %s
  • Content type: %s
  • Charset: %s
  • Headers: @@ -66,6 +67,7 @@ trans.get_path_info(), trans.get_query_string(), trans.get_request_method(), + trans.get_user(), trans.get_content_type().content_type, trans.get_content_type().charset, self._format_dict(trans.get_headers()),