Changeset - 525ed90e4577
[Not reviewed]
default
0 6 0
Marcin Kuzminski - 16 years ago 2010-02-20 14:30:13

major app speedup moved the wsgi creation to app globals, in order to make it run only once.
little config changes.
6 files changed with 1899 insertions and 42 deletions:
0 comments (0 inline, 0 general)
development.ini
Show inline comments
 
########################################################################
 
##
 
## pylons_app - Pylons development environment configuration
 
##
 
## The %(here)s variable will be replaced with the parent directory of this file
 
##
 
[exe]
 
command = serve
 
daemon = false
 
user = nobody
 
group = nobody
 

	
 
[DEFAULT]
 
debug = true
 
## Uncomment and replace with the address which should receive any error reports
 
email_to = marcin.kuzminski@etelko.pl
 
smtp_server = localhost
 
error_email_from = paste_error@localhost
 

	
 
[server:main]
 
use = egg:Paste#http
 
host = 127.0.0.1
 
port = 5000
 
port = 8001
 

	
 
[app:main]
 
use = egg:pylons_app
 
full_stack = true
 
static_files = false
 
##default lang
 
lang=en
 

	
 
cache_dir = %(here)s/data
 
beaker.session.key = pylons_app
 
beaker.session.secret = #@^^F&VWUDCT%@$#WR^@&*IWEKF
 
beaker.session.timeout = 3600
 

	
 
##auto save the session to not to use .save()
 
beaker.session.auto = True
 

	
 
##true exire at browser close
 
#beaker.session.cookie_expires = 3600
 

	
 
## If you'd like to fine-tune the individual locations of the cache data dirs
 
## for the Cache data, or the Session saves, un-comment the desired settings
 
## here:
 
#beaker.cache.data_dir = %(here)s/data/cache
 
#beaker.session.data_dir = %(here)s/data/sessions
 

	
 

	
 
##Type of storage used for the session, current types are 
 
##“dbm”, “file”, “memcached”, “database”, and “memory”. 
 
##The storage uses the Container API that is also used by the cache system.
 
beaker.session.type = memory
 

	
 
##if db or memcached is used
 
##you have to use
 
#beaker.session.url =
 
#beaker.session.table_name =
 

	
 
## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
 
## Debug mode will enable the interactive debugging tool, allowing ANYONE to
 
## execute malicious code after an exception is raised.
 
#set debug = false
 

	
 
##dozer logging
 
#logview.sqlalchemy = #faa
 
#logview.pylons.templating = #bfb
 
#logview.sample_app.lib = #aaa
 
logview.pylons.templating = #bfb
 
logview.sample_app.lib = #aaa
 

	
 
# Logging configuration
 
[loggers]
 
keys = root, routes, pylons_app, sqlalchemy
 
keys = root, routes, pylons_app
 

	
 
[handlers]
 
keys = console,file_handler
 

	
 
[formatters]
 
keys = generic
 

	
 
## LOGGERS ##
 
[logger_root]
 
level = DEBUG
 
handlers = console, file_handler
 

	
 
[logger_routes]
 
level = DEBUG
 
handlers = console
 
qualname = routes.middleware
 
# "level = DEBUG" logs the route matched and routing variables.
 

	
 
[logger_pylons_app]
 
level = DEBUG
 
handlers = console,file_handler
 
qualname = pylons_app
 

	
 
[logger_sqlalchemy]
 
level = DEBUG
 
handlers = 
 
qualname = sqlalchemy.pool
 
propagate = 0
 

	
 

	
 
## HANDLERS ##
 

	
 
[handler_console]
 
class = StreamHandler
 
args = (sys.stderr,)
 
level = NOTSET
 
formatter = generic
 

	
 
[handler_file_handler]
 
class = FileHandler
 
args = ('./pylons_app.log','a')
 
level = NOTSET
 
formatter = generic
 

	
 
## FORMATTERS ##
 

	
 
[formatter_generic]
 
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
 
datefmt = %H:%M:%S
 

	
production.ini
Show inline comments
 
########################################################################
 
##
 
## pylons_app - Pylons development environment configuration
 
##
 
## The %(here)s variable will be replaced with the parent directory of this file
 
##
 
[exe]
 
command = serve
 
daemon = false
 
user = nobody
 
group = nobody
 

	
 
[DEFAULT]
 
debug = true
 
## Uncomment and replace with the address which should receive any error reports
 
email_to = marcin.kuzminski@etelko.pl
 
smtp_server = localhost
 
error_email_from = paste_error@localhost
 

	
 
[server:main]
 
use = egg:Paste#http
 
host = 127.0.0.1
 
port = 8001
 

	
 
[app:main]
 
use = egg:pylons_app
 
full_stack = true
 
static_files = false
 
##default lang
 
lang=en
 

	
 
cache_dir = %(here)s/data
 
beaker.session.key = pylons_app
 
beaker.session.secret = #@^^F&VWUDCT%@$#WR^@&*IWEKF
 
beaker.session.timeout = 3600
 

	
 
##auto save the session to not to use .save()
 
beaker.session.auto = True
 

	
 
##true exire at browser close
 
#beaker.session.cookie_expires = 3600
 

	
 
## If you'd like to fine-tune the individual locations of the cache data dirs
 
## for the Cache data, or the Session saves, un-comment the desired settings
 
## here:
 
#beaker.cache.data_dir = %(here)s/data/cache
 
#beaker.session.data_dir = %(here)s/data/sessions
 

	
 

	
 
##Type of storage used for the session, current types are 
 
##“dbm”, “file”, “memcached”, “database”, and “memory”. 
 
##The storage uses the Container API that is also used by the cache system.
 
beaker.session.type = memory
 

	
 
##if db or memcached is used
 
##you have to use
 
#beaker.session.url =
 
#beaker.session.table_name =
 

	
 
## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
 
## Debug mode will enable the interactive debugging tool, allowing ANYONE to
 
## execute malicious code after an exception is raised.
 
#set debug = false
 
set debug = false
 

	
 
##dozer logging
 
#logview.sqlalchemy = #faa
 
#logview.pylons.templating = #bfb
 
#logview.sample_app.lib = #aaa
 

	
 
# Logging configuration
 
[loggers]
 
keys = root, routes, pylons_app, sqlalchemy
 
keys = root, routes, pylons_app
 

	
 
[handlers]
 
keys = console,file_handler
 

	
 
[formatters]
 
keys = generic
 

	
 
## LOGGERS ##
 
[logger_root]
 
level = DEBUG
 
handlers = file_handler
 

	
 
[logger_routes]
 
level = INFO
 
handlers = console
 
handlers = file_handler
 
qualname = routes.middleware
 
# "level = DEBUG" logs the route matched and routing variables.
 

	
 
[logger_pylons_app]
 
level = DEBUG
 
handlers = file_handler
 
qualname = pylons_app
 

	
 
[logger_sqlalchemy]
 
level = DEBUG
 
handlers = 
 
qualname = sqlalchemy.pool
 
propagate = 0
 

	
 

	
 
## HANDLERS ##
 

	
 
[handler_console]
 
class = StreamHandler
 
args = (sys.stderr,)
 
level = NOTSET
 
formatter = generic
 

	
 
[handler_file_handler]
 
class = FileHandler
 
args = ('./pylons_app.log','a')
 
level = NOTSET
 
formatter = generic
 

	
 
## FORMATTERS ##
 

	
 
[formatter_generic]
 
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
 
datefmt = %H:%M:%S
 

	
pylons_app.log
Show inline comments
 
@@ -3932,6144 +3932,8005 @@
 
13:19:03,057 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:19:03,057 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:19:03,057 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2a86ed0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x201c758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x24ce590>, 'url': <routes.util.URLGenerator object at 0x2bb13d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2a86150 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2a86ed0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2a84b48>, 'session': {'_accessed_time': 1266495543.0580609, '_creation_time': 1266495517.2929859}, 'N_': <function gettext_noop at 0x201c410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x24ce590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x24ce390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x24ce590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2a86bd0 200 OK>, '_': <function ugettext at 0x201c578>}
 
13:19:03,058 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:19:03,058 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:19:09,873 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:19:09,873 DEBUG [pylons.configuration] Pushing process configuration
 
13:19:09,876 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:19:09,877 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:19:09,880 DEBUG [pylons.templating] Initialized Buffet object
 
13:19:09,880 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:19:09,882 DEBUG [paste.httpserver.ThreadPool] Started new worker 139686751332624: Initial worker pool
 
13:19:09,883 DEBUG [paste.httpserver.ThreadPool] Started new worker 139686742939920: Initial worker pool
 
13:19:09,883 DEBUG [paste.httpserver.ThreadPool] Started new worker 139686734547216: Initial worker pool
 
13:19:09,883 DEBUG [paste.httpserver.ThreadPool] Started new worker 139686726154512: Initial worker pool
 
13:19:09,883 DEBUG [paste.httpserver.ThreadPool] Started new worker 139686717761808: Initial worker pool
 
13:19:09,884 DEBUG [paste.httpserver.ThreadPool] Started new worker 139686709369104: Initial worker pool
 
13:19:09,884 DEBUG [paste.httpserver.ThreadPool] Started new worker 139686700976400: Initial worker pool
 
13:19:09,884 DEBUG [paste.httpserver.ThreadPool] Started new worker 139686692583696: Initial worker pool
 
13:19:09,884 DEBUG [paste.httpserver.ThreadPool] Started new worker 139686684190992: Initial worker pool
 
13:19:09,885 DEBUG [paste.httpserver.ThreadPool] Started new worker 139686675798288: Initial worker pool
 
13:19:12,056 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:19:12,063 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:12,064 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:19:12,123 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:19:12,124 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:12,124 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:12,124 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:19:12,124 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x20fcc80>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x20fd890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x20fd550>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x20fd410>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x20fd890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x1f94a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495552.1247971, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x20fd410>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x201ff90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:19:13,062 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:19:13,091 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:19:13,171 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:19:13,182 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:13,183 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:19:13,183 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:13,183 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:13,183 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:19:13,183 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x25a5a28>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x25a6690>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x25a65d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x20fd490>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x25a6690>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x1f94bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495553.1836989, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x20fd490>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25a6090>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:19:14,122 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:19:14,122 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:19:16,248 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:19:16,251 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:16,252 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:19:16,253 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:16,253 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:16,253 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:19:16,254 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x25a5488>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2596e10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2596cd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x25a64d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2596e10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x1f94ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495556.255013, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x25a64d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25a6290>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:19:17,191 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:19:17,191 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:19:20,569 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:19:20,571 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:20,571 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:19:20,571 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:20,571 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:20,571 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:19:20,572 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x25b9230>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x25a8ed0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x25a8dd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2596d10>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x25a8ed0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x25638d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495560.5723441, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2596d10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25967d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:19:21,467 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:19:21,468 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:19:21,470 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:21,471 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:19:21,471 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:19:21,471 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:21,471 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:21,471 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:19:21,472 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:19:21,472 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x25a8a10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1b58758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x200a590>, 'url': <routes.util.URLGenerator object at 0x25a8650>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x25a8b50 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x25a8a10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x25a4560>, 'session': {'_accessed_time': 1266495561.4725809, '_creation_time': 1266495552.1247971}, 'N_': <function gettext_noop at 0x1b58410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x200a590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x200a390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x200a590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x25a8f50 200 OK>, '_': <function ugettext at 0x1b58578>}
 
13:19:21,473 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:19:21,473 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:19:26,503 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:19:26,511 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:26,512 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:19:26,513 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:26,513 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:26,513 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:19:26,514 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x25b9a28>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x25a6fd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x25a6e50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x25a8c10>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x25a6fd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x25a91d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495566.514863, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x25a8c10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25a82d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:19:27,404 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:19:27,429 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:19:27,457 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:19:27,461 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:27,461 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:19:27,461 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:27,462 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:27,462 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:19:27,462 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x25c6668>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x25b8e90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x25b8f90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x25a6d90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x25b8e90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x25a9ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495567.462563, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x25a6d90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25c3e10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:19:28,390 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:19:28,390 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:19:30,501 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:19:30,504 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:30,504 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:19:30,504 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:30,505 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:30,505 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:19:30,505 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x25b9e60>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x25b8f90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x25b8f10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x20fd290>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x25b8f90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x25a9a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495570.5054989, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x20fd290>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25c3e90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:19:31,372 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:19:31,373 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:19:53,130 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:19:53,131 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:53,132 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:19:53,132 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:53,132 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:53,132 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:19:53,132 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x25b96e0>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dupa/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x25a6fd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x25a67d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x25b8d50>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x25a6fd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x25a9c50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495593.1328471, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x25b8d50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25c3990>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:19:54,001 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:19:54,003 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:19:54,004 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:54,004 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:19:54,004 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:54,004 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:54,005 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:19:54,005 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:19:54,005 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x25c4b50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1b58758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x200a590>, 'url': <routes.util.URLGenerator object at 0x25c3410>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x25c4a50 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x25c4b50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x25b31b8>, 'session': {'_accessed_time': 1266495594.00563, '_creation_time': 1266495552.1247971}, 'N_': <function gettext_noop at 0x1b58410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x200a590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x200a390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x200a590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x25c4710 200 OK>, '_': <function ugettext at 0x1b58578>}
 
13:19:54,006 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:19:54,006 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:19:59,051 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:19:59,053 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:19:59,053 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:19:59,053 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:19:59,053 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:19:59,054 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:19:59,054 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x25c60c8>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x25c4a10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x25c49d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x25c4590>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x25c4a10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x25a9b50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495599.0544021, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x25c4590>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25c3c90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:19:59,939 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:19:59,965 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:19:59,996 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:20:00,002 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:20:00,003 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:20:00,003 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:20:00,003 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:20:00,003 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:20:00,003 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x25b9b18>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x25c4610>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x25c4f10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x25c4910>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x25c4610>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x25a9650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495600.003757, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x25c4910>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25c4f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:20:00,926 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:20:00,926 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:20:02,994 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:20:02,997 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:20:02,998 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:20:02,999 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:20:02,999 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:20:02,999 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:20:02,999 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x25c6b18>, 'environ': {'routes.route': <routes.route.Route object at 0x200a4d0>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x200a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2778350>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x200a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2778ad0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x25a6fd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2778350>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x200a850>, 'wsgi.input': <socket._fileobject object at 0x25a9250 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495602.9997089, '_creation_time': 1266495552.1247971}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x25a6fd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25c4b90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0b5f8da1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1355550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:20:04,029 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:20:04,029 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:21:07,882 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:21:07,883 DEBUG [pylons.configuration] Pushing process configuration
 
13:21:07,886 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:21:07,886 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:21:07,890 DEBUG [pylons.templating] Initialized Buffet object
 
13:21:07,905 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:21:07,905 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:21:07,908 DEBUG [paste.httpserver.ThreadPool] Started new worker 140667122514192: Initial worker pool
 
13:21:07,908 DEBUG [paste.httpserver.ThreadPool] Started new worker 140667114121488: Initial worker pool
 
13:21:07,908 DEBUG [paste.httpserver.ThreadPool] Started new worker 140667105728784: Initial worker pool
 
13:21:07,908 DEBUG [paste.httpserver.ThreadPool] Started new worker 140667097336080: Initial worker pool
 
13:21:07,909 DEBUG [paste.httpserver.ThreadPool] Started new worker 140667088943376: Initial worker pool
 
13:21:07,909 DEBUG [paste.httpserver.ThreadPool] Started new worker 140667080550672: Initial worker pool
 
13:21:07,909 DEBUG [paste.httpserver.ThreadPool] Started new worker 140667072157968: Initial worker pool
 
13:21:07,909 DEBUG [paste.httpserver.ThreadPool] Started new worker 140667063765264: Initial worker pool
 
13:21:07,910 DEBUG [paste.httpserver.ThreadPool] Started new worker 140667055372560: Initial worker pool
 
13:21:07,910 DEBUG [paste.httpserver.ThreadPool] Started new worker 140667046979856: Initial worker pool
 
13:21:12,898 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:21:12,901 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:21:12,901 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:21:12,901 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}
 
13:21:12,902 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:21:12,903 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:21:12,962 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:21:12,962 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:21:12,962 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:21:12,962 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:21:12,962 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2dcec80>, 'environ': {'routes.route': <routes.route.Route object at 0x2cdd4d0>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2cdd790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dupa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2dcf910>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2cdd810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2dcf5d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2dcf510>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2cdd850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2dcf910>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2cdd850>, 'wsgi.input': <socket._fileobject object at 0x2c67a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495672.9632299, '_creation_time': 1266495672.9632299}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2dcf510>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2dcf050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fefa23ab1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x202c4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:21:13,896 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:21:13,903 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:21:13,904 DEBUG [routes.middleware] Matched GET /error/document
 
13:21:13,904 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:21:13,904 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:21:13,904 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:21:13,904 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:21:13,905 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:21:13,905 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:21:13,905 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:21:13,905 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:21:13,905 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:21:13,905 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3277350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x282b758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2cdd590>, 'url': <routes.util.URLGenerator object at 0x32771d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3277190 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3277350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x32737a0>, 'session': {'_accessed_time': 1266495673.90623, '_creation_time': 1266495672.9632299}, 'N_': <function gettext_noop at 0x282b410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2cdd590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2cdd390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2cdd590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3277290 200 OK>, '_': <function ugettext at 0x282b578>}
 
13:21:13,907 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:21:13,907 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:21:23,863 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:21:23,863 DEBUG [pylons.configuration] Pushing process configuration
 
13:21:23,866 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:21:23,866 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:21:23,870 DEBUG [pylons.templating] Initialized Buffet object
 
13:21:23,870 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:21:23,870 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:21:23,873 DEBUG [paste.httpserver.ThreadPool] Started new worker 140581756258576: Initial worker pool
 
13:21:23,873 DEBUG [paste.httpserver.ThreadPool] Started new worker 140581747865872: Initial worker pool
 
13:21:23,873 DEBUG [paste.httpserver.ThreadPool] Started new worker 140581739473168: Initial worker pool
 
13:21:23,873 DEBUG [paste.httpserver.ThreadPool] Started new worker 140581731080464: Initial worker pool
 
13:21:23,874 DEBUG [paste.httpserver.ThreadPool] Started new worker 140581722687760: Initial worker pool
 
13:21:23,874 DEBUG [paste.httpserver.ThreadPool] Started new worker 140581714295056: Initial worker pool
 
13:21:23,874 DEBUG [paste.httpserver.ThreadPool] Started new worker 140581705902352: Initial worker pool
 
13:21:23,874 DEBUG [paste.httpserver.ThreadPool] Started new worker 140581697509648: Initial worker pool
 
13:21:23,875 DEBUG [paste.httpserver.ThreadPool] Started new worker 140581689116944: Initial worker pool
 
13:21:23,875 DEBUG [paste.httpserver.ThreadPool] Started new worker 140581680724240: Initial worker pool
 
13:21:28,889 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:21:28,891 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:21:28,891 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:21:28,891 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}
 
13:21:28,892 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:21:28,893 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:21:28,956 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:21:28,956 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:21:28,956 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:21:28,956 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:21:28,957 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2a53c80>, 'environ': {'routes.route': <routes.route.Route object at 0x295f4d0>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x295f790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dupa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2a54910>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x295f810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2a545d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2a54510>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x295f850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2a54910>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x295f850>, 'wsgi.input': <socket._fileobject object at 0x28e9a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495688.957387, '_creation_time': 1266495688.957387}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2a54510>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2a54050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fdbc20101c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cb44d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:21:29,884 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:21:29,891 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:21:29,892 DEBUG [routes.middleware] Matched GET /error/document
 
13:21:29,892 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:21:29,892 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:21:29,892 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:21:29,893 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:21:29,893 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:21:29,893 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:21:29,893 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:21:29,894 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:21:29,894 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:21:29,894 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2efa350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x24af758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x295f590>, 'url': <routes.util.URLGenerator object at 0x2efa1d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2efa190 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2efa350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2ef67a0>, 'session': {'_accessed_time': 1266495689.8946569, '_creation_time': 1266495688.957387}, 'N_': <function gettext_noop at 0x24af410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x295f590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x295f390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x295f590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2efa290 200 OK>, '_': <function ugettext at 0x24af578>}
 
13:21:29,895 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:21:29,895 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:25:33,043 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:25:33,043 DEBUG [pylons.configuration] Pushing process configuration
 
13:25:33,046 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:25:33,047 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:25:33,050 DEBUG [pylons.templating] Initialized Buffet object
 
13:25:33,050 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:25:33,050 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:25:33,053 DEBUG [paste.httpserver.ThreadPool] Started new worker 139650642077968: Initial worker pool
 
13:25:33,053 DEBUG [paste.httpserver.ThreadPool] Started new worker 139650633685264: Initial worker pool
 
13:25:33,053 DEBUG [paste.httpserver.ThreadPool] Started new worker 139650625292560: Initial worker pool
 
13:25:33,053 DEBUG [paste.httpserver.ThreadPool] Started new worker 139650616899856: Initial worker pool
 
13:25:33,054 DEBUG [paste.httpserver.ThreadPool] Started new worker 139650608507152: Initial worker pool
 
13:25:33,054 DEBUG [paste.httpserver.ThreadPool] Started new worker 139650600114448: Initial worker pool
 
13:25:33,054 DEBUG [paste.httpserver.ThreadPool] Started new worker 139650591721744: Initial worker pool
 
13:25:33,054 DEBUG [paste.httpserver.ThreadPool] Started new worker 139650583329040: Initial worker pool
 
13:25:33,055 DEBUG [paste.httpserver.ThreadPool] Started new worker 139650574936336: Initial worker pool
 
13:25:33,055 DEBUG [paste.httpserver.ThreadPool] Started new worker 139650566543632: Initial worker pool
 
13:25:34,857 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:25:34,860 DEBUG [routes.middleware] Matched GET /
 
13:25:34,860 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:25:34,860 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:25:34,861 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:25:34,864 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:25:34,945 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:25:34,945 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:25:34,945 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:25:34,945 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:25:34,946 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x26fcc80>, 'environ': {'routes.route': <routes.route.Route object at 0x260c550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x260c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x26fd890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x260c810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x26fd550>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x26fd410>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x26fd890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'wsgi.input': <socket._fileobject object at 0x2596a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495934.946404, '_creation_time': 1266495934.946404}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x26fd410>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2621f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f02f74621c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x195b4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:25:35,866 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:25:35,897 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:25:35,927 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:25:35,928 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:25:35,929 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:25:35,929 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:25:35,929 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:25:35,930 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:25:35,930 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:25:35,930 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:25:35,930 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:25:35,930 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2ba4aa0>, 'environ': {'routes.route': <routes.route.Route object at 0x260c550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x260c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2ba9810>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ba9750>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x260c810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x26fd490>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2ba9810>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'wsgi.input': <socket._fileobject object at 0x2b658d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495935.930876, '_creation_time': 1266495934.946404}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x26fd490>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ba9190>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f02f74621c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x195b4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:25:37,019 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:25:37,019 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:25:39,061 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:25:39,062 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:25:39,063 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:25:39,063 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:25:39,063 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:25:39,064 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:25:39,064 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:25:39,064 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:25:39,064 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:25:39,064 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2ba4488>, 'environ': {'routes.route': <routes.route.Route object at 0x260c550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x260c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2b96690>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x260c810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2b96790>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2b961d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2b96690>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'wsgi.input': <socket._fileobject object at 0x2596bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495939.0648229, '_creation_time': 1266495934.946404}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2b961d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ba9510>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f02f74621c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x195b4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:25:40,241 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:25:40,241 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:25:40,776 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:25:40,778 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:25:40,778 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:25:40,778 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}
 
13:25:40,778 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:25:40,779 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:25:40,779 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:25:40,779 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:25:40,779 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:25:40,779 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2bb7230>, 'environ': {'routes.route': <routes.route.Route object at 0x260c550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x260c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dupa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2b9fc10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x260c810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2b9fb10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2b96b10>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2b9fc10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'wsgi.input': <socket._fileobject object at 0x2ba5450 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495940.7799859, '_creation_time': 1266495934.946404}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2b96b10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2b968d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f02f74621c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x195b4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:25:41,708 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:25:41,710 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:25:41,711 DEBUG [routes.middleware] Matched GET /error/document
 
13:25:41,711 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:25:41,711 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:25:41,712 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:25:41,712 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:25:41,713 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:25:41,713 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:25:41,713 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:25:41,713 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:25:41,713 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:25:41,713 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2b9fd90 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x215a758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x260c5d0>, 'url': <routes.util.URLGenerator object at 0x2b9f2d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2b9ffd0 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2b9fd90 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2ba2518>, 'session': {'_accessed_time': 1266495941.7142651, '_creation_time': 1266495934.946404}, 'N_': <function gettext_noop at 0x215a410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x260c5d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x260c390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x260c5d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2b9f3d0 200 OK>, '_': <function ugettext at 0x215a578>}
 
13:25:41,715 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:25:41,715 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:25:46,749 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:25:46,751 DEBUG [routes.middleware] Matched GET /
 
13:25:46,752 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:25:46,752 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:25:46,753 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:25:46,754 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:25:46,755 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:25:46,755 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:25:46,755 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:25:46,756 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2bb7a28>, 'environ': {'routes.route': <routes.route.Route object at 0x260c550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x260c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2ba9f90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x260c810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ba9ed0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2b9f250>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2ba9f90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'wsgi.input': <socket._fileobject object at 0x2ba5350 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495946.7616501, '_creation_time': 1266495934.946404}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2b9f250>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2b9f090>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f02f74621c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x195b4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:25:47,651 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:25:47,680 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:25:47,701 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:25:47,703 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:25:47,703 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:25:47,703 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:25:47,703 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:25:47,704 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:25:47,704 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:25:47,704 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:25:47,704 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:25:47,704 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2bb3668>, 'environ': {'routes.route': <routes.route.Route object at 0x260c550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x260c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2bc4390>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2bc4c90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x260c810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2ba9890>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2bc4390>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'wsgi.input': <socket._fileobject object at 0x2ba5ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495947.7048621, '_creation_time': 1266495934.946404}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2ba9890>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2bc4c10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f02f74621c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x195b4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:25:48,621 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:25:48,622 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:25:50,686 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:25:50,690 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:25:50,691 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:25:50,691 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:25:50,692 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:25:50,693 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:25:50,694 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:25:50,694 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:25:50,694 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:25:50,695 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2bb7de8>, 'environ': {'routes.route': <routes.route.Route object at 0x260c550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x260c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2bb8e50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x260c810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2bb8c50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2bb8150>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2bb8e50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x260c850>, 'wsgi.input': <socket._fileobject object at 0x2ba5a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495950.695823, '_creation_time': 1266495934.946404}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2bb8150>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2bc47d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f02f74621c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x195b4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:25:51,644 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:25:51,644 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:26:16,919 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:26:16,919 DEBUG [pylons.configuration] Pushing process configuration
 
13:26:16,922 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:26:16,922 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:26:16,926 DEBUG [pylons.templating] Initialized Buffet object
 
13:26:16,926 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:26:16,926 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:26:16,928 DEBUG [paste.httpserver.ThreadPool] Started new worker 139864957626640: Initial worker pool
 
13:26:16,929 DEBUG [paste.httpserver.ThreadPool] Started new worker 139864949233936: Initial worker pool
 
13:26:16,929 DEBUG [paste.httpserver.ThreadPool] Started new worker 139864940841232: Initial worker pool
 
13:26:16,929 DEBUG [paste.httpserver.ThreadPool] Started new worker 139864932448528: Initial worker pool
 
13:26:16,929 DEBUG [paste.httpserver.ThreadPool] Started new worker 139864924055824: Initial worker pool
 
13:26:16,930 DEBUG [paste.httpserver.ThreadPool] Started new worker 139864915663120: Initial worker pool
 
13:26:16,930 DEBUG [paste.httpserver.ThreadPool] Started new worker 139864907270416: Initial worker pool
 
13:26:16,930 DEBUG [paste.httpserver.ThreadPool] Started new worker 139864898877712: Initial worker pool
 
13:26:16,930 DEBUG [paste.httpserver.ThreadPool] Started new worker 139864890485008: Initial worker pool
 
13:26:16,937 DEBUG [paste.httpserver.ThreadPool] Started new worker 139864882092304: Initial worker pool
 
13:26:24,750 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:26:24,752 DEBUG [routes.middleware] Matched GET /add/ddsa
 
13:26:24,752 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:26:24,752 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/ddsa'}
 
13:26:24,753 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:26:24,754 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:26:24,807 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:26:24,807 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:26:24,807 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:26:24,807 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:26:24,807 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1cbcc80>, 'environ': {'routes.route': <routes.route.Route object at 0x1bcb550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/ddsa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1bcb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/ddsa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1cbd910>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1bcb810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1cbd5d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1cbd510>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/ddsa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1bcb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1cbd910>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1bcb850>, 'wsgi.input': <socket._fileobject object at 0x1b55a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495984.808105, '_creation_time': 1266495984.808105}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1cbd510>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1cbd050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f34dd79e1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xf16550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:26:25,685 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:26:25,692 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:26:25,693 DEBUG [routes.middleware] Matched GET /error/document
 
13:26:25,693 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:26:25,693 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:26:25,693 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:26:25,694 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:26:25,694 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:26:25,694 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:26:25,694 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:26:25,694 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:26:25,695 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:26:25,695 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2165350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1719758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x1bcb5d0>, 'url': <routes.util.URLGenerator object at 0x21651d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2165190 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2165350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2160830>, 'session': {'_accessed_time': 1266495985.6955521, '_creation_time': 1266495984.808105}, 'N_': <function gettext_noop at 0x1719410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x1bcb5d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x1bcb390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x1bcb5d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2165290 200 OK>, '_': <function ugettext at 0x1719578>}
 
13:26:25,696 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:26:25,696 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:26:30,729 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:26:30,732 DEBUG [routes.middleware] Matched GET /
 
13:26:30,732 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:26:30,733 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:26:30,734 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:26:30,742 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:26:30,742 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:26:30,743 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:26:30,743 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:26:30,743 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2161f50>, 'environ': {'routes.route': <routes.route.Route object at 0x1bcb550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1bcb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2165b50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1bcb810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2165a90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2165950>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1bcb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2165b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1bcb850>, 'wsgi.input': <socket._fileobject object at 0x1b55bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495990.744606, '_creation_time': 1266495984.808105}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2165950>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1be0ed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f34dd79e1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xf16550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:26:31,747 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:26:31,773 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:26:31,836 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:26:31,848 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:26:31,848 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:26:31,848 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:26:31,849 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:26:31,849 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:26:31,849 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:26:31,850 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:26:31,850 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:26:31,850 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x216f500>, 'environ': {'routes.route': <routes.route.Route object at 0x1bcb550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1bcb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x22b4b10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x22b45d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1bcb810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2165a10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1bcb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x22b4b10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1bcb850>, 'wsgi.input': <socket._fileobject object at 0x2164750 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495991.850503, '_creation_time': 1266495984.808105}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2165a10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0xf16650>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f34dd79e1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xf16550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:26:32,802 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:26:32,802 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:26:34,822 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:26:34,825 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:26:34,826 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:26:34,826 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:26:34,827 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:26:34,829 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:26:34,829 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:26:34,829 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:26:34,830 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:26:34,830 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x216faa0>, 'environ': {'routes.route': <routes.route.Route object at 0x1bcb550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1bcb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2177e90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1bcb810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2177a10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2177dd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1bcb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2177e90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1bcb850>, 'wsgi.input': <socket._fileobject object at 0x1b55ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266495994.8322999, '_creation_time': 1266495984.808105}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2177dd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x22b4110>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f34dd79e1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xf16550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:26:35,807 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:26:35,808 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:33:13,200 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:33:13,200 DEBUG [pylons.configuration] Pushing process configuration
 
13:33:13,204 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:33:13,204 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:33:13,207 DEBUG [pylons.templating] Initialized Buffet object
 
13:33:13,207 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:33:13,208 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:33:13,210 DEBUG [paste.httpserver.ThreadPool] Started new worker 139741781145872: Initial worker pool
 
13:33:13,210 DEBUG [paste.httpserver.ThreadPool] Started new worker 139741772753168: Initial worker pool
 
13:33:13,210 DEBUG [paste.httpserver.ThreadPool] Started new worker 139741764360464: Initial worker pool
 
13:33:13,210 DEBUG [paste.httpserver.ThreadPool] Started new worker 139741755967760: Initial worker pool
 
13:33:13,211 DEBUG [paste.httpserver.ThreadPool] Started new worker 139741747575056: Initial worker pool
 
13:33:13,211 DEBUG [paste.httpserver.ThreadPool] Started new worker 139741739182352: Initial worker pool
 
13:33:13,211 DEBUG [paste.httpserver.ThreadPool] Started new worker 139741730789648: Initial worker pool
 
13:33:13,211 DEBUG [paste.httpserver.ThreadPool] Started new worker 139741722396944: Initial worker pool
 
13:33:13,212 DEBUG [paste.httpserver.ThreadPool] Started new worker 139741714004240: Initial worker pool
 
13:33:13,212 DEBUG [paste.httpserver.ThreadPool] Started new worker 139741705611536: Initial worker pool
 
13:33:18,967 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:33:18,974 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:33:18,974 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:33:18,975 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:33:18,976 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:33:18,982 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:33:19,044 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:33:19,044 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:33:19,044 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:33:19,044 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:33:19,045 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x230bc80>, 'environ': {'routes.route': <routes.route.Route object at 0x221a550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x221a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x230c990>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x221a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x230c650>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x230c390>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x230c990>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'wsgi.input': <socket._fileobject object at 0x21a4a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496399.0452931, '_creation_time': 1266496399.0452931}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x230c390>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x230c050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f182f95f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1565550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:33:19,980 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:33:19,980 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:33:20,280 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:33:20,332 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:33:20,333 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:33:20,333 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:33:20,334 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:33:20,335 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:33:20,336 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:33:20,336 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:33:20,336 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:33:20,337 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x27a0c80>, 'environ': {'routes.route': <routes.route.Route object at 0x221a550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x221a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x27a52d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x221a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x27a5910>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x27a5d50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x27a52d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'wsgi.input': <socket._fileobject object at 0x21a4bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496400.3378839, '_creation_time': 1266496399.0452931}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x27a5d50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x230c450>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f182f95f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1565550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:33:21,291 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:33:21,291 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:33:21,351 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:33:21,352 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:33:21,352 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:33:21,353 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}
 
13:33:21,353 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:33:21,354 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:33:21,354 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:33:21,354 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:33:21,354 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:33:21,354 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x27b9230>, 'environ': {'routes.route': <routes.route.Route object at 0x221a550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x221a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dupa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x27b0650>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x221a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x27b0cd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x27a5290>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x27b0650>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'wsgi.input': <socket._fileobject object at 0x21a4ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496401.3547599, '_creation_time': 1266496399.0452931}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x27a5290>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x230c4d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f182f95f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1565550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:33:21,497 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:33:21,499 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:33:21,499 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:33:21,499 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:33:21,499 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:33:21,499 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:33:21,500 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:33:21,500 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:33:21,500 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:33:21,500 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x27a08c0>, 'environ': {'routes.route': <routes.route.Route object at 0x221a550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x221a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x27a53d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x221a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x27a5410>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x27b0ed0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x27a53d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'wsgi.input': <socket._fileobject object at 0x21a4bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496401.5006411, '_creation_time': 1266496399.0452931}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x27b0ed0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x27b0810>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f182f95f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1565550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:33:22,631 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:33:22,640 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:33:22,640 DEBUG [routes.middleware] Matched GET /error/document
 
13:33:22,640 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:33:22,641 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:33:22,641 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:33:22,641 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:33:22,642 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:33:22,642 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:33:22,642 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:33:22,642 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:33:22,642 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:33:22,642 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x28f9850 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1d68758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x221a5d0>, 'url': <routes.util.URLGenerator object at 0x28f96d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x28f9690 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x28f9850 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x28e0ab8>, 'session': {'_accessed_time': 1266496402.643213, '_creation_time': 1266496399.0452931}, 'N_': <function gettext_noop at 0x1d68410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x221a5d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x221a390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x221a5d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x28f9790 200 OK>, '_': <function ugettext at 0x1d68578>}
 
13:33:22,644 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:33:22,644 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:33:23,252 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:33:23,252 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:33:23,394 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:33:23,408 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:33:23,409 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:33:23,409 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:33:23,410 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:33:23,411 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:33:23,412 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:33:23,412 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:33:23,412 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:33:23,413 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x27b9320>, 'environ': {'routes.route': <routes.route.Route object at 0x221a550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x221a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x27b0950>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x221a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x27b0b90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x27b00d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x27b0950>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'wsgi.input': <socket._fileobject object at 0x2772ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496403.413897, '_creation_time': 1266496399.0452931}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x27b00d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x222ff10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f182f95f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1565550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:33:24,313 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:33:24,314 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:33:27,679 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:33:27,683 DEBUG [routes.middleware] Matched GET /
 
13:33:27,683 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:33:27,683 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:33:27,683 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:33:27,684 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:33:27,684 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:33:27,684 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:33:27,684 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:33:27,684 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2918230>, 'environ': {'routes.route': <routes.route.Route object at 0x221a550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x221a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x27ba790>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x221a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x27ba110>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x27b0710>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x27ba790>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'wsgi.input': <socket._fileobject object at 0x2772e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496407.6849899, '_creation_time': 1266496399.0452931}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x27b0710>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x27a5d50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f182f95f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1565550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:33:28,626 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:33:28,650 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:33:28,758 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:33:28,760 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:33:28,760 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:33:28,760 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:33:28,760 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:33:28,761 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:33:28,761 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:33:28,761 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:33:28,761 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:33:28,761 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x27b6488>, 'environ': {'routes.route': <routes.route.Route object at 0x221a550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x221a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x27d2510>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x27d20d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x221a810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x27baa50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x27d2510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'wsgi.input': <socket._fileobject object at 0x2772cd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496408.7620521, '_creation_time': 1266496399.0452931}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x27baa50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x27c7cd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f182f95f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1565550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:33:29,689 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:33:29,689 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:33:31,801 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:33:31,804 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:33:31,804 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:33:31,805 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:33:31,805 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:33:31,805 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:33:31,805 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:33:31,805 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:33:31,806 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:33:31,806 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x29188c0>, 'environ': {'routes.route': <routes.route.Route object at 0x221a550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x221a790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x27ba7d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x221a810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x27a58d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x27a5d10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x27ba7d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x221a850>, 'wsgi.input': <socket._fileobject object at 0x2772e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496411.8064041, '_creation_time': 1266496399.0452931}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x27a5d10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x28f95d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f182f95f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1565550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:33:32,775 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:33:32,775 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:34:24,741 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:34:24,741 DEBUG [pylons.configuration] Pushing process configuration
 
13:34:24,744 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:34:24,744 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:34:24,748 DEBUG [pylons.templating] Initialized Buffet object
 
13:34:24,748 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:34:24,748 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:34:24,751 DEBUG [paste.httpserver.ThreadPool] Started new worker 140217949444368: Initial worker pool
 
13:34:24,751 DEBUG [paste.httpserver.ThreadPool] Started new worker 140217941051664: Initial worker pool
 
13:34:24,752 DEBUG [paste.httpserver.ThreadPool] Started new worker 140217932658960: Initial worker pool
 
13:34:24,752 DEBUG [paste.httpserver.ThreadPool] Started new worker 140217924266256: Initial worker pool
 
13:34:24,752 DEBUG [paste.httpserver.ThreadPool] Started new worker 140217915873552: Initial worker pool
 
13:34:24,752 DEBUG [paste.httpserver.ThreadPool] Started new worker 140217907480848: Initial worker pool
 
13:34:24,753 DEBUG [paste.httpserver.ThreadPool] Started new worker 140217899088144: Initial worker pool
 
13:34:24,753 DEBUG [paste.httpserver.ThreadPool] Started new worker 140217890695440: Initial worker pool
 
13:34:24,753 DEBUG [paste.httpserver.ThreadPool] Started new worker 140217882302736: Initial worker pool
 
13:34:24,753 DEBUG [paste.httpserver.ThreadPool] Started new worker 140217873910032: Initial worker pool
 
13:34:32,203 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:34:32,204 DEBUG [pylons.configuration] Pushing process configuration
 
13:34:32,207 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:34:32,207 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:34:32,211 DEBUG [pylons.templating] Initialized Buffet object
 
13:34:32,211 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:34:32,211 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:34:32,213 DEBUG [paste.httpserver.ThreadPool] Started new worker 139912234973456: Initial worker pool
 
13:34:32,214 DEBUG [paste.httpserver.ThreadPool] Started new worker 139912226580752: Initial worker pool
 
13:34:32,214 DEBUG [paste.httpserver.ThreadPool] Started new worker 139912218188048: Initial worker pool
 
13:34:32,214 DEBUG [paste.httpserver.ThreadPool] Started new worker 139912209795344: Initial worker pool
 
13:34:32,214 DEBUG [paste.httpserver.ThreadPool] Started new worker 139912201402640: Initial worker pool
 
13:34:32,215 DEBUG [paste.httpserver.ThreadPool] Started new worker 139912193009936: Initial worker pool
 
13:34:32,215 DEBUG [paste.httpserver.ThreadPool] Started new worker 139912184617232: Initial worker pool
 
13:34:32,215 DEBUG [paste.httpserver.ThreadPool] Started new worker 139912176224528: Initial worker pool
 
13:34:32,215 DEBUG [paste.httpserver.ThreadPool] Started new worker 139912167831824: Initial worker pool
 
13:34:32,216 DEBUG [paste.httpserver.ThreadPool] Started new worker 139912159439120: Initial worker pool
 
13:34:34,477 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:34:34,486 DEBUG [routes.middleware] No route matched for GET /add/dupa
 
13:34:34,486 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:34,487 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:34:34,487 DEBUG [routes.middleware] Matched GET /error/document
 
13:34:34,488 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:34:34,488 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:34:34,488 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:34,488 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:34:34,517 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:34:34,518 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:34:34,518 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:34:34,518 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:34:34,518 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:34:34,518 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2e6ca50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x28c8758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'url': <routes.util.URLGenerator object at 0x2e6c950>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2e6c910 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2e6ca50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2e71680>, 'session': {'_accessed_time': 1266496474.5190289, '_creation_time': 1266496474.5190289}, 'N_': <function gettext_noop at 0x28c8410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2d79390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2e6c990 200 OK>, '_': <function ugettext at 0x28c8578>}
 
13:34:34,520 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:34:34,521 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:34:36,682 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:34:36,697 DEBUG [routes.middleware] No route matched for GET /add/dupa/
 
13:34:36,698 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:36,698 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:34:36,699 DEBUG [routes.middleware] Matched GET /error/document
 
13:34:36,699 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:34:36,699 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:34:36,699 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:36,699 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:34:36,700 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:34:36,700 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:34:36,700 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:34:36,700 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:34:36,700 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3095b90 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x28c8758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'url': <routes.util.URLGenerator object at 0x3095a90>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3095a50 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3095b90 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3099488>, 'session': {'_accessed_time': 1266496476.700875, '_creation_time': 1266496474.5190289}, 'N_': <function gettext_noop at 0x28c8410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2d79390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3095ad0 200 OK>, '_': <function ugettext at 0x28c8578>}
 
13:34:36,701 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:34:36,701 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:34:41,883 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:34:41,886 DEBUG [routes.middleware] No route matched for GET /
 
13:34:41,887 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:41,888 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:34:41,890 DEBUG [routes.middleware] Matched GET /error/document
 
13:34:41,890 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:34:41,891 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:34:41,891 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:41,892 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:34:41,893 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:34:41,893 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:34:41,893 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:34:41,894 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:34:41,894 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x309b2d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x28c8758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'url': <routes.util.URLGenerator object at 0x309b1d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x309b190 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x309b2d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3099fc8>, 'session': {'_accessed_time': 1266496481.895602, '_creation_time': 1266496474.5190289}, 'N_': <function gettext_noop at 0x28c8410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2d79390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x309b210 200 OK>, '_': <function ugettext at 0x28c8578>}
 
13:34:41,897 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:34:41,898 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:34:46,948 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:34:46,951 DEBUG [routes.middleware] No route matched for GET /
 
13:34:46,952 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:46,953 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:34:46,955 DEBUG [routes.middleware] Matched GET /error/document
 
13:34:46,955 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:34:46,956 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:34:46,956 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:46,957 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:34:46,958 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:34:46,958 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:34:46,959 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:34:46,959 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:34:46,960 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x309ba50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x28c8758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'url': <routes.util.URLGenerator object at 0x309b950>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x309b910 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x309ba50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x309dc68>, 'session': {'_accessed_time': 1266496486.961149, '_creation_time': 1266496474.5190289}, 'N_': <function gettext_noop at 0x28c8410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2d79390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2d79550>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x309b990 200 OK>, '_': <function ugettext at 0x28c8578>}
 
13:34:46,962 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:34:46,962 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:34:50,833 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:34:50,834 DEBUG [pylons.configuration] Pushing process configuration
 
13:34:50,837 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:34:50,837 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:34:50,840 DEBUG [pylons.templating] Initialized Buffet object
 
13:34:50,841 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:34:50,841 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:34:50,843 DEBUG [paste.httpserver.ThreadPool] Started new worker 139635353172240: Initial worker pool
 
13:34:50,843 DEBUG [paste.httpserver.ThreadPool] Started new worker 139635344779536: Initial worker pool
 
13:34:50,843 DEBUG [paste.httpserver.ThreadPool] Started new worker 139635336386832: Initial worker pool
 
13:34:50,843 DEBUG [paste.httpserver.ThreadPool] Started new worker 139635327994128: Initial worker pool
 
13:34:50,844 DEBUG [paste.httpserver.ThreadPool] Started new worker 139635319601424: Initial worker pool
 
13:34:50,844 DEBUG [paste.httpserver.ThreadPool] Started new worker 139635311208720: Initial worker pool
 
13:34:50,844 DEBUG [paste.httpserver.ThreadPool] Started new worker 139635302816016: Initial worker pool
 
13:34:50,844 DEBUG [paste.httpserver.ThreadPool] Started new worker 139635294423312: Initial worker pool
 
13:34:50,845 DEBUG [paste.httpserver.ThreadPool] Started new worker 139635286030608: Initial worker pool
 
13:34:50,845 DEBUG [paste.httpserver.ThreadPool] Started new worker 139635277637904: Initial worker pool
 
13:34:51,410 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:34:51,413 DEBUG [routes.middleware] No route matched for GET /
 
13:34:51,413 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:51,414 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:34:51,415 DEBUG [routes.middleware] Matched GET /error/document
 
13:34:51,415 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:34:51,415 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:34:51,415 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:51,416 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:34:51,443 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:34:51,443 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:34:51,443 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:34:51,443 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:34:51,443 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:34:51,444 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x38b6290 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x38b6190>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x38b6150 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x38b6290 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x38b4cf8>, 'session': {'_accessed_time': 1266496491.444468, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x38b61d0 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:34:51,445 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:34:51,446 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:34:52,179 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:34:52,183 DEBUG [routes.middleware] No route matched for GET /
 
13:34:52,183 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:52,184 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:34:52,186 DEBUG [routes.middleware] Matched GET /error/document
 
13:34:52,187 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:34:52,187 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:34:52,188 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:52,189 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:34:52,189 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:34:52,189 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:34:52,190 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:34:52,190 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:34:52,191 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3baaad0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3baa9d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3baa990 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3baaad0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bb03b0>, 'session': {'_accessed_time': 1266496492.192136, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3baaa10 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:34:52,194 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:34:52,194 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:34:57,229 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:34:57,232 DEBUG [routes.middleware] No route matched for GET /
 
13:34:57,232 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:57,234 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:34:57,235 DEBUG [routes.middleware] Matched GET /error/document
 
13:34:57,236 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:34:57,236 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:34:57,237 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:34:57,238 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:34:57,238 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:34:57,239 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:34:57,239 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:34:57,239 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:34:57,240 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3bb1290 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3bb1190>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3bb1150 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3bb1290 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bb0f80>, 'session': {'_accessed_time': 1266496497.24141, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3bb11d0 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:34:57,251 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:34:57,252 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:02,339 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:02,340 DEBUG [routes.middleware] No route matched for GET /
 
13:35:02,340 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:02,340 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:02,341 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:02,341 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:02,341 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:02,342 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:02,342 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:02,342 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:02,342 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:02,342 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:02,342 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:02,343 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3bb1a10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3bb1910>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3bb18d0 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3bb1a10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bb3b90>, 'session': {'_accessed_time': 1266496502.343267, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3bb1950 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:35:02,343 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:02,344 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:07,379 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:07,382 DEBUG [routes.middleware] No route matched for GET /
 
13:35:07,382 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:07,383 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:07,385 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:07,386 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:07,386 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:07,387 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:07,388 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:07,388 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:07,389 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:07,389 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:07,389 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:07,389 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3bb71d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3bb70d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3bb7090 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3bb71d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bb67a0>, 'session': {'_accessed_time': 1266496507.389828, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3bb7110 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:35:07,390 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:07,390 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:12,469 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:12,472 DEBUG [routes.middleware] No route matched for GET /
 
13:35:12,472 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:12,474 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:12,475 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:12,476 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:12,476 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:12,477 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:12,478 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:12,478 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:12,479 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:12,479 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:12,480 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:12,480 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3bb7950 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3bb7850>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3bb7810 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3bb7950 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bb83b0>, 'session': {'_accessed_time': 1266496512.4823511, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3bb7890 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:35:12,484 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:12,484 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:17,517 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:17,520 DEBUG [routes.middleware] No route matched for GET /
 
13:35:17,521 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:17,522 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:17,524 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:17,524 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:17,525 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:17,525 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:17,526 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:17,527 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:17,527 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:17,527 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:17,528 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:17,528 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3bb1490 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3bb1690>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3bb1410 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3bb1490 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bb8680>, 'session': {'_accessed_time': 1266496517.5416131, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3bb19d0 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:35:17,542 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:17,542 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:22,577 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:22,580 DEBUG [routes.middleware] No route matched for GET /
 
13:35:22,580 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:22,581 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:22,583 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:22,584 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:22,584 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:22,585 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:22,586 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:22,586 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:22,587 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:22,587 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:22,587 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:22,588 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3baa590 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3baa950>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3baae50 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3baa590 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bb8d40>, 'session': {'_accessed_time': 1266496522.5908301, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3baa910 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:35:22,591 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:22,591 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:27,628 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:27,630 DEBUG [routes.middleware] No route matched for GET /
 
13:35:27,631 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:27,632 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:27,634 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:27,634 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:27,635 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:27,635 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:27,636 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:27,637 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:27,637 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:27,638 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:27,638 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:27,649 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3bb77d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3baaa90>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3baa750 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3bb77d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bb9440>, 'session': {'_accessed_time': 1266496527.6500859, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3bb7550 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:35:27,650 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:27,651 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:32,686 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:32,689 DEBUG [routes.middleware] No route matched for GET /
 
13:35:32,689 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:32,690 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:32,692 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:32,693 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:32,693 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:32,694 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:32,695 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:32,695 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:32,695 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:32,696 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:32,696 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:32,697 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3bb7d90 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3bb7c90>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3bb7c50 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3bb7d90 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bb9b00>, 'session': {'_accessed_time': 1266496532.698153, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3bb7cd0 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:35:32,704 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:32,704 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:37,759 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:37,762 DEBUG [routes.middleware] No route matched for GET /
 
13:35:37,762 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:37,764 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:37,765 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:37,766 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:37,766 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:37,767 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:37,768 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:37,768 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:37,769 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:37,769 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:37,769 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:37,770 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3bbc390 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3bbc290>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3bbc250 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3bbc390 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bbd440>, 'session': {'_accessed_time': 1266496537.771328, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3bbc2d0 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:35:37,773 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:37,774 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:42,803 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:42,804 DEBUG [routes.middleware] No route matched for GET /
 
13:35:42,804 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:42,805 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:42,805 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:42,805 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:42,806 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:42,806 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:42,806 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:42,806 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:42,806 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:42,807 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:42,807 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:42,807 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3bbca50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x33f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'url': <routes.util.URLGenerator object at 0x3bbc950>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3bbc910 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3bbca50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3bbdd88>, 'session': {'_accessed_time': 1266496542.8076911, '_creation_time': 1266496491.444468}, 'N_': <function gettext_noop at 0x33f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x38a6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x38a6510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3bbc990 200 OK>, '_': <function ugettext at 0x33f4578>}
 
13:35:42,808 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:42,808 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:43,329 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:35:43,329 DEBUG [pylons.configuration] Pushing process configuration
 
13:35:43,333 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:35:43,333 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:35:43,338 DEBUG [pylons.templating] Initialized Buffet object
 
13:35:43,339 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:35:43,339 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:35:43,341 DEBUG [paste.httpserver.ThreadPool] Started new worker 139870147250448: Initial worker pool
 
13:35:43,342 DEBUG [paste.httpserver.ThreadPool] Started new worker 139870138857744: Initial worker pool
 
13:35:43,342 DEBUG [paste.httpserver.ThreadPool] Started new worker 139870130465040: Initial worker pool
 
13:35:43,342 DEBUG [paste.httpserver.ThreadPool] Started new worker 139870122072336: Initial worker pool
 
13:35:43,342 DEBUG [paste.httpserver.ThreadPool] Started new worker 139870113679632: Initial worker pool
 
13:35:43,342 DEBUG [paste.httpserver.ThreadPool] Started new worker 139870105286928: Initial worker pool
 
13:35:43,343 DEBUG [paste.httpserver.ThreadPool] Started new worker 139870096894224: Initial worker pool
 
13:35:43,343 DEBUG [paste.httpserver.ThreadPool] Started new worker 139870088501520: Initial worker pool
 
13:35:43,343 DEBUG [paste.httpserver.ThreadPool] Started new worker 139870080108816: Initial worker pool
 
13:35:43,343 DEBUG [paste.httpserver.ThreadPool] Started new worker 139870071716112: Initial worker pool
 
13:35:47,872 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:47,882 DEBUG [routes.middleware] No route matched for GET /
 
13:35:47,883 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:47,884 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:47,884 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:47,884 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:47,884 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:47,885 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:47,885 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:47,908 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:35:47,908 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:47,908 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:47,908 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:47,908 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:47,908 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2db59d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x2811758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2cc2510>, 'url': <routes.util.URLGenerator object at 0x2db58d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2db5890 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2db59d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2db9638>, 'session': {'_accessed_time': 1266496547.909178, '_creation_time': 1266496547.909178}, 'N_': <function gettext_noop at 0x2811410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2cc2510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2cc2350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2cc2510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2db5910 200 OK>, '_': <function ugettext at 0x2811578>}
 
13:35:47,910 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:47,910 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:52,952 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:52,954 DEBUG [routes.middleware] No route matched for GET /
 
13:35:52,955 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:52,956 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:52,958 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:52,958 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:52,959 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:52,959 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:52,960 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:52,961 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:52,961 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:52,962 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:52,962 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:52,963 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2fe1ad0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x2811758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2cc2510>, 'url': <routes.util.URLGenerator object at 0x2fe19d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2fe1990 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2fe1ad0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2fe4368>, 'session': {'_accessed_time': 1266496552.963866, '_creation_time': 1266496547.909178}, 'N_': <function gettext_noop at 0x2811410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2cc2510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2cc2350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2cc2510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2fe1a10 200 OK>, '_': <function ugettext at 0x2811578>}
 
13:35:52,965 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:52,966 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:35:54,886 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:35:54,886 DEBUG [pylons.configuration] Pushing process configuration
 
13:35:54,890 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:35:54,890 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:35:54,894 DEBUG [pylons.templating] Initialized Buffet object
 
13:35:54,894 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:35:54,895 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:35:54,897 DEBUG [paste.httpserver.ThreadPool] Started new worker 140658063747344: Initial worker pool
 
13:35:54,897 DEBUG [paste.httpserver.ThreadPool] Started new worker 140658055354640: Initial worker pool
 
13:35:54,897 DEBUG [paste.httpserver.ThreadPool] Started new worker 140658046961936: Initial worker pool
 
13:35:54,898 DEBUG [paste.httpserver.ThreadPool] Started new worker 140658038569232: Initial worker pool
 
13:35:54,898 DEBUG [paste.httpserver.ThreadPool] Started new worker 140658030176528: Initial worker pool
 
13:35:54,898 DEBUG [paste.httpserver.ThreadPool] Started new worker 140658021783824: Initial worker pool
 
13:35:54,898 DEBUG [paste.httpserver.ThreadPool] Started new worker 140658013391120: Initial worker pool
 
13:35:54,899 DEBUG [paste.httpserver.ThreadPool] Started new worker 140658004998416: Initial worker pool
 
13:35:54,899 DEBUG [paste.httpserver.ThreadPool] Started new worker 140657996605712: Initial worker pool
 
13:35:54,899 DEBUG [paste.httpserver.ThreadPool] Started new worker 140657988213008: Initial worker pool
 
13:35:58,005 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:35:58,019 DEBUG [routes.middleware] No route matched for GET /
 
13:35:58,020 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:58,024 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
13:35:58,026 DEBUG [routes.middleware] Matched GET /error/document
 
13:35:58,026 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:35:58,027 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:35:58,027 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:35:58,028 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:35:58,060 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:35:58,060 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:35:58,061 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:35:58,061 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:35:58,061 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:35:58,061 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x294e9d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x23ad758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x285e510>, 'url': <routes.util.URLGenerator object at 0x294e8d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x294e890 GET http://127.0.0.1:5000/error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x294e9d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2952638>, 'session': {'_accessed_time': 1266496558.0620201, '_creation_time': 1266496558.0620201}, 'N_': <function gettext_noop at 0x23ad410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x285e510>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x285e350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x285e510>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x294e910 200 OK>, '_': <function ugettext at 0x23ad578>}
 
13:35:58,063 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:35:58,063 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:00,995 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:00,996 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:00,996 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'new_repo': u'', 'controller': u'hg'}
 
13:36:00,997 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:00,997 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:00,997 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:01,029 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:36:01,029 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:01,029 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:01,029 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:01,030 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:01,030 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:01,030 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:11,524 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:36:11,525 DEBUG [pylons.configuration] Pushing process configuration
 
13:36:11,528 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:36:11,528 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:36:11,532 DEBUG [pylons.templating] Initialized Buffet object
 
13:36:11,532 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:36:11,532 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:36:11,534 DEBUG [paste.httpserver.ThreadPool] Started new worker 140240408353040: Initial worker pool
 
13:36:11,534 DEBUG [paste.httpserver.ThreadPool] Started new worker 140240399960336: Initial worker pool
 
13:36:11,535 DEBUG [paste.httpserver.ThreadPool] Started new worker 140240391567632: Initial worker pool
 
13:36:11,535 DEBUG [paste.httpserver.ThreadPool] Started new worker 140240383174928: Initial worker pool
 
13:36:11,535 DEBUG [paste.httpserver.ThreadPool] Started new worker 140240374782224: Initial worker pool
 
13:36:11,535 DEBUG [paste.httpserver.ThreadPool] Started new worker 140240366389520: Initial worker pool
 
13:36:11,536 DEBUG [paste.httpserver.ThreadPool] Started new worker 140240357996816: Initial worker pool
 
13:36:11,536 DEBUG [paste.httpserver.ThreadPool] Started new worker 140240349604112: Initial worker pool
 
13:36:11,536 DEBUG [paste.httpserver.ThreadPool] Started new worker 140240341211408: Initial worker pool
 
13:36:11,536 DEBUG [paste.httpserver.ThreadPool] Started new worker 140240332818704: Initial worker pool
 
13:36:13,092 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:13,104 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:13,104 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:13,104 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:13,104 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:13,105 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:13,156 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:36:13,156 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:13,156 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:13,156 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:13,157 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:13,157 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:13,157 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:15,056 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:15,059 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:15,060 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:15,060 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:15,061 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:15,061 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:15,062 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:15,062 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:15,062 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:15,062 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:15,062 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:15,062 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:15,514 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:15,515 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:15,516 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:15,516 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:15,516 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:15,516 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:15,517 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:15,517 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:15,517 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:15,517 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:15,517 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:15,517 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:15,916 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:15,917 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:15,918 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:15,918 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:15,918 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:15,918 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:15,919 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:15,919 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:15,919 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:15,919 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:15,919 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:15,919 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:16,256 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:16,259 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:16,259 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:16,260 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:16,260 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:16,262 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:16,263 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:16,263 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:16,263 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:16,264 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:16,264 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:16,264 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:16,944 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:16,947 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:16,947 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:16,948 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:16,948 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:16,950 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:16,950 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:16,950 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:16,951 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:16,951 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:16,951 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:16,951 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:21,978 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:36:21,978 DEBUG [pylons.configuration] Pushing process configuration
 
13:36:21,982 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:36:21,982 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:36:21,985 DEBUG [pylons.templating] Initialized Buffet object
 
13:36:21,986 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:36:21,986 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:36:21,988 DEBUG [paste.httpserver.ThreadPool] Started new worker 139733620590864: Initial worker pool
 
13:36:21,988 DEBUG [paste.httpserver.ThreadPool] Started new worker 139733612198160: Initial worker pool
 
13:36:21,988 DEBUG [paste.httpserver.ThreadPool] Started new worker 139733603805456: Initial worker pool
 
13:36:21,988 DEBUG [paste.httpserver.ThreadPool] Started new worker 139733595412752: Initial worker pool
 
13:36:21,989 DEBUG [paste.httpserver.ThreadPool] Started new worker 139733587020048: Initial worker pool
 
13:36:21,989 DEBUG [paste.httpserver.ThreadPool] Started new worker 139733578627344: Initial worker pool
 
13:36:21,989 DEBUG [paste.httpserver.ThreadPool] Started new worker 139733570234640: Initial worker pool
 
13:36:21,990 DEBUG [paste.httpserver.ThreadPool] Started new worker 139733561841936: Initial worker pool
 
13:36:21,990 DEBUG [paste.httpserver.ThreadPool] Started new worker 139733553449232: Initial worker pool
 
13:36:21,990 DEBUG [paste.httpserver.ThreadPool] Started new worker 139733545056528: Initial worker pool
 
13:36:22,534 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:22,549 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:22,549 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:22,549 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:22,549 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:22,551 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:22,599 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:36:22,599 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:22,599 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:22,599 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:22,599 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:22,600 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:22,600 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:27,362 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:36:27,362 DEBUG [pylons.configuration] Pushing process configuration
 
13:36:27,366 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:36:27,366 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:36:27,369 DEBUG [pylons.templating] Initialized Buffet object
 
13:36:27,369 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:36:27,370 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:36:27,372 DEBUG [paste.httpserver.ThreadPool] Started new worker 140156592253200: Initial worker pool
 
13:36:27,372 DEBUG [paste.httpserver.ThreadPool] Started new worker 140156583860496: Initial worker pool
 
13:36:27,372 DEBUG [paste.httpserver.ThreadPool] Started new worker 140156575467792: Initial worker pool
 
13:36:27,373 DEBUG [paste.httpserver.ThreadPool] Started new worker 140156567075088: Initial worker pool
 
13:36:27,373 DEBUG [paste.httpserver.ThreadPool] Started new worker 140156558682384: Initial worker pool
 
13:36:27,373 DEBUG [paste.httpserver.ThreadPool] Started new worker 140156550289680: Initial worker pool
 
13:36:27,373 DEBUG [paste.httpserver.ThreadPool] Started new worker 140156541896976: Initial worker pool
 
13:36:27,374 DEBUG [paste.httpserver.ThreadPool] Started new worker 140156533504272: Initial worker pool
 
13:36:27,374 DEBUG [paste.httpserver.ThreadPool] Started new worker 140156525111568: Initial worker pool
 
13:36:27,374 DEBUG [paste.httpserver.ThreadPool] Started new worker 140156516718864: Initial worker pool
 
13:36:27,618 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:27,621 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:27,621 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:27,621 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:27,621 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:27,623 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:27,687 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:36:27,687 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:27,687 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:27,688 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:27,688 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:27,688 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:27,688 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:30,010 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:30,019 DEBUG [routes.middleware] Matched GET /add/dupa/
 
13:36:30,019 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:36:30,019 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa/'}
 
13:36:30,020 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:30,020 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:30,020 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:30,020 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:30,021 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:36:30,021 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2a035f0>, 'environ': {'routes.route': <routes.route.Route object at 0x2482510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2482750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dupa/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29d9b50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x24827d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29d9a90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x248cd50>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2482810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29d9b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2482810>, 'wsgi.input': <socket._fileobject object at 0x29bd7d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496590.0214529, '_creation_time': 1266496590.0214529}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x248cd50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x29d9610>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f78c44121c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x17d14d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:36:30,906 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:36:30,913 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:36:30,914 DEBUG [routes.middleware] Matched GET /error/document
 
13:36:30,914 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:36:30,914 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:36:30,914 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:30,914 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:36:30,915 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:36:30,915 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:30,915 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:30,915 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:36:30,915 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:36:30,916 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2a1d710 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1fd0758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2482590>, 'url': <routes.util.URLGenerator object at 0x2a1d590>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2a1d550 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2a1d710 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2a0ef80>, 'session': {'_accessed_time': 1266496590.91627, '_creation_time': 1266496590.0214529}, 'N_': <function gettext_noop at 0x1fd0410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2482590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2482350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2482590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2a1d650 200 OK>, '_': <function ugettext at 0x1fd0578>}
 
13:36:30,917 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:30,917 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:32,695 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:32,701 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:32,701 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:32,702 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:32,702 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:32,702 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:32,702 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:32,702 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:32,703 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:32,703 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:32,703 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:32,703 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:36,885 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:36:36,885 DEBUG [pylons.configuration] Pushing process configuration
 
13:36:36,888 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:36:36,888 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:36:36,892 DEBUG [pylons.templating] Initialized Buffet object
 
13:36:36,892 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:36:36,893 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:36:36,895 DEBUG [paste.httpserver.ThreadPool] Started new worker 139645487958288: Initial worker pool
 
13:36:36,895 DEBUG [paste.httpserver.ThreadPool] Started new worker 139645479565584: Initial worker pool
 
13:36:36,895 DEBUG [paste.httpserver.ThreadPool] Started new worker 139645471172880: Initial worker pool
 
13:36:36,895 DEBUG [paste.httpserver.ThreadPool] Started new worker 139645462780176: Initial worker pool
 
13:36:36,896 DEBUG [paste.httpserver.ThreadPool] Started new worker 139645454387472: Initial worker pool
 
13:36:36,896 DEBUG [paste.httpserver.ThreadPool] Started new worker 139645445994768: Initial worker pool
 
13:36:36,896 DEBUG [paste.httpserver.ThreadPool] Started new worker 139645437602064: Initial worker pool
 
13:36:36,896 DEBUG [paste.httpserver.ThreadPool] Started new worker 139645429209360: Initial worker pool
 
13:36:36,896 DEBUG [paste.httpserver.ThreadPool] Started new worker 139645420816656: Initial worker pool
 
13:36:36,897 DEBUG [paste.httpserver.ThreadPool] Started new worker 139645412423952: Initial worker pool
 
13:36:37,908 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:37,911 DEBUG [routes.middleware] Matched GET /add/dupa/
 
13:36:37,911 DEBUG [routes.middleware] Route path: '/add/{new_repo}/', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:37,911 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:37,911 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:37,912 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:37,972 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:36:37,972 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:37,972 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:37,973 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:37,973 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:37,973 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:37,973 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:40,122 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:40,123 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:40,123 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:36:40,123 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}
 
13:36:40,124 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:40,124 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:40,124 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:40,124 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:40,124 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:36:40,125 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2cb25f0>, 'environ': {'routes.route': <routes.route.Route object at 0x272c510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x272c750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dupa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c97b50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x272c7d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2c97a90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x281e450>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x272c810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c97b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x272c810>, 'wsgi.input': <socket._fileobject object at 0x26b6bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496600.125267, '_creation_time': 1266496600.125267}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x281e450>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x281e250>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f01c41081c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1a7b4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:36:41,145 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:36:41,152 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:36:41,153 DEBUG [routes.middleware] Matched GET /error/document
 
13:36:41,153 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:36:41,153 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:36:41,153 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:41,153 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:36:41,154 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:36:41,154 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:41,154 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:41,154 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:36:41,154 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:36:41,154 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2cca710 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x227a758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x272c590>, 'url': <routes.util.URLGenerator object at 0x2cca590>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2cca550 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2cca710 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2cbbdd0>, 'session': {'_accessed_time': 1266496601.1551909, '_creation_time': 1266496600.125267}, 'N_': <function gettext_noop at 0x227a410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x272c590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x272c350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x272c590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2cca650 200 OK>, '_': <function ugettext at 0x227a578>}
 
13:36:41,156 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:41,156 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:36:45,309 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:36:45,309 DEBUG [pylons.configuration] Pushing process configuration
 
13:36:45,312 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:36:45,312 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:36:45,316 DEBUG [pylons.templating] Initialized Buffet object
 
13:36:45,316 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:36:45,316 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:36:45,318 DEBUG [paste.httpserver.ThreadPool] Started new worker 140121365072144: Initial worker pool
 
13:36:45,318 DEBUG [paste.httpserver.ThreadPool] Started new worker 140121356679440: Initial worker pool
 
13:36:45,319 DEBUG [paste.httpserver.ThreadPool] Started new worker 140121348286736: Initial worker pool
 
13:36:45,319 DEBUG [paste.httpserver.ThreadPool] Started new worker 140121339894032: Initial worker pool
 
13:36:45,319 DEBUG [paste.httpserver.ThreadPool] Started new worker 140121331501328: Initial worker pool
 
13:36:45,319 DEBUG [paste.httpserver.ThreadPool] Started new worker 140121323108624: Initial worker pool
 
13:36:45,320 DEBUG [paste.httpserver.ThreadPool] Started new worker 140121306323216: Initial worker pool
 
13:36:45,320 DEBUG [paste.httpserver.ThreadPool] Started new worker 140121314715920: Initial worker pool
 
13:36:45,320 DEBUG [paste.httpserver.ThreadPool] Started new worker 140121297930512: Initial worker pool
 
13:36:45,320 DEBUG [paste.httpserver.ThreadPool] Started new worker 140121289537808: Initial worker pool
 
13:36:46,202 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:46,213 DEBUG [routes.middleware] Matched GET /
 
13:36:46,214 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:36:46,214 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:36:46,214 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:46,215 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:46,265 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:36:46,266 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:46,266 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:46,266 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:36:46,266 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x29b2c80>, 'environ': {'routes.route': <routes.route.Route object at 0x28c1510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x28c1750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29b3810>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x28c17d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29b34d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x29b3390>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x28c1810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29b3810>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x28c1810>, 'wsgi.input': <socket._fileobject object at 0x284ba50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496606.266825, '_creation_time': 1266496606.266825}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x29b3390>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x28d7f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f70908d01c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1c104d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:36:47,174 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:36:47,258 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:36:47,296 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:47,332 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:36:47,332 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:36:47,333 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:36:47,333 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:47,333 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:47,334 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:47,334 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:47,334 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:36:47,334 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2e5aa28>, 'environ': {'routes.route': <routes.route.Route object at 0x28c1510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x28c1750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2e5f5d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2e5f510>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x28c17d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x29b3410>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x28c1810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2e5f5d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x28c1810>, 'wsgi.input': <socket._fileobject object at 0x284bbd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496607.334722, '_creation_time': 1266496606.266825}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x29b3410>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2e4cfd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f70908d01c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1c104d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:36:48,259 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:36:48,259 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:36:50,315 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:50,316 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:36:50,316 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:36:50,316 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:36:50,316 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:50,317 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:50,317 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:50,317 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:50,317 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:36:50,317 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2e5a488>, 'environ': {'routes.route': <routes.route.Route object at 0x28c1510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x28c1750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2e4ce10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x28c17d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2e4ccd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2e4cdd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x28c1810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2e4ce10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x28c1810>, 'wsgi.input': <socket._fileobject object at 0x284bad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266496610.317848, '_creation_time': 1266496606.266825}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2e4cdd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2e5f1d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f70908d01c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1c104d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:36:51,259 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:36:51,259 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:36:52,685 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:36:52,686 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:36:52,686 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:36:52,686 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:36:52,686 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:36:52,687 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:36:52,687 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:36:52,687 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:36:52,687 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:36:52,687 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:36:52,687 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:36:52,687 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:37:18,487 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:37:18,487 DEBUG [pylons.configuration] Pushing process configuration
 
13:37:18,490 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:37:18,490 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:37:18,494 DEBUG [pylons.templating] Initialized Buffet object
 
13:37:18,494 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:37:18,494 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:37:18,496 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662934149392: Initial worker pool
 
13:37:18,497 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662925756688: Initial worker pool
 
13:37:18,497 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662917363984: Initial worker pool
 
13:37:18,497 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662908971280: Initial worker pool
 
13:37:18,497 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662900578576: Initial worker pool
 
13:37:18,498 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662892185872: Initial worker pool
 
13:37:18,498 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662883793168: Initial worker pool
 
13:37:18,498 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662875400464: Initial worker pool
 
13:37:18,498 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662867007760: Initial worker pool
 
13:37:18,499 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662858615056: Initial worker pool
 
13:37:22,025 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:37:22,029 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:37:22,029 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:37:22,029 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:37:22,029 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:37:22,030 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:37:22,083 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:37:22,083 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:37:22,083 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:37:22,083 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:37:22,083 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:37:22,084 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:37:22,084 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:38:03,048 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:38:03,048 DEBUG [pylons.configuration] Pushing process configuration
 
13:38:03,052 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:38:03,053 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:38:03,056 DEBUG [pylons.templating] Initialized Buffet object
 
13:38:03,057 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:38:03,057 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:38:03,059 DEBUG [paste.httpserver.ThreadPool] Started new worker 140378286565648: Initial worker pool
 
13:38:03,059 DEBUG [paste.httpserver.ThreadPool] Started new worker 140378278172944: Initial worker pool
 
13:38:03,059 DEBUG [paste.httpserver.ThreadPool] Started new worker 140378269780240: Initial worker pool
 
13:38:03,060 DEBUG [paste.httpserver.ThreadPool] Started new worker 140378261387536: Initial worker pool
 
13:38:03,060 DEBUG [paste.httpserver.ThreadPool] Started new worker 140378252994832: Initial worker pool
 
13:38:03,060 DEBUG [paste.httpserver.ThreadPool] Started new worker 140378244602128: Initial worker pool
 
13:38:03,060 DEBUG [paste.httpserver.ThreadPool] Started new worker 140378236209424: Initial worker pool
 
13:38:03,060 DEBUG [paste.httpserver.ThreadPool] Started new worker 140378227816720: Initial worker pool
 
13:38:03,061 DEBUG [paste.httpserver.ThreadPool] Started new worker 140378219424016: Initial worker pool
 
13:38:03,061 DEBUG [paste.httpserver.ThreadPool] Started new worker 140378211031312: Initial worker pool
 
13:38:03,985 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:38:03,990 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:38:03,990 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:38:03,990 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:38:03,990 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:38:03,991 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:38:04,047 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:38:04,047 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:38:04,047 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:38:04,047 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:38:04,047 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:38:04,047 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:38:04,048 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:38:11,366 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:38:11,367 DEBUG [pylons.configuration] Pushing process configuration
 
13:38:11,426 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:38:11,427 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:38:11,437 DEBUG [pylons.templating] Initialized Buffet object
 
13:38:11,438 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:38:11,438 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:38:11,444 DEBUG [paste.httpserver.ThreadPool] Started new worker 140072574155024: Initial worker pool
 
13:38:11,445 DEBUG [paste.httpserver.ThreadPool] Started new worker 140072565762320: Initial worker pool
 
13:38:11,446 DEBUG [paste.httpserver.ThreadPool] Started new worker 140072557369616: Initial worker pool
 
13:38:11,447 DEBUG [paste.httpserver.ThreadPool] Started new worker 140072548976912: Initial worker pool
 
13:38:11,447 DEBUG [paste.httpserver.ThreadPool] Started new worker 140072540584208: Initial worker pool
 
13:38:11,448 DEBUG [paste.httpserver.ThreadPool] Started new worker 140072532191504: Initial worker pool
 
13:38:11,450 DEBUG [paste.httpserver.ThreadPool] Started new worker 140072523798800: Initial worker pool
 
13:38:11,450 DEBUG [paste.httpserver.ThreadPool] Started new worker 140072515406096: Initial worker pool
 
13:38:11,451 DEBUG [paste.httpserver.ThreadPool] Started new worker 140072507013392: Initial worker pool
 
13:38:11,451 DEBUG [paste.httpserver.ThreadPool] Started new worker 140072498620688: Initial worker pool
 
13:38:11,546 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:38:11,548 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:38:11,548 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:38:11,548 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:38:11,548 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:38:11,550 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:38:11,638 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:38:11,638 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:38:11,638 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:38:11,638 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:38:11,638 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:38:11,638 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:38:11,639 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:38:18,818 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:38:18,819 DEBUG [pylons.configuration] Pushing process configuration
 
13:38:18,822 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:38:18,822 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:38:18,826 DEBUG [pylons.templating] Initialized Buffet object
 
13:38:18,826 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:38:18,826 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:38:18,828 DEBUG [paste.httpserver.ThreadPool] Started new worker 140401426987280: Initial worker pool
 
13:38:18,828 DEBUG [paste.httpserver.ThreadPool] Started new worker 140401418594576: Initial worker pool
 
13:38:18,829 DEBUG [paste.httpserver.ThreadPool] Started new worker 140401410201872: Initial worker pool
 
13:38:18,829 DEBUG [paste.httpserver.ThreadPool] Started new worker 140401401809168: Initial worker pool
 
13:38:18,829 DEBUG [paste.httpserver.ThreadPool] Started new worker 140401393416464: Initial worker pool
 
13:38:18,830 DEBUG [paste.httpserver.ThreadPool] Started new worker 140401385023760: Initial worker pool
 
13:38:18,830 DEBUG [paste.httpserver.ThreadPool] Started new worker 140401376631056: Initial worker pool
 
13:38:18,830 DEBUG [paste.httpserver.ThreadPool] Started new worker 140401368238352: Initial worker pool
 
13:38:18,830 DEBUG [paste.httpserver.ThreadPool] Started new worker 140401359845648: Initial worker pool
 
13:38:18,831 DEBUG [paste.httpserver.ThreadPool] Started new worker 140401351452944: Initial worker pool
 
13:38:19,865 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:38:19,874 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:38:19,874 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:38:19,875 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dupa', 'controller': u'hg'}
 
13:38:19,875 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:38:19,876 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:38:19,928 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:38:19,929 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:38:19,929 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:38:19,929 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:38:19,929 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dupa'}
 
13:38:19,929 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:38:19,929 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:38:29,315 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:38:29,315 DEBUG [pylons.configuration] Pushing process configuration
 
13:38:29,318 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:38:29,318 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:38:29,322 DEBUG [pylons.templating] Initialized Buffet object
 
13:38:29,322 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:38:29,322 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:38:29,324 DEBUG [paste.httpserver.ThreadPool] Started new worker 140562853845264: Initial worker pool
 
13:38:29,324 DEBUG [paste.httpserver.ThreadPool] Started new worker 140562845452560: Initial worker pool
 
13:38:29,325 DEBUG [paste.httpserver.ThreadPool] Started new worker 140562837059856: Initial worker pool
 
13:38:29,325 DEBUG [paste.httpserver.ThreadPool] Started new worker 140562828667152: Initial worker pool
 
13:38:29,325 DEBUG [paste.httpserver.ThreadPool] Started new worker 140562820274448: Initial worker pool
 
13:38:29,325 DEBUG [paste.httpserver.ThreadPool] Started new worker 140562811881744: Initial worker pool
 
13:38:29,326 DEBUG [paste.httpserver.ThreadPool] Started new worker 140562803489040: Initial worker pool
 
13:38:29,326 DEBUG [paste.httpserver.ThreadPool] Started new worker 140562795096336: Initial worker pool
 
13:38:29,326 DEBUG [paste.httpserver.ThreadPool] Started new worker 140562786703632: Initial worker pool
 
13:38:29,326 DEBUG [paste.httpserver.ThreadPool] Started new worker 140562778310928: Initial worker pool
 
13:46:22,622 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:46:22,625 DEBUG [routes.middleware] Matched GET /add/add
 
13:46:22,625 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:46:22,625 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'add', 'controller': u'hg'}
 
13:46:22,625 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:46:22,626 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:46:22,680 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:46:22,680 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:46:22,680 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:46:22,680 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:46:22,680 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'add'}
 
13:46:22,680 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:46:22,681 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:46:34,567 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:46:34,567 DEBUG [pylons.configuration] Pushing process configuration
 
13:46:34,570 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:46:34,570 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:46:34,574 DEBUG [pylons.templating] Initialized Buffet object
 
13:46:34,574 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:46:34,574 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:46:34,576 DEBUG [paste.httpserver.ThreadPool] Started new worker 139800962181392: Initial worker pool
 
13:46:34,577 DEBUG [paste.httpserver.ThreadPool] Started new worker 139800953788688: Initial worker pool
 
13:46:34,577 DEBUG [paste.httpserver.ThreadPool] Started new worker 139800945395984: Initial worker pool
 
13:46:34,577 DEBUG [paste.httpserver.ThreadPool] Started new worker 139800937003280: Initial worker pool
 
13:46:34,577 DEBUG [paste.httpserver.ThreadPool] Started new worker 139800928610576: Initial worker pool
 
13:46:34,578 DEBUG [paste.httpserver.ThreadPool] Started new worker 139800920217872: Initial worker pool
 
13:46:34,590 DEBUG [paste.httpserver.ThreadPool] Started new worker 139800911825168: Initial worker pool
 
13:46:34,590 DEBUG [paste.httpserver.ThreadPool] Started new worker 139800903432464: Initial worker pool
 
13:46:34,591 DEBUG [paste.httpserver.ThreadPool] Started new worker 139800895039760: Initial worker pool
 
13:46:34,591 DEBUG [paste.httpserver.ThreadPool] Started new worker 139800886647056: Initial worker pool
 
13:46:39,469 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:46:39,471 DEBUG [routes.middleware] Matched GET /add/add
 
13:46:39,471 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:46:39,472 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'add', 'controller': u'hg'}
 
13:46:39,472 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:46:39,473 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:46:39,535 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:46:39,535 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:46:39,535 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:46:39,535 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:46:39,536 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'add'}
 
13:46:39,536 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:46:39,536 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:46:52,253 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:46:52,301 DEBUG [pylons.configuration] Pushing process configuration
 
13:46:52,313 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:46:52,313 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:46:52,335 DEBUG [pylons.templating] Initialized Buffet object
 
13:46:52,335 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:46:52,335 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:46:52,337 DEBUG [paste.httpserver.ThreadPool] Started new worker 140448309782800: Initial worker pool
 
13:46:52,338 DEBUG [paste.httpserver.ThreadPool] Started new worker 140448301390096: Initial worker pool
 
13:46:52,338 DEBUG [paste.httpserver.ThreadPool] Started new worker 140448292997392: Initial worker pool
 
13:46:52,338 DEBUG [paste.httpserver.ThreadPool] Started new worker 140448284604688: Initial worker pool
 
13:46:52,339 DEBUG [paste.httpserver.ThreadPool] Started new worker 140448276211984: Initial worker pool
 
13:46:52,339 DEBUG [paste.httpserver.ThreadPool] Started new worker 140448267819280: Initial worker pool
 
13:46:52,339 DEBUG [paste.httpserver.ThreadPool] Started new worker 140448259426576: Initial worker pool
 
13:46:52,340 DEBUG [paste.httpserver.ThreadPool] Started new worker 140448251033872: Initial worker pool
 
13:46:52,340 DEBUG [paste.httpserver.ThreadPool] Started new worker 140448242641168: Initial worker pool
 
13:46:52,340 DEBUG [paste.httpserver.ThreadPool] Started new worker 140448234248464: Initial worker pool
 
13:46:58,897 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:46:58,902 DEBUG [routes.middleware] Matched GET /add/add
 
13:46:58,902 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:46:58,902 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'add', 'controller': u'hg'}
 
13:46:58,903 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:46:58,904 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:46:58,978 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:46:58,979 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:46:58,979 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:46:58,979 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:46:58,979 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'add'}
 
13:46:58,979 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:46:58,979 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:47:18,187 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:47:18,187 DEBUG [pylons.configuration] Pushing process configuration
 
13:47:18,191 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:47:18,191 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:47:18,194 DEBUG [pylons.templating] Initialized Buffet object
 
13:47:18,194 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:47:18,194 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:47:18,197 DEBUG [paste.httpserver.ThreadPool] Started new worker 140069046905104: Initial worker pool
 
13:47:18,197 DEBUG [paste.httpserver.ThreadPool] Started new worker 140069038512400: Initial worker pool
 
13:47:18,197 DEBUG [paste.httpserver.ThreadPool] Started new worker 140069030119696: Initial worker pool
 
13:47:18,198 DEBUG [paste.httpserver.ThreadPool] Started new worker 140069021726992: Initial worker pool
 
13:47:18,198 DEBUG [paste.httpserver.ThreadPool] Started new worker 140069013334288: Initial worker pool
 
13:47:18,198 DEBUG [paste.httpserver.ThreadPool] Started new worker 140069004941584: Initial worker pool
 
13:47:18,198 DEBUG [paste.httpserver.ThreadPool] Started new worker 140068996548880: Initial worker pool
 
13:47:18,198 DEBUG [paste.httpserver.ThreadPool] Started new worker 140068988156176: Initial worker pool
 
13:47:18,199 DEBUG [paste.httpserver.ThreadPool] Started new worker 140068979763472: Initial worker pool
 
13:47:18,199 DEBUG [paste.httpserver.ThreadPool] Started new worker 140068971370768: Initial worker pool
 
13:48:52,518 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:48:52,518 DEBUG [pylons.configuration] Pushing process configuration
 
13:48:52,522 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:48:52,522 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:48:52,525 DEBUG [pylons.templating] Initialized Buffet object
 
13:48:52,526 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:48:52,526 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:48:52,528 DEBUG [paste.httpserver.ThreadPool] Started new worker 139746367494416: Initial worker pool
 
13:48:52,528 DEBUG [paste.httpserver.ThreadPool] Started new worker 139746359101712: Initial worker pool
 
13:48:52,529 DEBUG [paste.httpserver.ThreadPool] Started new worker 139746350709008: Initial worker pool
 
13:48:52,529 DEBUG [paste.httpserver.ThreadPool] Started new worker 139746342316304: Initial worker pool
 
13:48:52,529 DEBUG [paste.httpserver.ThreadPool] Started new worker 139746333923600: Initial worker pool
 
13:48:52,529 DEBUG [paste.httpserver.ThreadPool] Started new worker 139746325530896: Initial worker pool
 
13:48:52,530 DEBUG [paste.httpserver.ThreadPool] Started new worker 139746317138192: Initial worker pool
 
13:48:52,530 DEBUG [paste.httpserver.ThreadPool] Started new worker 139746308745488: Initial worker pool
 
13:48:52,530 DEBUG [paste.httpserver.ThreadPool] Started new worker 139746300352784: Initial worker pool
 
13:48:52,530 DEBUG [paste.httpserver.ThreadPool] Started new worker 139746291960080: Initial worker pool
 
13:48:53,467 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:48:53,472 DEBUG [routes.middleware] Matched GET /add/add
 
13:48:53,473 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:48:53,473 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/add'}
 
13:48:53,473 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:48:53,474 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:48:53,528 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:48:53,528 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:48:53,528 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:48:53,529 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:48:53,529 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x35fbd70>, 'environ': {'routes.route': <routes.route.Route object at 0x3509550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/add'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3509790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/add', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x35fc910>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3509810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x35fc5d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x35fc550>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/add'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3509850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x35fc910>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3509850>, 'wsgi.input': <socket._fileobject object at 0x3493a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497333.529438, '_creation_time': 1266497333.529438}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x35fc550>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x35fc050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f1940f411c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2854550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:48:54,430 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:48:54,448 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:48:54,449 DEBUG [routes.middleware] Matched GET /error/document
 
13:48:54,449 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:48:54,449 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:48:54,449 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:48:54,450 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:48:54,450 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:48:54,450 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:48:54,450 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:48:54,451 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:48:54,451 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:48:54,451 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3aa3350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x3057758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x35095d0>, 'url': <routes.util.URLGenerator object at 0x3aa31d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3aa3190 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3aa3350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3a9c998>, 'session': {'_accessed_time': 1266497334.451673, '_creation_time': 1266497333.529438}, 'N_': <function gettext_noop at 0x3057410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x35095d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x3509390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x35095d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3aa3290 200 OK>, '_': <function ugettext at 0x3057578>}
 
13:48:54,452 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:48:54,452 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:48:58,981 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:48:58,992 DEBUG [routes.middleware] Matched GET /add/dsa
 
13:48:58,992 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:48:58,992 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dsa'}
 
13:48:58,992 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:48:58,993 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:48:58,993 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:48:58,993 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:48:58,993 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:48:58,993 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3aa8230>, 'environ': {'routes.route': <routes.route.Route object at 0x3509550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dsa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3509790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dsa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3aa3bd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3509810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3aa3b10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3aa3a50>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dsa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3509850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3aa3bd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3509850>, 'wsgi.input': <socket._fileobject object at 0x3493bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497338.993953, '_creation_time': 1266497333.529438}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3aa3a50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x35fc510>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f1940f411c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2854550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:48:59,890 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:48:59,892 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:48:59,893 DEBUG [routes.middleware] Matched GET /error/document
 
13:48:59,893 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:48:59,893 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:48:59,893 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:48:59,894 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:48:59,894 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:48:59,894 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:48:59,894 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:48:59,894 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:48:59,894 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3b66450 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x3057758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x35095d0>, 'url': <routes.util.URLGenerator object at 0x3b66110>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3b66390 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3b66450 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3ab53b0>, 'session': {'_accessed_time': 1266497339.8950429, '_creation_time': 1266497333.529438}, 'N_': <function gettext_noop at 0x3057410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x35095d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x3509390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x35095d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3b66250 200 OK>, '_': <function ugettext at 0x3057578>}
 
13:48:59,895 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:48:59,895 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:49:04,940 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:49:04,943 DEBUG [routes.middleware] Matched GET /
 
13:49:04,943 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:49:04,944 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:49:04,945 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:49:04,946 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:49:04,946 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:49:04,947 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:49:04,947 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:49:04,948 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3aa87d0>, 'environ': {'routes.route': <routes.route.Route object at 0x3509550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3509790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3b66b90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3509810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3b66ad0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3b66650>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3509850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3b66b90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3509850>, 'wsgi.input': <socket._fileobject object at 0x3493ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497344.9486971, '_creation_time': 1266497333.529438}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3b66650>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x351ef10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f1940f411c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2854550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:49:05,832 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:49:05,858 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:49:05,939 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:49:05,943 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:49:05,944 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:49:05,944 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:49:05,944 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:49:05,945 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:49:05,945 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:49:05,945 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:49:05,945 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:49:05,945 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3aa8cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x3509550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3509790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3b66290>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3b66550>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3509810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3b66250>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3509850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3b66290>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3509850>, 'wsgi.input': <socket._fileobject object at 0x3aa2850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497345.9458771, '_creation_time': 1266497333.529438}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3b66250>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3b664d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f1940f411c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2854550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:49:06,826 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:49:06,826 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:49:08,932 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:49:08,947 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:49:08,947 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:49:08,948 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:49:08,949 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:49:08,951 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:49:08,951 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:49:08,952 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:49:08,952 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:49:08,952 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3aa8f50>, 'environ': {'routes.route': <routes.route.Route object at 0x3509550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3509790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3ac33d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3509810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3ac3150>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3ac3990>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3509850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3ac33d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3509850>, 'wsgi.input': <socket._fileobject object at 0x3aa25d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497348.9537361, '_creation_time': 1266497333.529438}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3ac3990>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3b66150>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f1940f411c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2854550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:49:09,831 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:49:09,831 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:49:23,802 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:49:23,802 DEBUG [pylons.configuration] Pushing process configuration
 
13:49:23,805 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:49:23,805 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:49:23,809 DEBUG [pylons.templating] Initialized Buffet object
 
13:49:23,809 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:49:23,809 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:49:23,811 DEBUG [paste.httpserver.ThreadPool] Started new worker 140021459540240: Initial worker pool
 
13:49:23,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 140021451147536: Initial worker pool
 
13:49:23,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 140021442754832: Initial worker pool
 
13:49:23,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 140021434362128: Initial worker pool
 
13:49:23,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 140021425969424: Initial worker pool
 
13:49:23,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 140021417576720: Initial worker pool
 
13:49:23,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 140021409184016: Initial worker pool
 
13:49:23,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 140021400791312: Initial worker pool
 
13:49:23,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 140021392398608: Initial worker pool
 
13:49:23,814 DEBUG [paste.httpserver.ThreadPool] Started new worker 140021384005904: Initial worker pool
 
13:49:26,529 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:49:26,532 DEBUG [routes.middleware] Matched GET /add/
 
13:49:26,532 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:49:26,532 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/'}
 
13:49:26,532 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:49:26,533 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:49:26,587 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:49:26,587 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:49:26,587 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:49:26,587 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:49:26,587 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x21b7d70>, 'environ': {'routes.route': <routes.route.Route object at 0x20c6510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x20c6750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x21b8890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x20c67d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x21b8550>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x21b84d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x20c6810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x21b8890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x20c6810>, 'wsgi.input': <socket._fileobject object at 0x2050a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497366.588032, '_creation_time': 1266497366.588032}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x21b84d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x20dcfd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f594db791c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1412550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:49:27,673 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:49:27,680 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:49:27,680 DEBUG [routes.middleware] Matched GET /error/document
 
13:49:27,680 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:49:27,680 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:49:27,681 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:49:27,681 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:49:27,682 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:49:27,682 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:49:27,682 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:49:27,682 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:49:27,682 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:49:27,682 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x26632d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1c15758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x20c6590>, 'url': <routes.util.URLGenerator object at 0x2663150>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2663110 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x26632d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x265f878>, 'session': {'_accessed_time': 1266497367.6830471, '_creation_time': 1266497366.588032}, 'N_': <function gettext_noop at 0x1c15410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x20c6590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x20c6350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x20c6590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2663210 200 OK>, '_': <function ugettext at 0x1c15578>}
 
13:49:27,683 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:49:27,684 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:49:29,081 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:49:29,083 DEBUG [routes.middleware] Matched GET /add/dsada
 
13:49:29,083 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:49:29,083 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dsada', 'controller': u'hg'}
 
13:49:29,083 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:49:29,084 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:49:29,084 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:49:29,084 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:49:29,084 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:49:29,084 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dsada'}
 
13:49:29,084 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:49:29,084 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:49:56,336 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:49:56,336 DEBUG [pylons.configuration] Pushing process configuration
 
13:49:56,340 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:49:56,340 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:49:56,343 DEBUG [pylons.templating] Initialized Buffet object
 
13:49:56,344 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:49:56,344 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:49:56,346 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336706881808: Initial worker pool
 
13:49:56,346 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336698489104: Initial worker pool
 
13:49:56,346 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336690096400: Initial worker pool
 
13:49:56,347 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336681703696: Initial worker pool
 
13:49:56,347 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336673310992: Initial worker pool
 
13:49:56,347 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336664918288: Initial worker pool
 
13:49:56,347 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336656525584: Initial worker pool
 
13:49:56,348 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336648132880: Initial worker pool
 
13:49:56,348 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336639740176: Initial worker pool
 
13:49:56,348 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336631347472: Initial worker pool
 
13:49:57,528 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:49:57,531 DEBUG [routes.middleware] Matched GET /add/dsada
 
13:49:57,531 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:49:57,531 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dsada', 'controller': u'hg'}
 
13:49:57,532 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:49:57,533 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:49:57,584 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:49:57,585 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:49:57,585 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:49:57,585 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:49:57,585 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dsada'}
 
13:49:57,585 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:49:57,585 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:50:04,735 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:50:04,735 DEBUG [pylons.configuration] Pushing process configuration
 
13:50:04,738 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:50:04,739 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:50:04,745 DEBUG [pylons.templating] Initialized Buffet object
 
13:50:04,745 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:50:04,745 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:50:04,748 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662978394384: Initial worker pool
 
13:50:04,748 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662970001680: Initial worker pool
 
13:50:04,748 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662961608976: Initial worker pool
 
13:50:04,749 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662953216272: Initial worker pool
 
13:50:04,749 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662944823568: Initial worker pool
 
13:50:04,749 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662936430864: Initial worker pool
 
13:50:04,750 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662928038160: Initial worker pool
 
13:50:04,750 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662919645456: Initial worker pool
 
13:50:04,750 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662911252752: Initial worker pool
 
13:50:04,750 DEBUG [paste.httpserver.ThreadPool] Started new worker 139662902860048: Initial worker pool
 
13:50:04,848 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:50:04,854 DEBUG [routes.middleware] Matched GET /add/dsada
 
13:50:04,854 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:50:04,854 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'dsada', 'controller': u'hg'}
 
13:50:04,854 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:04,855 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:50:04,908 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:50:04,908 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:04,908 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:04,910 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:50:04,910 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'dsada'}
 
13:50:04,910 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:50:04,910 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:50:12,533 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:50:12,535 DEBUG [routes.middleware] Matched GET /add/2
 
13:50:12,535 DEBUG [routes.middleware] Route path: '/add/{new_repo}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:50:12,535 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'2', 'controller': u'hg'}
 
13:50:12,535 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:12,536 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:50:12,536 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:12,536 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:12,536 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:50:12,536 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'2'}
 
13:50:12,536 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:50:12,536 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:50:35,766 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:50:35,766 DEBUG [pylons.configuration] Pushing process configuration
 
13:50:35,769 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:50:35,770 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:50:35,773 DEBUG [pylons.templating] Initialized Buffet object
 
13:50:35,773 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:50:35,773 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:50:35,775 DEBUG [paste.httpserver.ThreadPool] Started new worker 139972440693008: Initial worker pool
 
13:50:35,776 DEBUG [paste.httpserver.ThreadPool] Started new worker 139972432300304: Initial worker pool
 
13:50:35,776 DEBUG [paste.httpserver.ThreadPool] Started new worker 139972423907600: Initial worker pool
 
13:50:35,776 DEBUG [paste.httpserver.ThreadPool] Started new worker 139972415514896: Initial worker pool
 
13:50:35,777 DEBUG [paste.httpserver.ThreadPool] Started new worker 139972407122192: Initial worker pool
 
13:50:35,777 DEBUG [paste.httpserver.ThreadPool] Started new worker 139972398729488: Initial worker pool
 
13:50:35,778 DEBUG [paste.httpserver.ThreadPool] Started new worker 139972365158672: Initial worker pool
 
13:50:35,777 DEBUG [paste.httpserver.ThreadPool] Started new worker 139972381944080: Initial worker pool
 
13:50:35,778 DEBUG [paste.httpserver.ThreadPool] Started new worker 139972373551376: Initial worker pool
 
13:50:35,777 DEBUG [paste.httpserver.ThreadPool] Started new worker 139972390336784: Initial worker pool
 
13:50:36,965 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:50:36,968 DEBUG [routes.middleware] Matched GET /add/2
 
13:50:36,969 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:50:36,969 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/2'}
 
13:50:36,969 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:36,970 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:50:37,026 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:50:37,026 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:37,026 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:37,026 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:50:37,026 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3888d70>, 'environ': {'routes.route': <routes.route.Route object at 0x3795510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/2'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3795750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/2', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x38898d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x37957d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3889590>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3889510>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/2'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x38898d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'wsgi.input': <socket._fileobject object at 0x371fa50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497437.0271311, '_creation_time': 1266497437.0271311}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x3889510>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37abfd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f4de3f751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2adf550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:50:37,949 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:50:37,956 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:50:37,957 DEBUG [routes.middleware] Matched GET /error/document
 
13:50:37,957 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:50:37,957 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:50:37,957 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:37,957 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:50:37,958 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:50:37,958 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:37,958 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:37,958 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:50:37,958 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:50:37,959 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3d34350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x32e2758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x3795590>, 'url': <routes.util.URLGenerator object at 0x3d341d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3d34190 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3d34350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3d2c908>, 'session': {'_accessed_time': 1266497437.9593821, '_creation_time': 1266497437.0271311}, 'N_': <function gettext_noop at 0x32e2410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x3795590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x3795350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x3795590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3d34290 200 OK>, '_': <function ugettext at 0x32e2578>}
 
13:50:37,960 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:50:37,960 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:50:40,762 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:50:40,763 DEBUG [routes.middleware] Matched GET /add/dada
 
13:50:40,763 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:50:40,763 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dada'}
 
13:50:40,764 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:40,764 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:50:40,764 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:40,764 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:40,764 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:50:40,765 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d361b8>, 'environ': {'routes.route': <routes.route.Route object at 0x3795510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dada'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3795750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dada', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d34c10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x37957d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d34b50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d34a50>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dada'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d34c10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'wsgi.input': <socket._fileobject object at 0x371fbd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497440.7652941, '_creation_time': 1266497437.0271311}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d34a50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x38894d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f4de3f751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2adf550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:50:41,704 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:50:41,706 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:50:41,706 DEBUG [routes.middleware] Matched GET /error/document
 
13:50:41,706 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:50:41,706 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:50:41,706 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:41,707 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:50:41,707 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:41,707 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:41,707 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:50:41,707 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:50:41,708 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3de1490 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x32e2758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x3795590>, 'url': <routes.util.URLGenerator object at 0x3de18d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3de13d0 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3de1490 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3d3a2d8>, 'session': {'_accessed_time': 1266497441.7082989, '_creation_time': 1266497437.0271311}, 'N_': <function gettext_noop at 0x32e2410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x3795590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x3795350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x3795590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3de1290 200 OK>, '_': <function ugettext at 0x32e2578>}
 
13:50:41,708 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:50:41,709 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:50:46,548 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:50:46,551 DEBUG [routes.middleware] Matched GET /add/dsdsav
 
13:50:46,551 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:50:46,552 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dsdsav'}
 
13:50:46,553 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:46,555 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:50:46,555 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:46,556 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:46,556 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:50:46,556 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d36758>, 'environ': {'routes.route': <routes.route.Route object at 0x3795510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dsdsav'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3795750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dsdsav', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3de1c50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x37957d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3de1b90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3de1a10>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dsdsav'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3de1c50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'wsgi.input': <socket._fileobject object at 0x371fad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497446.557689, '_creation_time': 1266497437.0271311}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3de1a10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d34a10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f4de3f751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2adf550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:50:47,528 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:50:47,530 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:50:47,531 DEBUG [routes.middleware] Matched GET /error/document
 
13:50:47,531 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:50:47,531 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:50:47,531 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:47,532 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:50:47,532 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:47,532 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:47,532 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:50:47,532 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:50:47,532 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3d22290 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x32e2758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x3795590>, 'url': <routes.util.URLGenerator object at 0x3d22d50>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3d22c90 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3d22290 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3d3a2d8>, 'session': {'_accessed_time': 1266497447.5329051, '_creation_time': 1266497437.0271311}, 'N_': <function gettext_noop at 0x32e2410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x3795590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x3795350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x3795590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3d22990 200 OK>, '_': <function ugettext at 0x32e2578>}
 
13:50:47,533 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:50:47,533 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:50:52,568 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:50:52,570 DEBUG [routes.middleware] Matched GET /
 
13:50:52,571 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:50:52,571 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:50:52,572 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:52,574 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:50:52,574 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:52,574 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:52,575 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:50:52,575 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d36e60>, 'environ': {'routes.route': <routes.route.Route object at 0x3795510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3795750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3de1590>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x37957d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3de1f90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d22810>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3de1590>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'wsgi.input': <socket._fileobject object at 0x3d308d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497452.5762999, '_creation_time': 1266497437.0271311}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d22810>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d22910>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f4de3f751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2adf550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:50:53,501 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:50:53,525 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:50:53,571 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:50:53,622 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:50:53,622 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:50:53,622 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:50:53,623 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:53,623 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:50:53,623 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:53,623 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:53,623 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:50:53,624 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d43050>, 'environ': {'routes.route': <routes.route.Route object at 0x3795510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3795750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d33ed0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d33710>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37957d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3de1d10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d33ed0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'wsgi.input': <socket._fileobject object at 0x3d30950 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497453.624253, '_creation_time': 1266497437.0271311}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3de1d10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d339d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f4de3f751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2adf550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:50:54,869 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:50:54,870 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:50:56,857 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:50:56,860 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:50:56,860 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:50:56,861 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:50:56,862 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:50:56,863 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:50:56,864 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:50:56,864 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:50:56,865 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:50:56,865 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d435f0>, 'environ': {'routes.route': <routes.route.Route object at 0x3795510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3795750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d4fc50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x37957d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d4f610>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d4fad0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d4fc50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3795810>, 'wsgi.input': <socket._fileobject object at 0x3d30750 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497456.8660281, '_creation_time': 1266497437.0271311}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d4fad0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d33210>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f4de3f751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2adf550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:50:57,780 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:50:57,781 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:51:01,719 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:51:01,719 DEBUG [pylons.configuration] Pushing process configuration
 
13:51:01,723 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:51:01,723 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:51:01,726 DEBUG [pylons.templating] Initialized Buffet object
 
13:51:01,726 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:51:01,727 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:51:01,729 DEBUG [paste.httpserver.ThreadPool] Started new worker 140522841450768: Initial worker pool
 
13:51:01,729 DEBUG [paste.httpserver.ThreadPool] Started new worker 140522833058064: Initial worker pool
 
13:51:01,729 DEBUG [paste.httpserver.ThreadPool] Started new worker 140522824665360: Initial worker pool
 
13:51:01,729 DEBUG [paste.httpserver.ThreadPool] Started new worker 140522816272656: Initial worker pool
 
13:51:01,730 DEBUG [paste.httpserver.ThreadPool] Started new worker 140522739988752: Initial worker pool
 
13:51:01,730 DEBUG [paste.httpserver.ThreadPool] Started new worker 140522731596048: Initial worker pool
 
13:51:01,731 DEBUG [paste.httpserver.ThreadPool] Started new worker 140522723203344: Initial worker pool
 
13:51:01,731 DEBUG [paste.httpserver.ThreadPool] Started new worker 140522714810640: Initial worker pool
 
13:51:01,732 DEBUG [paste.httpserver.ThreadPool] Started new worker 140522706417936: Initial worker pool
 
13:51:01,732 DEBUG [paste.httpserver.ThreadPool] Started new worker 140522698025232: Initial worker pool
 
13:51:07,078 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:51:07,081 DEBUG [routes.middleware] Matched GET /add/dsa
 
13:51:07,081 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:07,081 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dsa'}
 
13:51:07,081 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:07,082 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:51:07,139 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:51:07,139 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:07,140 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:07,140 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:51:07,140 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2471d70>, 'environ': {'routes.route': <routes.route.Route object at 0x2386510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dsa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2386750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dsa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2472890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x23867d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2472550>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x24724d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dsa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2386810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2472890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2386810>, 'wsgi.input': <socket._fileobject object at 0x2310a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497467.1406291, '_creation_time': 1266497467.1406291}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x24724d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x239cfd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fce0a6861c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x16d1550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:51:08,107 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:51:08,115 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:51:08,116 DEBUG [routes.middleware] Matched GET /error/document
 
13:51:08,116 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:51:08,116 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:51:08,116 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:08,117 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:51:08,117 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:51:08,117 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:08,117 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:08,117 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:51:08,117 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:51:08,118 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2919310 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1ed4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2386590>, 'url': <routes.util.URLGenerator object at 0x2919190>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2919150 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2919310 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x29148c0>, 'session': {'_accessed_time': 1266497468.118341, '_creation_time': 1266497467.1406291}, 'N_': <function gettext_noop at 0x1ed4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2386590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2386350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2386590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2919250 200 OK>, '_': <function ugettext at 0x1ed4578>}
 
13:51:08,119 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:51:08,119 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:51:13,159 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:51:13,162 DEBUG [routes.middleware] Matched GET /
 
13:51:13,162 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:13,163 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:13,164 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:13,165 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:51:13,166 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:13,166 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:13,166 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:51:13,167 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x291e1b8>, 'environ': {'routes.route': <routes.route.Route object at 0x2386510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2386750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2919b10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x23867d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2919a50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2919910>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2386810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2919b10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2386810>, 'wsgi.input': <socket._fileobject object at 0x2310bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497473.167985, '_creation_time': 1266497467.1406291}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2919910>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x239ce90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fce0a6861c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x16d1550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:51:14,525 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:51:14,525 DEBUG [pylons.configuration] Pushing process configuration
 
13:51:14,528 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:51:14,529 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:51:14,532 DEBUG [pylons.templating] Initialized Buffet object
 
13:51:14,532 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:51:14,532 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:51:14,535 DEBUG [paste.httpserver.ThreadPool] Started new worker 140281515215120: Initial worker pool
 
13:51:14,535 DEBUG [paste.httpserver.ThreadPool] Started new worker 140281506822416: Initial worker pool
 
13:51:14,535 DEBUG [paste.httpserver.ThreadPool] Started new worker 140281498429712: Initial worker pool
 
13:51:14,535 DEBUG [paste.httpserver.ThreadPool] Started new worker 140281490037008: Initial worker pool
 
13:51:14,536 DEBUG [paste.httpserver.ThreadPool] Started new worker 140281481644304: Initial worker pool
 
13:51:14,536 DEBUG [paste.httpserver.ThreadPool] Started new worker 140281473251600: Initial worker pool
 
13:51:14,536 DEBUG [paste.httpserver.ThreadPool] Started new worker 140281464858896: Initial worker pool
 
13:51:14,536 DEBUG [paste.httpserver.ThreadPool] Started new worker 140281456466192: Initial worker pool
 
13:51:14,537 DEBUG [paste.httpserver.ThreadPool] Started new worker 140281448073488: Initial worker pool
 
13:51:14,537 DEBUG [paste.httpserver.ThreadPool] Started new worker 140281439680784: Initial worker pool
 
13:51:17,911 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:51:17,911 DEBUG [pylons.configuration] Pushing process configuration
 
13:51:17,914 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:51:17,915 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:51:17,918 DEBUG [pylons.templating] Initialized Buffet object
 
13:51:17,918 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:51:17,918 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:51:17,920 DEBUG [paste.httpserver.ThreadPool] Started new worker 140688755706128: Initial worker pool
 
13:51:17,921 DEBUG [paste.httpserver.ThreadPool] Started new worker 140688747313424: Initial worker pool
 
13:51:17,921 DEBUG [paste.httpserver.ThreadPool] Started new worker 140688738920720: Initial worker pool
 
13:51:17,921 DEBUG [paste.httpserver.ThreadPool] Started new worker 140688730528016: Initial worker pool
 
13:51:17,922 DEBUG [paste.httpserver.ThreadPool] Started new worker 140688722135312: Initial worker pool
 
13:51:17,922 DEBUG [paste.httpserver.ThreadPool] Started new worker 140688713742608: Initial worker pool
 
13:51:17,922 DEBUG [paste.httpserver.ThreadPool] Started new worker 140688705349904: Initial worker pool
 
13:51:17,922 DEBUG [paste.httpserver.ThreadPool] Started new worker 140688696957200: Initial worker pool
 
13:51:17,923 DEBUG [paste.httpserver.ThreadPool] Started new worker 140688688564496: Initial worker pool
 
13:51:17,923 DEBUG [paste.httpserver.ThreadPool] Started new worker 140688680171792: Initial worker pool
 
13:51:19,112 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:51:19,120 DEBUG [routes.middleware] Matched GET /
 
13:51:19,120 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:19,121 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:19,121 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:19,122 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:51:19,186 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:51:19,186 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:19,186 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:19,186 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:51:19,186 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1fabd70>, 'environ': {'routes.route': <routes.route.Route object at 0x1eb9510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eb9750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1fac850>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eb97d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1fac510>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1fac3d0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1fac850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'wsgi.input': <socket._fileobject object at 0x1e43a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497479.1870911, '_creation_time': 1266497479.1870911}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x1fac3d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1ecff50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff4abab01c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x12074d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:51:20,090 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:51:20,120 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:51:20,195 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:51:20,200 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:51:20,200 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:20,200 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:51:20,201 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:20,201 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:51:20,201 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:20,201 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:20,201 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:51:20,201 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2453c08>, 'environ': {'routes.route': <routes.route.Route object at 0x1eb9510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eb9750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2457690>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x24575d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eb97d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1fac450>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2457690>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'wsgi.input': <socket._fileobject object at 0x1e43bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497480.202143, '_creation_time': 1266497479.1870911}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x1fac450>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2457090>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff4abab01c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x12074d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:51:21,184 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:51:21,185 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:51:23,697 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:51:23,698 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:51:23,698 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:23,699 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:51:23,699 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:23,699 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:51:23,700 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:23,700 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:23,700 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:51:23,700 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2453668>, 'environ': {'routes.route': <routes.route.Route object at 0x1eb9510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eb9750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2445e90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eb97d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2445d50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x24452d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2445e90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'wsgi.input': <socket._fileobject object at 0x1e43ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497483.7006471, '_creation_time': 1266497479.1870911}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x24452d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2457290>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff4abab01c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x12074d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:51:24,643 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:51:24,644 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:51:24,749 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:51:24,751 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:51:24,751 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:24,751 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}
 
13:51:24,752 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:24,752 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:51:24,752 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:24,752 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:24,752 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:51:24,753 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2465398>, 'environ': {'routes.route': <routes.route.Route object at 0x1eb9510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eb9750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dupa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2451e50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eb97d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2451fd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2445710>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2451e50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'wsgi.input': <socket._fileobject object at 0x2405a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497484.7532279, '_creation_time': 1266497479.1870911}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2445710>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x24574d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff4abab01c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x12074d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:51:25,638 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:51:25,640 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:51:25,689 DEBUG [routes.middleware] Matched GET /error/document
 
13:51:25,690 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:51:25,690 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:51:25,691 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:25,692 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:51:25,693 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:51:25,694 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:25,694 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:25,695 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:51:25,695 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:51:25,696 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2451f90 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1a06758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x1eb9590>, 'url': <routes.util.URLGenerator object at 0x2451b90>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2451b50 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2451f90 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x245b998>, 'session': {'_accessed_time': 1266497485.696907, '_creation_time': 1266497479.1870911}, 'N_': <function gettext_noop at 0x1a06410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x1eb9590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x1eb9350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x1eb9590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2451950 200 OK>, '_': <function ugettext at 0x1a06578>}
 
13:51:25,700 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:51:25,700 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:51:30,755 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:51:30,758 DEBUG [routes.middleware] Matched GET /
 
13:51:30,759 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:30,759 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:30,760 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:30,761 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:51:30,762 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:30,762 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:30,762 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:51:30,763 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2465c08>, 'environ': {'routes.route': <routes.route.Route object at 0x1eb9510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eb9750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2457b50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eb97d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2457bd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2451c50>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2457b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'wsgi.input': <socket._fileobject object at 0x2458350 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497490.7639799, '_creation_time': 1266497479.1870911}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2451c50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2451310>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff4abab01c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x12074d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:51:31,649 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:51:31,674 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:51:31,701 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:51:31,703 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:51:31,704 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:31,704 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:51:31,704 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:31,704 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:51:31,705 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:31,705 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:31,705 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:51:31,705 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x247a848>, 'environ': {'routes.route': <routes.route.Route object at 0x1eb9510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eb9750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x246aed0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x246ac50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eb97d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2457b10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x246aed0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'wsgi.input': <socket._fileobject object at 0x2458c50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497491.7056201, '_creation_time': 1266497479.1870911}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2457b10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x246f490>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff4abab01c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x12074d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:51:32,630 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:51:32,630 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:51:34,702 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:51:34,705 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:51:34,705 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:51:34,705 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:51:34,706 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:51:34,706 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:51:34,707 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:51:34,707 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:51:34,707 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:51:34,707 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2465d70>, 'environ': {'routes.route': <routes.route.Route object at 0x1eb9510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eb9750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x246ac50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eb97d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x246ae90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1ecfed0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x246ac50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eb9810>, 'wsgi.input': <socket._fileobject object at 0x2458bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497494.7083931, '_creation_time': 1266497479.1870911}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1ecfed0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x246f750>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff4abab01c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x12074d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:51:35,604 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:51:35,604 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:53:55,690 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:53:55,690 DEBUG [pylons.configuration] Pushing process configuration
 
13:53:55,694 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:53:55,694 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:53:55,697 DEBUG [pylons.templating] Initialized Buffet object
 
13:53:55,697 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:53:55,698 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:53:55,700 DEBUG [paste.httpserver.ThreadPool] Started new worker 139871920605456: Initial worker pool
 
13:53:55,700 DEBUG [paste.httpserver.ThreadPool] Started new worker 139871912212752: Initial worker pool
 
13:53:55,700 DEBUG [paste.httpserver.ThreadPool] Started new worker 139871903820048: Initial worker pool
 
13:53:55,700 DEBUG [paste.httpserver.ThreadPool] Started new worker 139871895427344: Initial worker pool
 
13:53:55,701 DEBUG [paste.httpserver.ThreadPool] Started new worker 139871887034640: Initial worker pool
 
13:53:55,701 DEBUG [paste.httpserver.ThreadPool] Started new worker 139871878641936: Initial worker pool
 
13:53:55,702 DEBUG [paste.httpserver.ThreadPool] Started new worker 139871870249232: Initial worker pool
 
13:53:55,702 DEBUG [paste.httpserver.ThreadPool] Started new worker 139871861856528: Initial worker pool
 
13:53:55,702 DEBUG [paste.httpserver.ThreadPool] Started new worker 139871853463824: Initial worker pool
 
13:53:55,703 DEBUG [paste.httpserver.ThreadPool] Started new worker 139871845071120: Initial worker pool
 
13:54:06,212 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:54:06,212 DEBUG [pylons.configuration] Pushing process configuration
 
13:54:06,215 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:54:06,215 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:54:06,219 DEBUG [pylons.templating] Initialized Buffet object
 
13:54:06,219 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:54:06,219 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:54:06,221 DEBUG [paste.httpserver.ThreadPool] Started new worker 139798593689872: Initial worker pool
 
13:54:06,221 DEBUG [paste.httpserver.ThreadPool] Started new worker 139798585297168: Initial worker pool
 
13:54:06,222 DEBUG [paste.httpserver.ThreadPool] Started new worker 139798576904464: Initial worker pool
 
13:54:06,222 DEBUG [paste.httpserver.ThreadPool] Started new worker 139798501128464: Initial worker pool
 
13:54:06,222 DEBUG [paste.httpserver.ThreadPool] Started new worker 139798492735760: Initial worker pool
 
13:54:06,223 DEBUG [paste.httpserver.ThreadPool] Started new worker 139798484343056: Initial worker pool
 
13:54:06,223 DEBUG [paste.httpserver.ThreadPool] Started new worker 139798475950352: Initial worker pool
 
13:54:06,223 DEBUG [paste.httpserver.ThreadPool] Started new worker 139798467557648: Initial worker pool
 
13:54:06,223 DEBUG [paste.httpserver.ThreadPool] Started new worker 139798459164944: Initial worker pool
 
13:54:06,223 DEBUG [paste.httpserver.ThreadPool] Started new worker 139798450772240: Initial worker pool
 
13:54:11,625 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:54:11,626 DEBUG [pylons.configuration] Pushing process configuration
 
13:54:11,652 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:54:11,653 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:54:11,660 DEBUG [pylons.templating] Initialized Buffet object
 
13:54:11,660 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:54:11,660 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:54:11,662 DEBUG [paste.httpserver.ThreadPool] Started new worker 139902030371088: Initial worker pool
 
13:54:11,663 DEBUG [paste.httpserver.ThreadPool] Started new worker 139902021978384: Initial worker pool
 
13:54:11,663 DEBUG [paste.httpserver.ThreadPool] Started new worker 139902013585680: Initial worker pool
 
13:54:11,663 DEBUG [paste.httpserver.ThreadPool] Started new worker 139902005192976: Initial worker pool
 
13:54:11,663 DEBUG [paste.httpserver.ThreadPool] Started new worker 139901996800272: Initial worker pool
 
13:54:11,664 DEBUG [paste.httpserver.ThreadPool] Started new worker 139901988407568: Initial worker pool
 
13:54:11,664 DEBUG [paste.httpserver.ThreadPool] Started new worker 139901980014864: Initial worker pool
 
13:54:11,664 DEBUG [paste.httpserver.ThreadPool] Started new worker 139901971622160: Initial worker pool
 
13:54:11,664 DEBUG [paste.httpserver.ThreadPool] Started new worker 139901963229456: Initial worker pool
 
13:54:11,665 DEBUG [paste.httpserver.ThreadPool] Started new worker 139901954836752: Initial worker pool
 
13:54:16,896 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:54:16,896 DEBUG [pylons.configuration] Pushing process configuration
 
13:54:16,900 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:54:16,900 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:54:16,904 DEBUG [pylons.templating] Initialized Buffet object
 
13:54:16,904 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:54:16,904 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:54:16,906 DEBUG [paste.httpserver.ThreadPool] Started new worker 140241348360464: Initial worker pool
 
13:54:16,907 DEBUG [paste.httpserver.ThreadPool] Started new worker 140241339967760: Initial worker pool
 
13:54:16,907 DEBUG [paste.httpserver.ThreadPool] Started new worker 140241331575056: Initial worker pool
 
13:54:16,907 DEBUG [paste.httpserver.ThreadPool] Started new worker 140241323182352: Initial worker pool
 
13:54:16,908 DEBUG [paste.httpserver.ThreadPool] Started new worker 140241314789648: Initial worker pool
 
13:54:16,908 DEBUG [paste.httpserver.ThreadPool] Started new worker 140241306396944: Initial worker pool
 
13:54:16,908 DEBUG [paste.httpserver.ThreadPool] Started new worker 140241298004240: Initial worker pool
 
13:54:16,908 DEBUG [paste.httpserver.ThreadPool] Started new worker 140241218304272: Initial worker pool
 
13:54:16,908 DEBUG [paste.httpserver.ThreadPool] Started new worker 140241209911568: Initial worker pool
 
13:54:16,909 DEBUG [paste.httpserver.ThreadPool] Started new worker 140241201518864: Initial worker pool
 
13:54:20,041 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:54:20,044 DEBUG [routes.middleware] Matched GET /add/dupa
 
13:54:20,044 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:54:20,044 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}
 
13:54:20,045 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:54:20,046 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:54:20,100 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:54:20,100 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:54:20,100 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:54:20,100 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:54:20,101 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1bf2d70>, 'environ': {'routes.route': <routes.route.Route object at 0x1b04510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1b04750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/dupa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1bf38d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1b047d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1bf3590>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1bf34d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/dupa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1b04810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1bf38d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1b04810>, 'wsgi.input': <socket._fileobject object at 0x1a8ea50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497660.1012859, '_creation_time': 1266497660.1012859}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1bf34d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1b1afd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8c801cb1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xe544d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:54:20,994 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:54:21,001 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:54:21,002 DEBUG [routes.middleware] Matched GET /error/document
 
13:54:21,002 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:54:21,002 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:54:21,002 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:54:21,003 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:54:21,004 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:54:21,004 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:54:21,004 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:54:21,004 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:54:21,004 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:54:21,004 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x209c350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1652758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x1b04590>, 'url': <routes.util.URLGenerator object at 0x209c1d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x209c190 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x209c350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2097908>, 'session': {'_accessed_time': 1266497661.0051341, '_creation_time': 1266497660.1012859}, 'N_': <function gettext_noop at 0x1652410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x1b04590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x1b04350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x1b04590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x209c290 200 OK>, '_': <function ugettext at 0x1652578>}
 
13:54:21,006 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:54:21,006 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:54:26,053 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:54:26,054 DEBUG [routes.middleware] Matched GET /
 
13:54:26,054 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:54:26,055 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:54:26,055 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:54:26,055 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:54:26,056 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:54:26,056 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:54:26,056 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:54:26,056 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x20a11b8>, 'environ': {'routes.route': <routes.route.Route object at 0x1b04510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1b04750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x209cb50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1b047d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x209ca90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x209c950>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1b04810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x209cb50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1b04810>, 'wsgi.input': <socket._fileobject object at 0x1a8ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497666.056567, '_creation_time': 1266497660.1012859}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x209c950>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1b1ae90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8c801cb1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xe544d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:54:26,927 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:54:26,952 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:54:27,030 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:54:27,031 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:54:27,031 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:54:27,032 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:54:27,032 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:54:27,033 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:54:27,033 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:54:27,033 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:54:27,033 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:54:27,033 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x20a16e0>, 'environ': {'routes.route': <routes.route.Route object at 0x1b04510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1b04750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x214cb10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x214c5d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1b047d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x209ca10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1b04810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x214cb10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1b04810>, 'wsgi.input': <socket._fileobject object at 0x1a8ead0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497667.033778, '_creation_time': 1266497660.1012859}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x209ca10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x214c110>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8c801cb1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xe544d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:54:27,930 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:54:27,930 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:54:30,182 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:54:30,183 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:54:30,183 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:54:30,183 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:54:30,184 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:54:30,184 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:54:30,184 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:54:30,184 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:54:30,184 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:54:30,185 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x20a1c80>, 'environ': {'routes.route': <routes.route.Route object at 0x1b04510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1b04750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x20ad910>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1b047d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x20ad9d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x20add50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1b04810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x20ad910>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1b04810>, 'wsgi.input': <socket._fileobject object at 0x209b6d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497670.1856511, '_creation_time': 1266497660.1012859}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x20add50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x214c1d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8c801cb1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xe544d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:54:31,153 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:54:31,153 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:54:54,182 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:54:54,182 DEBUG [pylons.configuration] Pushing process configuration
 
13:54:54,185 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:54:54,185 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:54:54,190 DEBUG [pylons.templating] Initialized Buffet object
 
13:54:54,190 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:54:54,190 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:54:54,192 DEBUG [paste.httpserver.ThreadPool] Started new worker 140372318767376: Initial worker pool
 
13:54:54,192 DEBUG [paste.httpserver.ThreadPool] Started new worker 140372310374672: Initial worker pool
 
13:54:54,193 DEBUG [paste.httpserver.ThreadPool] Started new worker 140372301981968: Initial worker pool
 
13:54:54,193 DEBUG [paste.httpserver.ThreadPool] Started new worker 140372293589264: Initial worker pool
 
13:54:54,193 DEBUG [paste.httpserver.ThreadPool] Started new worker 140372285196560: Initial worker pool
 
13:54:54,193 DEBUG [paste.httpserver.ThreadPool] Started new worker 140372276803856: Initial worker pool
 
13:54:54,194 DEBUG [paste.httpserver.ThreadPool] Started new worker 140372268411152: Initial worker pool
 
13:54:54,194 DEBUG [paste.httpserver.ThreadPool] Started new worker 140372260018448: Initial worker pool
 
13:54:54,194 DEBUG [paste.httpserver.ThreadPool] Started new worker 140372251625744: Initial worker pool
 
13:54:54,194 DEBUG [paste.httpserver.ThreadPool] Started new worker 140372243233040: Initial worker pool
 
13:54:56,343 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:54:56,345 DEBUG [routes.middleware] Matched GET /add/a
 
13:54:56,345 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z]}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:54:56,345 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'a', 'controller': u'hg'}
 
13:54:56,345 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:54:56,346 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:54:56,419 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:54:56,419 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:54:56,419 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:54:56,419 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:54:56,419 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'a'}
 
13:54:56,419 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:54:56,419 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:54:58,982 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:54:58,983 DEBUG [routes.middleware] Matched GET /add/aa
 
13:54:58,983 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:54:58,984 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/aa'}
 
13:54:58,984 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:54:58,985 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:54:58,985 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:54:58,985 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:54:58,985 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:54:58,986 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x315c7d0>, 'environ': {'routes.route': <routes.route.Route object at 0x2bd4550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/aa'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2bd4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/aa', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x313fbd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2bd4810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x313fb10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2cc64d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/aa'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2bd4850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x313fbd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2bd4850>, 'wsgi.input': <socket._fileobject object at 0x2b5ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497698.9866171, '_creation_time': 1266497698.9866171}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2cc64d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2cc6190>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7faafe8e81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1f224d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:54:59,915 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:54:59,922 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:54:59,922 DEBUG [routes.middleware] Matched GET /error/document
 
13:54:59,922 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:54:59,923 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:54:59,923 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:54:59,923 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:54:59,923 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:54:59,924 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:54:59,924 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:54:59,924 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:54:59,924 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:54:59,924 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3168750 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x2722758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2bd45d0>, 'url': <routes.util.URLGenerator object at 0x31685d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3168590 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3168750 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3163cf8>, 'session': {'_accessed_time': 1266497699.9248991, '_creation_time': 1266497698.9866171}, 'N_': <function gettext_noop at 0x2722410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2bd45d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2bd4390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2bd45d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3168690 200 OK>, '_': <function ugettext at 0x2722578>}
 
13:54:59,925 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:54:59,926 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:55:04,597 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:55:04,597 DEBUG [pylons.configuration] Pushing process configuration
 
13:55:04,601 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:55:04,601 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:55:04,604 DEBUG [pylons.templating] Initialized Buffet object
 
13:55:04,605 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:55:04,605 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:55:04,607 DEBUG [paste.httpserver.ThreadPool] Started new worker 140502415571216: Initial worker pool
 
13:55:04,607 DEBUG [paste.httpserver.ThreadPool] Started new worker 140502407178512: Initial worker pool
 
13:55:04,607 DEBUG [paste.httpserver.ThreadPool] Started new worker 140502398785808: Initial worker pool
 
13:55:04,607 DEBUG [paste.httpserver.ThreadPool] Started new worker 140502390393104: Initial worker pool
 
13:55:04,608 DEBUG [paste.httpserver.ThreadPool] Started new worker 140502382000400: Initial worker pool
 
13:55:04,608 DEBUG [paste.httpserver.ThreadPool] Started new worker 140502373607696: Initial worker pool
 
13:55:04,609 DEBUG [paste.httpserver.ThreadPool] Started new worker 140502365214992: Initial worker pool
 
13:55:04,609 DEBUG [paste.httpserver.ThreadPool] Started new worker 140502356822288: Initial worker pool
 
13:55:04,609 DEBUG [paste.httpserver.ThreadPool] Started new worker 140502348429584: Initial worker pool
 
13:55:04,610 DEBUG [paste.httpserver.ThreadPool] Started new worker 140502340036880: Initial worker pool
 
13:55:04,953 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:55:04,957 DEBUG [routes.middleware] Matched GET /
 
13:55:04,957 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:55:04,957 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:55:04,958 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:55:04,959 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:55:05,022 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:55:05,022 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:55:05,022 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:55:05,022 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:55:05,022 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x19e4b90>, 'environ': {'routes.route': <routes.route.Route object at 0x19f1550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x19f1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1a02050>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x19f1810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x19fbd90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x19fbc50>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1a02050>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'wsgi.input': <socket._fileobject object at 0x197b550 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497705.022933, '_creation_time': 1266497705.022933}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x19fbc50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x19fb850>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc948ee31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xd3b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:55:05,731 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:55:05,734 DEBUG [routes.middleware] Matched GET /add/aa
 
13:55:05,734 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:55:05,734 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'aa', 'controller': u'hg'}
 
13:55:05,734 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:55:05,735 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:55:05,735 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:55:05,735 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:55:05,736 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:55:05,736 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'aa'}
 
13:55:05,737 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:55:05,739 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:55:05,991 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:55:06,028 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:55:08,250 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:55:08,252 DEBUG [routes.middleware] Matched GET /add/aadsadasas
 
13:55:08,252 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:55:08,252 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'aadsadasas', 'controller': u'hg'}
 
13:55:08,252 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:55:08,253 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:55:08,253 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:55:08,253 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:55:08,253 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:55:08,253 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'aadsadasas'}
 
13:55:08,253 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:55:08,254 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:55:29,301 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:55:29,319 DEBUG [routes.middleware] Matched GET /add/1
 
13:55:29,320 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:55:29,320 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/1'}
 
13:55:29,320 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:55:29,320 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:55:29,321 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:55:29,321 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:55:29,321 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:55:29,321 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2022b90>, 'environ': {'routes.route': <routes.route.Route object at 0x19f1550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x19f1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1f314d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x19f1810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1f318d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1f31410>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/1'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1f314d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'wsgi.input': <socket._fileobject object at 0x197b650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497729.3216701, '_creation_time': 1266497705.022933}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1f31410>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1f31890>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc948ee31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xd3b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:55:30,627 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:55:30,629 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:55:30,629 DEBUG [routes.middleware] Matched GET /error/document
 
13:55:30,629 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:55:30,630 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:55:30,630 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:55:30,630 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:55:30,630 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:55:30,631 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:55:30,631 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:55:30,631 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:55:30,631 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:55:30,631 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x1f3cdd0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x153e758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x19f15d0>, 'url': <routes.util.URLGenerator object at 0x1f3c7d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x1f3c790 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x1f3cdd0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x1f89878>, 'session': {'_accessed_time': 1266497730.631983, '_creation_time': 1266497705.022933}, 'N_': <function gettext_noop at 0x153e410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x19f15d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x19f1390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x19f15d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x1f3c690 200 OK>, '_': <function ugettext at 0x153e578>}
 
13:55:30,632 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:55:30,633 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:55:35,669 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:55:35,672 DEBUG [routes.middleware] Matched GET /
 
13:55:35,673 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:55:35,673 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:55:35,674 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:55:35,675 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:55:35,676 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:55:35,676 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:55:35,676 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:55:35,677 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1f81758>, 'environ': {'routes.route': <routes.route.Route object at 0x19f1550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x19f1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1f82550>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x19f1810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1f82490>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1f3c750>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1f82550>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'wsgi.input': <socket._fileobject object at 0x1f216d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497735.677804, '_creation_time': 1266497705.022933}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1f3c750>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1f31990>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc948ee31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xd3b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:55:36,628 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:55:36,652 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:55:36,732 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:55:36,733 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:55:36,733 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:55:36,733 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:55:36,734 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:55:36,734 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:55:36,734 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:55:36,735 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:55:36,735 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:55:36,735 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2022cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x19f1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x19f1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1fbfa90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1fbfdd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x19f1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1fbfad0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1fbfa90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'wsgi.input': <socket._fileobject object at 0x1f21650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497736.7355299, '_creation_time': 1266497705.022933}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1fbfad0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1f3ca90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc948ee31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xd3b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:55:37,676 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:55:37,676 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:55:39,690 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:55:39,691 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:55:39,692 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:55:39,692 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:55:39,692 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:55:39,693 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:55:39,693 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:55:39,693 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:55:39,693 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:55:39,693 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1f81b90>, 'environ': {'routes.route': <routes.route.Route object at 0x19f1550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x19f1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2033c10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x19f1810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2033590>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1f82290>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2033c10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'wsgi.input': <socket._fileobject object at 0x1f21dd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497739.693676, '_creation_time': 1266497705.022933}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1f82290>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1fbfe50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc948ee31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xd3b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:55:40,625 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:55:40,625 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:55:56,877 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:55:56,878 DEBUG [routes.middleware] Matched GET /add/voip_monitor
 
13:55:56,878 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:55:56,878 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/voip_monitor'}
 
13:55:56,879 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:55:56,879 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:55:56,879 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:55:56,879 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:55:56,879 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:55:56,880 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1f9c230>, 'environ': {'routes.route': <routes.route.Route object at 0x19f1550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/voip_monitor'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x19f1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/voip_monitor', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x214e7d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x19f1810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x214e710>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2033e10>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/voip_monitor'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x214e7d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'wsgi.input': <socket._fileobject object at 0x197b650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497756.880264, '_creation_time': 1266497705.022933}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2033e10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1fbf890>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc948ee31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xd3b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:55:57,833 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:55:57,835 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:55:57,835 DEBUG [routes.middleware] Matched GET /error/document
 
13:55:57,835 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:55:57,836 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:55:57,836 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:55:57,836 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:55:57,836 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:55:57,836 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:55:57,836 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:55:57,837 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:55:57,837 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x1f31850 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x153e758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x19f15d0>, 'url': <routes.util.URLGenerator object at 0x1f31790>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x1f31c50 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x1f31850 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x1fa2ea8>, 'session': {'_accessed_time': 1266497757.837549, '_creation_time': 1266497705.022933}, 'N_': <function gettext_noop at 0x153e410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x19f15d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x19f1390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x19f15d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x1f31510 200 OK>, '_': <function ugettext at 0x153e578>}
 
13:55:57,838 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:55:57,838 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:56:02,878 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:56:02,881 DEBUG [routes.middleware] Matched GET /
 
13:56:02,882 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:56:02,882 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:56:02,883 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:56:02,884 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:56:02,884 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:56:02,885 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:56:02,885 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:56:02,886 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1f3aed8>, 'environ': {'routes.route': <routes.route.Route object at 0x19f1550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x19f1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2033c50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x19f1810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2033750>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1f31a50>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2033c50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'wsgi.input': <socket._fileobject object at 0x1f21650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497762.8867469, '_creation_time': 1266497705.022933}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1f31a50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1f31d10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc948ee31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xd3b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:56:03,860 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:56:03,893 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:56:03,940 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:56:03,967 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:56:03,968 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:56:03,968 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:56:03,968 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:56:03,969 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:56:03,969 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:56:03,969 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:56:03,969 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:56:03,969 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1f9cb90>, 'environ': {'routes.route': <routes.route.Route object at 0x19f1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x19f1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1fab0d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1fbfe90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x19f1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x20331d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1fab0d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'wsgi.input': <socket._fileobject object at 0x1f3fad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497763.9698761, '_creation_time': 1266497705.022933}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x20331d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1fbfa10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc948ee31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xd3b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:56:04,851 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:56:04,851 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:56:06,966 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:56:06,968 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:56:06,969 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:56:06,969 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:56:06,970 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:56:06,971 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:56:06,973 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:56:06,973 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:56:06,974 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:56:06,974 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1f9ccf8>, 'environ': {'routes.route': <routes.route.Route object at 0x19f1550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x19f1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1fbfe90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x19f1810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1fabcd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1fabad0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1fbfe90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x19f1850>, 'wsgi.input': <socket._fileobject object at 0x1f3fb50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497766.9750979, '_creation_time': 1266497705.022933}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1fabad0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1fbfed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc948ee31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xd3b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:56:07,887 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:56:07,887 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:57:10,076 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:57:10,076 DEBUG [pylons.configuration] Pushing process configuration
 
13:57:10,079 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:57:10,079 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:57:10,083 DEBUG [pylons.templating] Initialized Buffet object
 
13:57:10,084 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:57:10,084 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:57:10,086 DEBUG [paste.httpserver.ThreadPool] Started new worker 140205430417680: Initial worker pool
 
13:57:10,092 DEBUG [paste.httpserver.ThreadPool] Started new worker 140205422024976: Initial worker pool
 
13:57:10,093 DEBUG [paste.httpserver.ThreadPool] Started new worker 140205413632272: Initial worker pool
 
13:57:10,093 DEBUG [paste.httpserver.ThreadPool] Started new worker 140205405239568: Initial worker pool
 
13:57:10,094 DEBUG [paste.httpserver.ThreadPool] Started new worker 140205396846864: Initial worker pool
 
13:57:10,094 DEBUG [paste.httpserver.ThreadPool] Started new worker 140205388454160: Initial worker pool
 
13:57:10,095 DEBUG [paste.httpserver.ThreadPool] Started new worker 140205380061456: Initial worker pool
 
13:57:10,096 DEBUG [paste.httpserver.ThreadPool] Started new worker 140205371668752: Initial worker pool
 
13:57:10,097 DEBUG [paste.httpserver.ThreadPool] Started new worker 140205363276048: Initial worker pool
 
13:57:10,097 DEBUG [paste.httpserver.ThreadPool] Started new worker 140205354883344: Initial worker pool
 
13:57:48,540 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:57:48,542 DEBUG [routes.middleware] Matched GET /voip_monitor
 
13:57:48,542 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:57:48,543 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'voip_monitor'}
 
13:57:48,543 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:57:48,544 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:57:48,599 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:57:48,599 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:57:48,600 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:57:48,600 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:57:48,600 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x36b4d70>, 'environ': {'routes.route': <routes.route.Route object at 0x35c3510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'voip_monitor'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x35c3750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/voip_monitor', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x36b6890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x35c37d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x36b6550>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x36b6390>, {'action': u'view', 'controller': u'hg', 'path_info': 'voip_monitor'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x36b6890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'wsgi.input': <socket._fileobject object at 0x354da50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497868.6006711, '_creation_time': 1266497868.6006711}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x36b6390>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x35d9f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f84233c61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x29124d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:57:50,081 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:57:50,121 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:57:50,152 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:57:50,162 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:57:50,162 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:57:50,162 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:57:50,163 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:57:50,163 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:57:50,163 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:57:50,163 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:57:50,163 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:57:50,163 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e7bf50>, 'environ': {'routes.route': <routes.route.Route object at 0x35c3510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/voip_monitor', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x35c3750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e67850>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e67b50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x35c37d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x36b6410>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e67850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'wsgi.input': <socket._fileobject object at 0x354dbd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497870.1641929, '_creation_time': 1266497868.6006711}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x36b6410>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e5fa90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f84233c61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x29124d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:57:51,080 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:57:51,080 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:57:53,191 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:57:53,193 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:57:53,194 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:57:53,194 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:57:53,196 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:57:53,197 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:57:53,197 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:57:53,198 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:57:53,198 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:57:53,198 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e7b9b0>, 'environ': {'routes.route': <routes.route.Route object at 0x35c3510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x35c3750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3b51990>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x35c37d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e5fbd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e5fa50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3b51990>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'wsgi.input': <socket._fileobject object at 0x354dad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497873.199544, '_creation_time': 1266497868.6006711}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e5fa50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e67250>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f84233c61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x29124d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:57:54,114 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:57:54,115 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:57:55,653 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:57:55,654 DEBUG [routes.middleware] Matched GET /add/voip_monitor
 
13:57:55,654 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:57:55,654 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/voip_monitor'}
 
13:57:55,655 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:57:55,655 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:57:55,655 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:57:55,655 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:57:55,656 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:57:55,656 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e93668>, 'environ': {'routes.route': <routes.route.Route object at 0x35c3510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/voip_monitor'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x35c3750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/voip_monitor', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e821d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x35c37d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e82310>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e82350>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/voip_monitor'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e821d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'wsgi.input': <socket._fileobject object at 0x3cf9d50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497875.6564419, '_creation_time': 1266497868.6006711}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e82350>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e4ead0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f84233c61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x29124d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:57:56,614 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
13:57:56,616 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:57:56,617 DEBUG [routes.middleware] Matched GET /error/document
 
13:57:56,617 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
13:57:56,617 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
13:57:56,617 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:57:56,618 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
13:57:56,618 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
13:57:56,618 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:57:56,618 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:57:56,618 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
13:57:56,618 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
13:57:56,619 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3ea4150 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x3111758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x35c3590>, 'url': <routes.util.URLGenerator object at 0x3ea4650>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3ea4490 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3ea4150 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3ead758>, 'session': {'_accessed_time': 1266497876.6197219, '_creation_time': 1266497868.6006711}, 'N_': <function gettext_noop at 0x3111410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x35c3590>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x35c3350>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x35c3590>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3ea4090 200 OK>, '_': <function ugettext at 0x3111578>}
 
13:57:56,620 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
13:57:56,620 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:58:01,659 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:01,662 DEBUG [routes.middleware] Matched GET /
 
13:58:01,662 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:01,663 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:01,664 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:01,665 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:01,666 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:01,666 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:01,666 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:58:01,667 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e939b0>, 'environ': {'routes.route': <routes.route.Route object at 0x35c3510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x35c3750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e9d3d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x35c37d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e9d6d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e9d910>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e9d3d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'wsgi.input': <socket._fileobject object at 0x3e6f7d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497881.6679089, '_creation_time': 1266497868.6006711}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e9d910>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e9db10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f84233c61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x29124d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:58:02,591 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:58:02,619 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:58:02,642 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:02,644 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:58:02,645 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:02,645 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:58:02,645 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:02,646 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:02,646 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:02,646 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:02,646 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:58:02,646 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3ea66e0>, 'environ': {'routes.route': <routes.route.Route object at 0x35c3510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x35c3750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3ea4510>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3ea4bd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x35c37d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x36b6350>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3ea4510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'wsgi.input': <socket._fileobject object at 0x3e6fad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497882.6467121, '_creation_time': 1266497868.6006711}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x36b6350>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3ea47d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f84233c61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x29124d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:58:03,584 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:58:03,584 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:58:05,642 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:05,645 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:58:05,645 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:05,646 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:58:05,647 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:05,648 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:05,649 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:05,649 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:05,649 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:58:05,650 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3ea6c08>, 'environ': {'routes.route': <routes.route.Route object at 0x35c3510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x35c3750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e820d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x35c37d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e82190>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e82bd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e820d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x35c3810>, 'wsgi.input': <socket._fileobject object at 0x3e6f750 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497885.6508739, '_creation_time': 1266497868.6006711}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e82bd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3ea42d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f84233c61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x29124d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:58:06,517 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:58:06,517 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:58:12,197 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:58:12,197 DEBUG [pylons.configuration] Pushing process configuration
 
13:58:12,201 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:58:12,201 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:58:12,204 DEBUG [pylons.templating] Initialized Buffet object
 
13:58:12,205 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:58:12,205 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:58:12,207 DEBUG [paste.httpserver.ThreadPool] Started new worker 140577272711440: Initial worker pool
 
13:58:12,207 DEBUG [paste.httpserver.ThreadPool] Started new worker 140577264318736: Initial worker pool
 
13:58:12,207 DEBUG [paste.httpserver.ThreadPool] Started new worker 140577255926032: Initial worker pool
 
13:58:12,208 DEBUG [paste.httpserver.ThreadPool] Started new worker 140577247533328: Initial worker pool
 
13:58:12,208 DEBUG [paste.httpserver.ThreadPool] Started new worker 140577239140624: Initial worker pool
 
13:58:12,208 DEBUG [paste.httpserver.ThreadPool] Started new worker 140577230747920: Initial worker pool
 
13:58:12,208 DEBUG [paste.httpserver.ThreadPool] Started new worker 140577222355216: Initial worker pool
 
13:58:12,209 DEBUG [paste.httpserver.ThreadPool] Started new worker 140577213962512: Initial worker pool
 
13:58:12,209 DEBUG [paste.httpserver.ThreadPool] Started new worker 140577205569808: Initial worker pool
 
13:58:12,209 DEBUG [paste.httpserver.ThreadPool] Started new worker 140577197177104: Initial worker pool
 
13:58:12,970 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:12,976 DEBUG [routes.middleware] Matched GET /
 
13:58:12,976 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:12,976 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:12,977 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:12,978 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:13,029 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
13:58:13,029 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:13,029 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:13,029 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:58:13,030 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1fbbd70>, 'environ': {'routes.route': <routes.route.Route object at 0x1eca510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eca750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1fbc850>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eca7d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1fbc510>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1fbc3d0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1fbc850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'wsgi.input': <socket._fileobject object at 0x1e54a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497893.030282, '_creation_time': 1266497893.030282}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x1fbc3d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1ee0f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fdab6c381c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x122ec10>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:58:13,979 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:58:14,027 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:58:14,051 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:14,099 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:58:14,100 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:14,100 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:58:14,100 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:14,101 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:14,101 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:14,101 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:14,101 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:58:14,101 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1fb8cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x1eca510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eca750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2468750>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2468690>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eca7d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1215990>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2468750>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'wsgi.input': <socket._fileobject object at 0x24199d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497894.1019311, '_creation_time': 1266497893.030282}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x1215990>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x24681d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fdab6c381c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x122ec10>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:58:15,062 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:58:15,063 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:58:17,176 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:17,177 DEBUG [routes.middleware] Matched GET /voip_monitor
 
13:58:17,177 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:17,177 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'voip_monitor'}
 
13:58:17,178 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:17,178 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:17,178 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:17,178 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:17,178 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:58:17,179 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2464668>, 'environ': {'routes.route': <routes.route.Route object at 0x1eca510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'voip_monitor'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eca750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/voip_monitor', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2456a90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eca7d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2456810>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1ee0ed0>, {'action': u'view', 'controller': u'hg', 'path_info': 'voip_monitor'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2456a90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'wsgi.input': <socket._fileobject object at 0x1e54bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497897.1793151, '_creation_time': 1266497893.030282}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1ee0ed0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x24680d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fdab6c381c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x122ec10>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:58:17,186 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:17,187 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:58:17,188 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:17,188 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:58:17,188 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:17,189 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:17,189 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:17,189 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:17,189 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:58:17,189 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x247c320>, 'environ': {'routes.route': <routes.route.Route object at 0x1eca510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eca750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x25b7b50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eca7d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x25b7a90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x25b7890>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x25b7b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'wsgi.input': <socket._fileobject object at 0x24695d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497897.189914, '_creation_time': 1266497893.030282}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x25b7890>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25b7550>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fdab6c381c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x122ec10>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:58:18,965 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:58:18,974 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:58:19,012 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:19,021 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:58:19,021 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:19,022 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:58:19,022 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:19,022 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:19,022 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:19,023 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:19,023 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:58:19,023 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x28dad70>, 'environ': {'routes.route': <routes.route.Route object at 0x1eca510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/voip_monitor', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eca750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2468810>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2468110>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eca7d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x25b7950>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2468810>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'wsgi.input': <socket._fileobject object at 0x2469550 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497899.0235479, '_creation_time': 1266497893.030282}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x25b7950>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25bdfd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fdab6c381c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x122ec10>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:58:19,954 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:58:19,955 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:58:20,359 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:58:20,359 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:58:22,269 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:22,273 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
13:58:22,273 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:58:22,273 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
13:58:22,274 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:22,274 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:22,274 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:22,274 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:22,274 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:58:22,275 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x28eb488>, 'environ': {'routes.route': <routes.route.Route object at 0x1eca510>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1eca750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x28c9050>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1eca7d0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x28c9990>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x25bdf90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x28c9050>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1eca810>, 'wsgi.input': <socket._fileobject object at 0x28997d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266497902.275418, '_creation_time': 1266497893.030282}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x25bdf90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x25bd850>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fdab6c381c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x122ec10>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
13:58:22,945 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:23,119 DEBUG [routes.middleware] Matched GET /add/voip_monitor
 
13:58:23,120 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:58:23,120 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'voip_monitor', 'controller': u'hg'}
 
13:58:23,120 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:23,120 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:23,120 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:23,120 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:23,121 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:58:23,121 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'voip_monitor'}
 
13:58:23,121 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:58:23,121 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:58:23,306 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:58:23,307 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:58:26,907 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:26,908 DEBUG [routes.middleware] Matched GET /add/voip monitor
 
13:58:26,908 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:58:26,908 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'voip monitor', 'controller': u'hg'}
 
13:58:26,908 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:26,909 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:26,909 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:26,909 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:26,909 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:58:26,909 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'voip monitor'}
 
13:58:26,910 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:58:26,910 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:58:30,162 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:30,165 DEBUG [routes.middleware] Matched GET /add/voi- monitor
 
13:58:30,166 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:58:30,166 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'voi- monitor', 'controller': u'hg'}
 
13:58:30,166 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:30,167 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:30,167 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:30,168 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:30,168 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:58:30,168 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'voi- monitor'}
 
13:58:30,168 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:58:30,169 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:58:34,938 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:58:34,939 DEBUG [routes.middleware] Matched GET /add/voi-monitor
 
13:58:34,940 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
13:58:34,940 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'voi-monitor', 'controller': u'hg'}
 
13:58:34,940 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:58:34,940 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:58:34,940 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:58:34,941 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:58:34,941 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
13:58:34,941 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'voi-monitor'}
 
13:58:34,941 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
13:58:34,941 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
13:59:56,865 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
13:59:56,865 DEBUG [pylons.configuration] Pushing process configuration
 
13:59:56,868 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
13:59:56,868 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
13:59:56,872 DEBUG [pylons.templating] Initialized Buffet object
 
13:59:56,872 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
13:59:56,872 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
13:59:56,874 DEBUG [paste.httpserver.ThreadPool] Started new worker 140365612542224: Initial worker pool
 
13:59:56,875 DEBUG [paste.httpserver.ThreadPool] Started new worker 140365604149520: Initial worker pool
 
13:59:56,875 DEBUG [paste.httpserver.ThreadPool] Started new worker 140365595756816: Initial worker pool
 
13:59:56,875 DEBUG [paste.httpserver.ThreadPool] Started new worker 140365587364112: Initial worker pool
 
13:59:56,875 DEBUG [paste.httpserver.ThreadPool] Started new worker 140365503920400: Initial worker pool
 
13:59:56,876 DEBUG [paste.httpserver.ThreadPool] Started new worker 140365495527696: Initial worker pool
 
13:59:56,876 DEBUG [paste.httpserver.ThreadPool] Started new worker 140365487134992: Initial worker pool
 
13:59:56,876 DEBUG [paste.httpserver.ThreadPool] Started new worker 140365478742288: Initial worker pool
 
13:59:56,876 DEBUG [paste.httpserver.ThreadPool] Started new worker 140365470349584: Initial worker pool
 
13:59:56,877 DEBUG [paste.httpserver.ThreadPool] Started new worker 140365461956880: Initial worker pool
 
14:00:13,300 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:00:13,303 DEBUG [routes.middleware] Matched GET /add/voi-monitor
 
14:00:13,303 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:00:13,303 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'voi-monitor', 'controller': u'hg'}
 
14:00:13,303 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:00:13,304 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:00:13,359 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:00:13,359 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:00:13,359 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:00:13,359 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:00:13,359 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'voi-monitor'}
 
14:00:13,360 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:00:13,360 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:00:54,540 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:00:54,540 DEBUG [pylons.configuration] Pushing process configuration
 
14:00:54,544 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:00:54,544 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:00:54,547 DEBUG [pylons.templating] Initialized Buffet object
 
14:00:54,548 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:00:54,548 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:00:54,550 DEBUG [paste.httpserver.ThreadPool] Started new worker 140391017863440: Initial worker pool
 
14:00:54,550 DEBUG [paste.httpserver.ThreadPool] Started new worker 140391009470736: Initial worker pool
 
14:00:54,551 DEBUG [paste.httpserver.ThreadPool] Started new worker 140391001078032: Initial worker pool
 
14:00:54,551 DEBUG [paste.httpserver.ThreadPool] Started new worker 140390992685328: Initial worker pool
 
14:00:54,551 DEBUG [paste.httpserver.ThreadPool] Started new worker 140390984292624: Initial worker pool
 
14:00:54,551 DEBUG [paste.httpserver.ThreadPool] Started new worker 140390975899920: Initial worker pool
 
14:00:54,552 DEBUG [paste.httpserver.ThreadPool] Started new worker 140390967507216: Initial worker pool
 
14:00:54,552 DEBUG [paste.httpserver.ThreadPool] Started new worker 140390959114512: Initial worker pool
 
14:00:54,552 DEBUG [paste.httpserver.ThreadPool] Started new worker 140390950721808: Initial worker pool
 
14:00:54,553 DEBUG [paste.httpserver.ThreadPool] Started new worker 140390942329104: Initial worker pool
 
14:03:20,937 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:03:20,939 DEBUG [routes.middleware] Matched GET /add/test
 
14:03:20,939 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:03:20,940 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test', 'controller': u'hg'}
 
14:03:20,940 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:03:20,941 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:03:21,007 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:03:21,007 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:03:21,007 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:03:21,007 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:03:21,007 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test'}
 
14:03:21,007 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:03:21,007 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:03:29,560 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:03:29,560 DEBUG [pylons.configuration] Pushing process configuration
 
14:03:29,615 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:03:29,616 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:03:29,627 DEBUG [pylons.templating] Initialized Buffet object
 
14:03:29,628 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:03:29,628 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:03:29,634 DEBUG [paste.httpserver.ThreadPool] Started new worker 139848727120144: Initial worker pool
 
14:03:29,634 DEBUG [paste.httpserver.ThreadPool] Started new worker 139848718727440: Initial worker pool
 
14:03:29,635 DEBUG [paste.httpserver.ThreadPool] Started new worker 139848710334736: Initial worker pool
 
14:03:29,635 DEBUG [paste.httpserver.ThreadPool] Started new worker 139848701942032: Initial worker pool
 
14:03:29,635 DEBUG [paste.httpserver.ThreadPool] Started new worker 139848693549328: Initial worker pool
 
14:03:29,635 DEBUG [paste.httpserver.ThreadPool] Started new worker 139848685156624: Initial worker pool
 
14:03:29,636 DEBUG [paste.httpserver.ThreadPool] Started new worker 139848676763920: Initial worker pool
 
14:03:29,636 DEBUG [paste.httpserver.ThreadPool] Started new worker 139848668371216: Initial worker pool
 
14:03:29,636 DEBUG [paste.httpserver.ThreadPool] Started new worker 139848659978512: Initial worker pool
 
14:03:29,636 DEBUG [paste.httpserver.ThreadPool] Started new worker 139848651585808: Initial worker pool
 
14:03:31,420 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:03:31,428 DEBUG [routes.middleware] Matched GET /add/test
 
14:03:31,428 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:03:31,429 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test', 'controller': u'hg'}
 
14:03:31,429 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:03:31,430 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:03:31,483 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:03:31,484 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:03:31,484 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:03:31,484 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:03:31,484 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test'}
 
14:03:31,520 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:03:31,520 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:04:03,684 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:04:03,684 DEBUG [pylons.configuration] Pushing process configuration
 
14:04:03,688 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:04:03,688 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:04:03,692 DEBUG [pylons.templating] Initialized Buffet object
 
14:04:03,693 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:04:03,693 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:04:03,695 DEBUG [paste.httpserver.ThreadPool] Started new worker 139774956067088: Initial worker pool
 
14:04:03,696 DEBUG [paste.httpserver.ThreadPool] Started new worker 139774947674384: Initial worker pool
 
14:04:03,697 DEBUG [paste.httpserver.ThreadPool] Started new worker 139774939281680: Initial worker pool
 
14:04:03,697 DEBUG [paste.httpserver.ThreadPool] Started new worker 139774930888976: Initial worker pool
 
14:04:03,697 DEBUG [paste.httpserver.ThreadPool] Started new worker 139774922496272: Initial worker pool
 
14:04:03,697 DEBUG [paste.httpserver.ThreadPool] Started new worker 139774914103568: Initial worker pool
 
14:04:03,697 DEBUG [paste.httpserver.ThreadPool] Started new worker 139774905710864: Initial worker pool
 
14:04:03,698 DEBUG [paste.httpserver.ThreadPool] Started new worker 139774897318160: Initial worker pool
 
14:04:03,698 DEBUG [paste.httpserver.ThreadPool] Started new worker 139774888925456: Initial worker pool
 
14:04:03,698 DEBUG [paste.httpserver.ThreadPool] Started new worker 139774880532752: Initial worker pool
 
14:04:05,450 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:04:05,453 DEBUG [routes.middleware] Matched GET /add/test
 
14:04:05,453 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:04:05,454 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test', 'controller': u'hg'}
 
14:04:05,454 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:05,455 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:04:05,508 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:04:05,508 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:05,508 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:05,508 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:04:05,508 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test'}
 
14:04:05,513 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:04:05,513 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:04:15,281 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:04:15,282 DEBUG [pylons.configuration] Pushing process configuration
 
14:04:15,285 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:04:15,285 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:04:15,289 DEBUG [pylons.templating] Initialized Buffet object
 
14:04:15,289 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:04:15,289 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:04:15,292 DEBUG [paste.httpserver.ThreadPool] Started new worker 140496145504528: Initial worker pool
 
14:04:15,293 DEBUG [paste.httpserver.ThreadPool] Started new worker 140496137111824: Initial worker pool
 
14:04:15,293 DEBUG [paste.httpserver.ThreadPool] Started new worker 140496128719120: Initial worker pool
 
14:04:15,293 DEBUG [paste.httpserver.ThreadPool] Started new worker 140496120326416: Initial worker pool
 
14:04:15,294 DEBUG [paste.httpserver.ThreadPool] Started new worker 140496111933712: Initial worker pool
 
14:04:15,294 DEBUG [paste.httpserver.ThreadPool] Started new worker 140496103541008: Initial worker pool
 
14:04:15,294 DEBUG [paste.httpserver.ThreadPool] Started new worker 140496095148304: Initial worker pool
 
14:04:15,294 DEBUG [paste.httpserver.ThreadPool] Started new worker 140496086755600: Initial worker pool
 
14:04:15,295 DEBUG [paste.httpserver.ThreadPool] Started new worker 140496078362896: Initial worker pool
 
14:04:15,295 DEBUG [paste.httpserver.ThreadPool] Started new worker 140496069970192: Initial worker pool
 
14:04:16,113 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:04:16,119 DEBUG [routes.middleware] Matched GET /add/test
 
14:04:16,119 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:04:16,120 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test', 'controller': u'hg'}
 
14:04:16,120 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:16,121 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:04:16,181 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:04:16,181 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:16,181 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:16,182 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:04:16,182 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test'}
 
14:04:16,541 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:04:16,542 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:04:18,506 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:04:18,508 DEBUG [routes.middleware] Matched GET /
 
14:04:18,508 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:04:18,508 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:04:18,508 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:18,509 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:04:18,509 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:18,509 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:18,509 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:04:18,509 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x36be140>, 'environ': {'routes.route': <routes.route.Route object at 0x2e3c550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/add/test', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2e3c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x33a6e10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x33a6f50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2e3c810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2f2e510>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2e3c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x33a6e10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2e3c850>, 'wsgi.input': <socket._fileobject object at 0x2dc6bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498258.510078, '_creation_time': 1266498258.510078}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2f2e510>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2e51ed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc7d33491c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x218a4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:04:19,691 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:04:19,729 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:04:19,801 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:04:19,802 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:04:19,802 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:04:19,802 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:04:19,803 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:19,803 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:04:19,803 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:19,803 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:19,804 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:04:19,804 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x36bf7d0>, 'environ': {'routes.route': <routes.route.Route object at 0x2e3c550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2e3c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x36ab510>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x36ab110>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2e3c810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x33a6f90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2e3c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x36ab510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2e3c850>, 'wsgi.input': <socket._fileobject object at 0x338c9d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498259.8044541, '_creation_time': 1266498258.510078}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x33a6f90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x36ab4d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc7d33491c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x218a4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:04:20,764 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:04:20,764 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:04:22,765 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:04:22,767 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
14:04:22,768 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:04:22,768 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
14:04:22,770 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:22,771 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:04:22,771 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:22,772 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:22,772 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:04:22,772 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x36bfcf8>, 'environ': {'routes.route': <routes.route.Route object at 0x2e3c550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2e3c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x36bad50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2e3c810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x36ba1d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x36bae50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2e3c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x36bad50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2e3c850>, 'wsgi.input': <socket._fileobject object at 0x2dc6ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498262.7735, '_creation_time': 1266498258.510078}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x36bae50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x36abfd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc7d33491c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x218a4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:04:23,728 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:04:23,728 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:04:26,131 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:04:26,133 DEBUG [routes.middleware] Matched GET /add/test
 
14:04:26,133 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:04:26,133 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test', 'controller': u'hg'}
 
14:04:26,133 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:26,134 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:04:26,134 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:26,134 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:26,134 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:04:26,134 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test'}
 
14:04:26,137 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:04:26,137 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:04:45,433 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:04:45,433 DEBUG [pylons.configuration] Pushing process configuration
 
14:04:45,436 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:04:45,437 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:04:45,441 DEBUG [pylons.templating] Initialized Buffet object
 
14:04:45,441 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:04:45,441 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:04:45,443 DEBUG [paste.httpserver.ThreadPool] Started new worker 140720894519568: Initial worker pool
 
14:04:45,444 DEBUG [paste.httpserver.ThreadPool] Started new worker 140720886126864: Initial worker pool
 
14:04:45,444 DEBUG [paste.httpserver.ThreadPool] Started new worker 140720877734160: Initial worker pool
 
14:04:45,444 DEBUG [paste.httpserver.ThreadPool] Started new worker 140720869341456: Initial worker pool
 
14:04:45,445 DEBUG [paste.httpserver.ThreadPool] Started new worker 140720860948752: Initial worker pool
 
14:04:45,445 DEBUG [paste.httpserver.ThreadPool] Started new worker 140720852556048: Initial worker pool
 
14:04:45,445 DEBUG [paste.httpserver.ThreadPool] Started new worker 140720844163344: Initial worker pool
 
14:04:45,445 DEBUG [paste.httpserver.ThreadPool] Started new worker 140720835770640: Initial worker pool
 
14:04:45,446 DEBUG [paste.httpserver.ThreadPool] Started new worker 140720827377936: Initial worker pool
 
14:04:45,446 DEBUG [paste.httpserver.ThreadPool] Started new worker 140720818985232: Initial worker pool
 
14:04:47,332 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:04:47,340 DEBUG [routes.middleware] Matched GET /add/test
 
14:04:47,340 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:04:47,341 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test', 'controller': u'hg'}
 
14:04:47,342 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:47,345 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:04:47,414 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:04:47,414 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:47,414 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:47,414 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:04:47,415 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test'}
 
14:04:47,451 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:04:47,451 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:04:52,003 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:04:52,014 DEBUG [routes.middleware] Matched GET /add/test2
 
14:04:52,014 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:04:52,014 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'add/test2'}
 
14:04:52,014 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:52,015 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:04:52,015 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:52,015 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:52,015 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:04:52,015 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x32d0050>, 'environ': {'routes.route': <routes.route.Route object at 0x2a4e550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'add/test2'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2a4e790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/add/test2', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2fb9e90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2a4e810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2fb9f10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2b40510>, {'action': u'view', 'controller': u'hg', 'path_info': 'add/test2'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2a4e850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2fb9e90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2a4e850>, 'wsgi.input': <socket._fileobject object at 0x29d8bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498292.016242, '_creation_time': 1266498292.016242}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2b40510>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2b40190>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffc274a61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1d9c4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:04:52,934 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
14:04:52,941 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:04:52,942 DEBUG [routes.middleware] Matched GET /error/document
 
14:04:52,942 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
14:04:52,942 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
14:04:52,942 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:52,943 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
14:04:52,943 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
14:04:52,943 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:52,943 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:52,943 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
14:04:52,944 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
14:04:52,944 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x325ded0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x259b758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2a4e5d0>, 'url': <routes.util.URLGenerator object at 0x325d250>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x325db90 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x325ded0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x32cdc68>, 'session': {'_accessed_time': 1266498292.944525, '_creation_time': 1266498292.016242}, 'N_': <function gettext_noop at 0x259b410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2a4e5d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2a4e390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2a4e5d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x325db10 200 OK>, '_': <function ugettext at 0x259b578>}
 
14:04:52,945 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
14:04:52,945 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:04:57,966 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:04:57,971 DEBUG [routes.middleware] Matched GET /
 
14:04:57,971 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:04:57,971 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:04:57,972 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:57,972 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:04:57,972 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:57,972 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:57,972 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:04:57,973 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x32d39b0>, 'environ': {'routes.route': <routes.route.Route object at 0x2a4e550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2a4e790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x326a490>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2a4e810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x326a910>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fb9c10>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2a4e850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x326a490>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2a4e850>, 'wsgi.input': <socket._fileobject object at 0x308bcd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498297.9732699, '_creation_time': 1266498292.016242}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fb9c10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3257090>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffc274a61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1d9c4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:04:58,935 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:04:58,962 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:04:59,039 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:04:59,040 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:04:59,040 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:04:59,041 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:04:59,042 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:04:59,042 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:04:59,042 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:04:59,042 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:04:59,043 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:04:59,043 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x32f85f0>, 'environ': {'routes.route': <routes.route.Route object at 0x2a4e550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2a4e790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x32cca90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x32cc510>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2a4e810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x326a790>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2a4e850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x32cca90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2a4e850>, 'wsgi.input': <socket._fileobject object at 0x32ba9d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498299.043498, '_creation_time': 1266498292.016242}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x326a790>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x32ccc90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffc274a61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1d9c4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:04:59,987 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:04:59,988 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:02,005 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:02,009 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
14:05:02,009 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:02,010 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
14:05:02,011 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:02,012 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:02,012 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:02,012 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:02,012 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:02,012 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x32d3cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x2a4e550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2a4e790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x32bde90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2a4e810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x32bdc50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x32bdb90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2a4e850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x32bde90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2a4e850>, 'wsgi.input': <socket._fileobject object at 0x29d8ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498302.0130601, '_creation_time': 1266498292.016242}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x32bdb90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x32bdad0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffc274a61c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1d9c4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:05:03,078 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:03,087 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:03,671 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:05:03,671 DEBUG [pylons.configuration] Pushing process configuration
 
14:05:03,674 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:05:03,675 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:05:03,678 DEBUG [pylons.templating] Initialized Buffet object
 
14:05:03,678 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:05:03,678 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:05:03,683 DEBUG [paste.httpserver.ThreadPool] Started new worker 139674282907920: Initial worker pool
 
14:05:03,683 DEBUG [paste.httpserver.ThreadPool] Started new worker 139674274515216: Initial worker pool
 
14:05:03,683 DEBUG [paste.httpserver.ThreadPool] Started new worker 139674266122512: Initial worker pool
 
14:05:03,683 DEBUG [paste.httpserver.ThreadPool] Started new worker 139674257729808: Initial worker pool
 
14:05:03,684 DEBUG [paste.httpserver.ThreadPool] Started new worker 139674249337104: Initial worker pool
 
14:05:03,684 DEBUG [paste.httpserver.ThreadPool] Started new worker 139674240944400: Initial worker pool
 
14:05:03,684 DEBUG [paste.httpserver.ThreadPool] Started new worker 139674232551696: Initial worker pool
 
14:05:03,684 DEBUG [paste.httpserver.ThreadPool] Started new worker 139674224158992: Initial worker pool
 
14:05:03,685 DEBUG [paste.httpserver.ThreadPool] Started new worker 139674215766288: Initial worker pool
 
14:05:03,685 DEBUG [paste.httpserver.ThreadPool] Started new worker 139674207373584: Initial worker pool
 
14:05:11,111 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:05:11,111 DEBUG [pylons.configuration] Pushing process configuration
 
14:05:11,114 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:05:11,115 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:05:11,118 DEBUG [pylons.templating] Initialized Buffet object
 
14:05:11,118 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:05:11,119 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:05:11,121 DEBUG [paste.httpserver.ThreadPool] Started new worker 139664498010384: Initial worker pool
 
14:05:11,121 DEBUG [paste.httpserver.ThreadPool] Started new worker 139664489617680: Initial worker pool
 
14:05:11,132 DEBUG [paste.httpserver.ThreadPool] Started new worker 139664481224976: Initial worker pool
 
14:05:11,133 DEBUG [paste.httpserver.ThreadPool] Started new worker 139664472832272: Initial worker pool
 
14:05:11,133 DEBUG [paste.httpserver.ThreadPool] Started new worker 139664464439568: Initial worker pool
 
14:05:11,133 DEBUG [paste.httpserver.ThreadPool] Started new worker 139664456046864: Initial worker pool
 
14:05:11,134 DEBUG [paste.httpserver.ThreadPool] Started new worker 139664447654160: Initial worker pool
 
14:05:11,134 DEBUG [paste.httpserver.ThreadPool] Started new worker 139664439261456: Initial worker pool
 
14:05:11,134 DEBUG [paste.httpserver.ThreadPool] Started new worker 139664430868752: Initial worker pool
 
14:05:11,134 DEBUG [paste.httpserver.ThreadPool] Started new worker 139664422476048: Initial worker pool
 
14:05:15,434 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:15,437 DEBUG [routes.middleware] Matched GET /add/test2
 
14:05:15,437 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:05:15,437 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test2', 'controller': u'hg'}
 
14:05:15,437 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:15,438 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:15,498 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:05:15,498 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:15,498 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:15,498 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:05:15,498 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test2'}
 
14:05:15,700 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:05:15,701 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:06:57,953 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:06:57,954 DEBUG [pylons.configuration] Pushing process configuration
 
14:06:57,957 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:06:57,958 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:06:57,961 DEBUG [pylons.templating] Initialized Buffet object
 
14:06:57,961 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:06:57,962 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:06:57,965 DEBUG [paste.httpserver.ThreadPool] Started new worker 140501619230992: Initial worker pool
 
14:06:57,965 DEBUG [paste.httpserver.ThreadPool] Started new worker 140501610838288: Initial worker pool
 
14:06:57,965 DEBUG [paste.httpserver.ThreadPool] Started new worker 140501602445584: Initial worker pool
 
14:06:57,966 DEBUG [paste.httpserver.ThreadPool] Started new worker 140501594052880: Initial worker pool
 
14:06:57,966 DEBUG [paste.httpserver.ThreadPool] Started new worker 140501585660176: Initial worker pool
 
14:06:57,966 DEBUG [paste.httpserver.ThreadPool] Started new worker 140501577267472: Initial worker pool
 
14:06:57,966 DEBUG [paste.httpserver.ThreadPool] Started new worker 140501568874768: Initial worker pool
 
14:06:57,967 DEBUG [paste.httpserver.ThreadPool] Started new worker 140501560482064: Initial worker pool
 
14:06:57,967 DEBUG [paste.httpserver.ThreadPool] Started new worker 140501552089360: Initial worker pool
 
14:06:57,967 DEBUG [paste.httpserver.ThreadPool] Started new worker 140501543696656: Initial worker pool
 
14:07:16,202 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:07:16,205 DEBUG [routes.middleware] Matched GET /add/test2
 
14:07:16,205 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:07:16,205 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test2', 'controller': u'hg'}
 
14:07:16,206 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:07:16,207 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:07:16,258 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:07:16,259 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:07:16,259 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:07:16,259 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:07:16,259 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test2'}
 
14:07:16,308 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:07:16,308 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:07:46,330 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:07:46,331 DEBUG [pylons.configuration] Pushing process configuration
 
14:07:46,335 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:07:46,335 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:07:46,338 DEBUG [pylons.templating] Initialized Buffet object
 
14:07:46,339 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:07:46,339 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:07:46,341 DEBUG [paste.httpserver.ThreadPool] Started new worker 139952601037072: Initial worker pool
 
14:07:46,341 DEBUG [paste.httpserver.ThreadPool] Started new worker 139952592644368: Initial worker pool
 
14:07:46,341 DEBUG [paste.httpserver.ThreadPool] Started new worker 139952584251664: Initial worker pool
 
14:07:46,342 DEBUG [paste.httpserver.ThreadPool] Started new worker 139952575858960: Initial worker pool
 
14:07:46,342 DEBUG [paste.httpserver.ThreadPool] Started new worker 139952567466256: Initial worker pool
 
14:07:46,342 DEBUG [paste.httpserver.ThreadPool] Started new worker 139952559073552: Initial worker pool
 
14:07:46,342 DEBUG [paste.httpserver.ThreadPool] Started new worker 139952550680848: Initial worker pool
 
14:07:46,343 DEBUG [paste.httpserver.ThreadPool] Started new worker 139952542288144: Initial worker pool
 
14:07:46,343 DEBUG [paste.httpserver.ThreadPool] Started new worker 139952533895440: Initial worker pool
 
14:07:46,343 DEBUG [paste.httpserver.ThreadPool] Started new worker 139952525502736: Initial worker pool
 
14:07:47,536 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:07:47,540 DEBUG [routes.middleware] Matched GET /add/test2
 
14:07:47,540 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:07:47,541 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test2', 'controller': u'hg'}
 
14:07:47,541 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:07:47,542 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:07:47,617 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:07:47,617 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:07:47,617 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:07:47,617 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:07:47,617 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test2'}
 
14:07:47,658 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:07:47,658 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:07:56,571 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:07:56,572 DEBUG [routes.middleware] Matched GET /add/test3
 
14:07:56,572 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:07:56,572 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test3', 'controller': u'hg'}
 
14:07:56,572 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:07:56,573 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:07:56,573 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:07:56,573 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:07:56,573 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:07:56,573 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test3'}
 
14:07:56,575 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:07:56,575 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:07:58,971 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:07:58,972 DEBUG [routes.middleware] Matched GET /add/test3.1
 
14:07:58,972 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:07:58,972 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test3.1', 'controller': u'hg'}
 
14:07:58,972 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:07:58,973 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:07:58,973 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:07:58,973 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:07:58,973 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:07:58,973 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test3.1'}
 
14:07:58,975 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:07:58,975 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:08:02,778 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:08:02,790 DEBUG [routes.middleware] Matched GET /add/test3.1232131.31
 
14:08:02,791 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:08:02,791 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test3.1232131.31', 'controller': u'hg'}
 
14:08:02,792 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:08:02,793 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:08:02,794 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:08:02,794 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:08:02,794 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:08:02,795 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test3.1232131.31'}
 
14:08:02,801 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:08:02,801 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:08:42,927 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:08:42,927 DEBUG [pylons.configuration] Pushing process configuration
 
14:08:42,930 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:08:42,931 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:08:42,934 DEBUG [pylons.templating] Initialized Buffet object
 
14:08:42,934 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:08:42,935 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:08:42,936 DEBUG [paste.httpserver.ThreadPool] Started new worker 139883742353680: Initial worker pool
 
14:08:42,937 DEBUG [paste.httpserver.ThreadPool] Started new worker 139883733960976: Initial worker pool
 
14:08:42,937 DEBUG [paste.httpserver.ThreadPool] Started new worker 139883725568272: Initial worker pool
 
14:08:42,937 DEBUG [paste.httpserver.ThreadPool] Started new worker 139883717175568: Initial worker pool
 
14:08:42,938 DEBUG [paste.httpserver.ThreadPool] Started new worker 139883708782864: Initial worker pool
 
14:08:42,941 DEBUG [paste.httpserver.ThreadPool] Started new worker 139883700390160: Initial worker pool
 
14:08:42,941 DEBUG [paste.httpserver.ThreadPool] Started new worker 139883691997456: Initial worker pool
 
14:08:42,941 DEBUG [paste.httpserver.ThreadPool] Started new worker 139883683604752: Initial worker pool
 
14:08:42,942 DEBUG [paste.httpserver.ThreadPool] Started new worker 139883675212048: Initial worker pool
 
14:08:42,942 DEBUG [paste.httpserver.ThreadPool] Started new worker 139883666819344: Initial worker pool
 
14:09:11,968 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:09:11,970 DEBUG [routes.middleware] Matched GET /
 
14:09:11,970 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:09:11,971 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:09:11,971 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:09:11,972 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:09:12,046 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:09:12,046 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:09:12,047 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:09:12,047 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:09:12,047 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1b6dd70>, 'environ': {'routes.route': <routes.route.Route object at 0x1a7c550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1a7c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1b6f850>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1a7c810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1b6f510>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1b6f310>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1b6f850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'wsgi.input': <socket._fileobject object at 0x1a06a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498552.047678, '_creation_time': 1266498552.047678}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1b6f310>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1a91f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f393d2211c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdcb4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:09:12,953 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:09:12,987 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:09:13,051 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:09:13,052 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:09:13,052 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:09:13,053 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:09:13,053 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:09:13,053 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:09:13,054 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:09:13,054 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:09:13,054 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:09:13,054 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2017c80>, 'environ': {'routes.route': <routes.route.Route object at 0x1a7c550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1a7c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x201b810>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x201b750>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1a7c810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1b6f450>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x201b810>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'wsgi.input': <socket._fileobject object at 0x1fcd950 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498553.0546899, '_creation_time': 1266498552.047678}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1b6f450>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x201b1d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f393d2211c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdcb4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:09:14,011 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:09:14,011 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:09:16,060 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:09:16,061 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
14:09:16,062 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:09:16,062 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
14:09:16,062 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:09:16,063 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:09:16,063 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:09:16,063 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:09:16,063 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:09:16,063 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2017c08>, 'environ': {'routes.route': <routes.route.Route object at 0x1a7c550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1a7c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2009a90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1a7c810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2009cd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2009490>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2009a90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'wsgi.input': <socket._fileobject object at 0x1a06bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498556.063905, '_creation_time': 1266498552.047678}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2009490>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x201b390>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f393d2211c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdcb4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:09:16,958 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:09:16,958 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:09:30,005 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:09:30,008 DEBUG [routes.middleware] Matched GET /add/test3
 
14:09:30,009 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:09:30,009 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test3', 'controller': u'hg'}
 
14:09:30,010 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:09:30,011 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:09:30,011 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:09:30,011 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:09:30,011 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:09:30,011 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test3'}
 
14:09:30,064 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:09:30,064 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:09:31,850 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:09:31,851 DEBUG [routes.middleware] Matched GET /
 
14:09:31,851 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:09:31,852 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:09:31,852 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:09:31,852 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:09:31,853 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:09:31,853 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:09:31,853 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:09:31,853 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x236e6e0>, 'environ': {'routes.route': <routes.route.Route object at 0x1a7c550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/add/test3', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1a7c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x202a250>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x202a450>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1a7c810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x201fb50>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x202a250>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'wsgi.input': <socket._fileobject object at 0x201c450 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498571.853673, '_creation_time': 1266498552.047678}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x201fb50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2009f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f393d2211c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdcb4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:09:32,744 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:09:32,771 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:09:32,849 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:09:32,851 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:09:32,851 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:09:32,851 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:09:32,851 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:09:32,852 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:09:32,852 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:09:32,852 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:09:32,852 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:09:32,852 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x237d230>, 'environ': {'routes.route': <routes.route.Route object at 0x1a7c550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1a7c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x236a810>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x236a6d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1a7c810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x21c7a90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x236a810>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'wsgi.input': <socket._fileobject object at 0x201c250 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498572.8528681, '_creation_time': 1266498552.047678}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x21c7a90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2360e50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f393d2211c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdcb4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:09:33,746 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:09:33,747 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:09:35,786 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:09:35,789 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
14:09:35,790 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:09:35,790 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
14:09:35,791 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:09:35,792 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:09:35,792 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:09:35,793 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:09:35,793 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:09:35,794 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x237d7d0>, 'environ': {'routes.route': <routes.route.Route object at 0x1a7c550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1a7c790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2371290>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1a7c810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x21bf510>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x21bf5d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2371290>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1a7c850>, 'wsgi.input': <socket._fileobject object at 0x21c35d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498575.794677, '_creation_time': 1266498552.047678}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x21bf5d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2360210>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f393d2211c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdcb4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:09:36,712 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:09:36,712 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:10:42,728 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:10:42,729 DEBUG [pylons.configuration] Pushing process configuration
 
14:10:42,732 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:10:42,732 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:10:42,736 DEBUG [pylons.templating] Initialized Buffet object
 
14:10:42,736 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:10:42,736 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:10:42,738 DEBUG [paste.httpserver.ThreadPool] Started new worker 140732895516944: Initial worker pool
 
14:10:42,739 DEBUG [paste.httpserver.ThreadPool] Started new worker 140732887124240: Initial worker pool
 
14:10:42,739 DEBUG [paste.httpserver.ThreadPool] Started new worker 140732878731536: Initial worker pool
 
14:10:42,739 DEBUG [paste.httpserver.ThreadPool] Started new worker 140732870338832: Initial worker pool
 
14:10:42,739 DEBUG [paste.httpserver.ThreadPool] Started new worker 140732861946128: Initial worker pool
 
14:10:42,740 DEBUG [paste.httpserver.ThreadPool] Started new worker 140732853553424: Initial worker pool
 
14:10:42,740 DEBUG [paste.httpserver.ThreadPool] Started new worker 140732845160720: Initial worker pool
 
14:10:42,740 DEBUG [paste.httpserver.ThreadPool] Started new worker 140732836768016: Initial worker pool
 
14:10:42,741 DEBUG [paste.httpserver.ThreadPool] Started new worker 140732828375312: Initial worker pool
 
14:10:42,741 DEBUG [paste.httpserver.ThreadPool] Started new worker 140732819982608: Initial worker pool
 
14:12:10,591 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:12:10,599 DEBUG [routes.middleware] Matched GET /add/test3
 
14:12:10,599 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:12:10,600 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test3', 'controller': u'hg'}
 
14:12:10,600 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:12:10,606 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:12:10,678 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:12:10,688 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:12:10,688 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:12:10,688 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:12:10,688 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test3'}
 
14:12:10,725 INFO  [pylons_app.controllers.hg] test3 repo is free for creation
 
14:12:10,725 INFO  [pylons_app.controllers.hg] test3 repo is free for creation
 
14:12:10,725 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:12:10,725 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:12:57,116 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:12:57,116 DEBUG [pylons.configuration] Pushing process configuration
 
14:12:57,121 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:12:57,121 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:12:57,125 DEBUG [pylons.templating] Initialized Buffet object
 
14:12:57,125 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:12:57,125 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:12:57,127 DEBUG [paste.httpserver.ThreadPool] Started new worker 139958287091984: Initial worker pool
 
14:12:57,127 DEBUG [paste.httpserver.ThreadPool] Started new worker 139958278699280: Initial worker pool
 
14:12:57,128 DEBUG [paste.httpserver.ThreadPool] Started new worker 139958270306576: Initial worker pool
 
14:12:57,128 DEBUG [paste.httpserver.ThreadPool] Started new worker 139958261913872: Initial worker pool
 
14:12:57,128 DEBUG [paste.httpserver.ThreadPool] Started new worker 139958253521168: Initial worker pool
 
14:12:57,129 DEBUG [paste.httpserver.ThreadPool] Started new worker 139958245128464: Initial worker pool
 
14:12:57,129 DEBUG [paste.httpserver.ThreadPool] Started new worker 139958236735760: Initial worker pool
 
14:12:57,129 DEBUG [paste.httpserver.ThreadPool] Started new worker 139958228343056: Initial worker pool
 
14:12:57,129 DEBUG [paste.httpserver.ThreadPool] Started new worker 139958219950352: Initial worker pool
 
14:12:57,130 DEBUG [paste.httpserver.ThreadPool] Started new worker 139958211557648: Initial worker pool
 
14:13:10,442 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:13:10,447 DEBUG [routes.middleware] Matched GET /add/test3
 
14:13:10,447 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:13:10,447 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test3', 'controller': u'hg'}
 
14:13:10,448 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:13:10,449 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:13:10,513 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:13:10,513 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:13:10,513 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:13:10,513 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:13:10,514 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test3'}
 
14:13:10,548 INFO  [pylons_app.controllers.hg] test3 repo is free for creation
 
14:13:10,548 INFO  [pylons_app.controllers.hg] test3 repo is free for creation
 
14:13:10,549 INFO  [pylons_app.controllers.hg] creating repo test3
 
14:13:10,549 INFO  [pylons_app.controllers.hg] creating repo test3
 
14:13:10,726 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:13:10,726 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:13:11,977 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:13:11,991 DEBUG [routes.middleware] Matched GET /
 
14:13:11,991 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:13:11,991 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:13:11,991 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:13:11,992 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:13:11,992 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:13:11,992 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:13:11,992 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:13:11,992 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x37e7140>, 'environ': {'routes.route': <routes.route.Route object at 0x2f7f550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/add/test3', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2f7f790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x34e8dd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x34e8fd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2f7f810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x30714d0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2f7f850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x34e8dd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2f7f850>, 'wsgi.input': <socket._fileobject object at 0x2f09bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498791.9932499, '_creation_time': 1266498791.9932499}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x30714d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3071150>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f4a985881c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22ce4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:13:13,017 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:13:13,059 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:13:13,087 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:13:13,132 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:13:13,132 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:13:13,132 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:13:13,133 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:13:13,134 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:13:13,134 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:13:13,135 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:13:13,135 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:13:13,135 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3806848>, 'environ': {'routes.route': <routes.route.Route object at 0x2f7f550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2f7f790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37f00d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37f0a90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2f7f810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x34e8d90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2f7f850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37f00d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2f7f850>, 'wsgi.input': <socket._fileobject object at 0x34d5950 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498793.13592, '_creation_time': 1266498791.9932499}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x34e8d90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37f0d10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f4a985881c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22ce4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:13:14,173 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:13:14,173 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:13:16,088 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:13:16,090 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
14:13:16,091 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:13:16,092 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
14:13:16,093 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:13:16,094 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:13:16,095 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:13:16,095 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:13:16,095 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:13:16,096 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3806d70>, 'environ': {'routes.route': <routes.route.Route object at 0x2f7f550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2f7f790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37fe790>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2f7f810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37fe510>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37fe950>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2f7f850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37fe790>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2f7f850>, 'wsgi.input': <socket._fileobject object at 0x2f09ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266498796.096786, '_creation_time': 1266498791.9932499}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37fe950>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37f0310>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f4a985881c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22ce4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:13:16,997 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:13:16,997 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:15:30,530 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:15:30,530 DEBUG [pylons.configuration] Pushing process configuration
 
14:15:30,534 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:15:30,534 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:15:30,537 DEBUG [pylons.templating] Initialized Buffet object
 
14:15:30,538 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:15:30,538 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:15:30,540 DEBUG [paste.httpserver.ThreadPool] Started new worker 139986443634960: Initial worker pool
 
14:15:30,541 DEBUG [paste.httpserver.ThreadPool] Started new worker 139986435242256: Initial worker pool
 
14:15:30,541 DEBUG [paste.httpserver.ThreadPool] Started new worker 139986426849552: Initial worker pool
 
14:15:30,541 DEBUG [paste.httpserver.ThreadPool] Started new worker 139986418456848: Initial worker pool
 
14:15:30,541 DEBUG [paste.httpserver.ThreadPool] Started new worker 139986410064144: Initial worker pool
 
14:15:30,542 DEBUG [paste.httpserver.ThreadPool] Started new worker 139986401671440: Initial worker pool
 
14:15:30,542 DEBUG [paste.httpserver.ThreadPool] Started new worker 139986393278736: Initial worker pool
 
14:15:30,542 DEBUG [paste.httpserver.ThreadPool] Started new worker 139986384886032: Initial worker pool
 
14:15:30,542 DEBUG [paste.httpserver.ThreadPool] Started new worker 139986376493328: Initial worker pool
 
14:15:30,543 DEBUG [paste.httpserver.ThreadPool] Started new worker 139986368100624: Initial worker pool
 
14:47:31,905 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:47:31,907 DEBUG [routes.middleware] Matched GET /add/test
 
14:47:31,907 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:47:31,908 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test', 'controller': u'hg'}
 
14:47:31,908 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:47:31,909 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:47:32,035 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:47:32,035 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:47:32,035 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:47:32,036 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:47:32,036 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test'}
 
14:47:32,036 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:47:32,036 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:48:18,628 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:48:18,628 DEBUG [pylons.configuration] Pushing process configuration
 
14:48:18,631 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:48:18,631 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:48:18,635 DEBUG [pylons.templating] Initialized Buffet object
 
14:48:18,635 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:48:18,636 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:48:18,638 DEBUG [paste.httpserver.ThreadPool] Started new worker 139766760069392: Initial worker pool
 
14:48:18,638 DEBUG [paste.httpserver.ThreadPool] Started new worker 139766751676688: Initial worker pool
 
14:48:18,640 DEBUG [paste.httpserver.ThreadPool] Started new worker 139766743283984: Initial worker pool
 
14:48:18,640 DEBUG [paste.httpserver.ThreadPool] Started new worker 139766734891280: Initial worker pool
 
14:48:18,640 DEBUG [paste.httpserver.ThreadPool] Started new worker 139766726498576: Initial worker pool
 
14:48:18,640 DEBUG [paste.httpserver.ThreadPool] Started new worker 139766718105872: Initial worker pool
 
14:48:18,641 DEBUG [paste.httpserver.ThreadPool] Started new worker 139766709713168: Initial worker pool
 
14:48:18,641 DEBUG [paste.httpserver.ThreadPool] Started new worker 139766701320464: Initial worker pool
 
14:48:18,641 DEBUG [paste.httpserver.ThreadPool] Started new worker 139766692927760: Initial worker pool
 
14:48:18,641 DEBUG [paste.httpserver.ThreadPool] Started new worker 139766684535056: Initial worker pool
 
14:48:20,795 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:48:20,798 DEBUG [routes.middleware] Matched GET /add/test
 
14:48:20,798 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:48:20,798 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test', 'controller': u'hg'}
 
14:48:20,798 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:48:20,799 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:48:20,863 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:48:20,863 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:48:20,864 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:48:20,864 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:48:20,864 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test'}
 
14:48:20,898 INFO  [pylons_app.controllers.hg] test repo is free for creation
 
14:48:20,898 INFO  [pylons_app.controllers.hg] test repo is free for creation
 
14:48:20,899 INFO  [pylons_app.controllers.hg] creating repo test
 
14:48:20,899 INFO  [pylons_app.controllers.hg] creating repo test
 
14:48:20,903 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:48:20,904 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:48:23,472 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:48:23,473 DEBUG [routes.middleware] Matched GET /
 
14:48:23,473 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:48:23,473 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:48:23,474 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:48:23,474 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:48:23,474 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:48:23,474 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:48:23,475 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:48:23,475 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2a8a1b8>, 'environ': {'routes.route': <routes.route.Route object at 0x2206550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/add/test', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2206790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2771a10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2771b10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2206810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x22f8510>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2206850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2771a10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2206850>, 'wsgi.input': <socket._fileobject object at 0x2190bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266500903.475585, '_creation_time': 1266500903.475585}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x22f8510>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x221bed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f1e007211c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x15564d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:48:24,356 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:48:24,386 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:48:24,455 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:48:24,456 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:48:24,456 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:48:24,457 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:48:24,457 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:48:24,457 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:48:24,458 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:48:24,458 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:48:24,458 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:48:24,458 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2a8c7d0>, 'environ': {'routes.route': <routes.route.Route object at 0x2206550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2206790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2a79fd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2a79390>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2206810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2771fd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2206850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2a79fd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2206850>, 'wsgi.input': <socket._fileobject object at 0x2190ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266500904.458766, '_creation_time': 1266500903.475585}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2771fd0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2a79990>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f1e007211c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x15564d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:48:25,577 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:48:25,577 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:48:27,424 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:48:27,425 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
14:48:27,426 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:48:27,426 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
14:48:27,426 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:48:27,427 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:48:27,427 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:48:27,427 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:48:27,427 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:48:27,427 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2a8cd70>, 'environ': {'routes.route': <routes.route.Route object at 0x2206550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2206790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2a87610>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2206810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2a87650>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2a87dd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2206850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2a87610>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2206850>, 'wsgi.input': <socket._fileobject object at 0x2758a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266500907.4276941, '_creation_time': 1266500903.475585}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2a87dd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2a79c10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f1e007211c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x15564d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:48:28,329 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:48:28,329 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:49:27,774 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:49:27,774 DEBUG [pylons.configuration] Pushing process configuration
 
14:49:27,778 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:49:27,778 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:49:27,782 DEBUG [pylons.templating] Initialized Buffet object
 
14:49:27,782 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:49:27,782 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:49:27,784 DEBUG [paste.httpserver.ThreadPool] Started new worker 140269308057872: Initial worker pool
 
14:49:27,785 DEBUG [paste.httpserver.ThreadPool] Started new worker 140269299665168: Initial worker pool
 
14:49:27,785 DEBUG [paste.httpserver.ThreadPool] Started new worker 140269291272464: Initial worker pool
 
14:49:27,785 DEBUG [paste.httpserver.ThreadPool] Started new worker 140269282879760: Initial worker pool
 
14:49:27,785 DEBUG [paste.httpserver.ThreadPool] Started new worker 140269274487056: Initial worker pool
 
14:49:27,786 DEBUG [paste.httpserver.ThreadPool] Started new worker 140269266094352: Initial worker pool
 
14:49:27,786 DEBUG [paste.httpserver.ThreadPool] Started new worker 140269257701648: Initial worker pool
 
14:49:27,786 DEBUG [paste.httpserver.ThreadPool] Started new worker 140269249308944: Initial worker pool
 
14:49:27,786 DEBUG [paste.httpserver.ThreadPool] Started new worker 140269240916240: Initial worker pool
 
14:49:27,787 DEBUG [paste.httpserver.ThreadPool] Started new worker 140269232523536: Initial worker pool
 
14:49:43,821 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:49:43,824 DEBUG [routes.middleware] Matched GET /add/test2
 
14:49:43,824 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:49:43,825 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test2', 'controller': u'hg'}
 
14:49:43,825 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:49:43,826 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:49:43,906 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:49:43,908 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:49:43,908 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:49:43,908 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:49:43,909 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test2'}
 
14:49:43,957 INFO  [pylons_app.controllers.hg] test2 repo is free for creation
 
14:49:43,957 INFO  [pylons_app.controllers.hg] test2 repo is free for creation
 
14:49:43,957 INFO  [pylons_app.controllers.hg] creating repo test2 in /home/marcink/python_workspace/**/test2
 
14:49:43,957 INFO  [pylons_app.controllers.hg] creating repo test2 in /home/marcink/python_workspace/**/test2
 
14:49:43,962 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:49:43,962 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:50:36,802 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:50:36,802 DEBUG [pylons.configuration] Pushing process configuration
 
14:50:36,805 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:50:36,805 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:50:36,809 DEBUG [pylons.templating] Initialized Buffet object
 
14:50:36,809 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:50:36,810 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:50:36,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 139820631587088: Initial worker pool
 
14:50:36,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 139820623194384: Initial worker pool
 
14:50:36,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 139820614801680: Initial worker pool
 
14:50:36,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 139820606408976: Initial worker pool
 
14:50:36,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 139820598016272: Initial worker pool
 
14:50:36,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 139820589623568: Initial worker pool
 
14:50:36,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 139820581230864: Initial worker pool
 
14:50:36,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 139820572838160: Initial worker pool
 
14:50:36,814 DEBUG [paste.httpserver.ThreadPool] Started new worker 139820564445456: Initial worker pool
 
14:50:36,814 DEBUG [paste.httpserver.ThreadPool] Started new worker 139820556052752: Initial worker pool
 
14:50:48,060 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:50:48,063 DEBUG [routes.middleware] Matched GET /add/test2
 
14:50:48,063 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
14:50:48,063 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test2', 'controller': u'hg'}
 
14:50:48,063 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:50:48,064 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:50:48,120 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:50:48,120 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:50:48,120 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:50:48,120 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
14:50:48,120 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test2'}
 
14:50:48,156 INFO  [pylons_app.controllers.hg] test2 repo is free for creation
 
14:50:48,156 INFO  [pylons_app.controllers.hg] test2 repo is free for creation
 
14:50:48,156 INFO  [pylons_app.controllers.hg] creating repo test2 in /home/marcink/python_workspace/test2
 
14:50:48,156 INFO  [pylons_app.controllers.hg] creating repo test2 in /home/marcink/python_workspace/test2
 
14:50:48,405 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
14:50:48,406 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:50:53,654 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:50:53,655 DEBUG [routes.middleware] Matched GET /
 
14:50:53,655 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:50:53,655 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:50:53,656 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:50:53,656 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:50:53,656 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:50:53,656 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:50:53,657 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:50:53,657 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2d8e578>, 'environ': {'routes.route': <routes.route.Route object at 0x2526550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/add/test2', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2526790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2a8b9d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2a8bad0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2526810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2618490>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2a8b9d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'wsgi.input': <socket._fileobject object at 0x24b0bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266501053.6575689, '_creation_time': 1266501053.6575689}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2618490>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2618110>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f2a8b7031c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x18764d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:50:54,621 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:50:54,651 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:50:54,672 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:50:54,681 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:50:54,681 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:50:54,728 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:50:54,729 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:50:54,729 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:50:54,729 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:50:54,729 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:50:54,729 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:50:54,730 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2617d70>, 'environ': {'routes.route': <routes.route.Route object at 0x2526550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2526790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2d9bed0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2d9bb50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2526810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x253bed0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2d9bed0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'wsgi.input': <socket._fileobject object at 0x2a788d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266501054.730284, '_creation_time': 1266501053.6575689}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x253bed0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2d9bd50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f2a8b7031c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x18764d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:50:55,614 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:50:55,614 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:50:57,677 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:50:57,680 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
14:50:57,680 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:50:57,681 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
14:50:57,682 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:50:57,683 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:50:57,684 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:50:57,684 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:50:57,685 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:50:57,685 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2dacd70>, 'environ': {'routes.route': <routes.route.Route object at 0x2526550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2526790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2da9450>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2526810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2da9b90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2da9a90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2da9450>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'wsgi.input': <socket._fileobject object at 0x2a789d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266501057.686095, '_creation_time': 1266501053.6575689}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2da9a90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2d9bd90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f2a8b7031c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x18764d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:50:58,643 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:50:58,644 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:51:00,331 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:51:00,346 DEBUG [routes.middleware] Matched GET /test2/
 
14:51:00,346 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:51:00,347 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test2/'}
 
14:51:00,348 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:51:00,349 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:51:00,350 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:51:00,350 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:51:00,350 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:51:00,351 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2dacaa0>, 'environ': {'routes.route': <routes.route.Route object at 0x2526550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test2/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2526790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test2/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2d9bfd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2d9bb10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2526810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2d9be90>, {'action': u'view', 'controller': u'hg', 'path_info': 'test2/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2d9bfd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'wsgi.input': <socket._fileobject object at 0x24b0ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266501060.3517771, '_creation_time': 1266501053.6575689}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2d9be90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2d9b390>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f2a8b7031c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x18764d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:51:01,254 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:51:01,257 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:51:01,304 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:51:01,306 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:51:01,306 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:51:01,306 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:51:01,306 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:51:01,307 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:51:01,307 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:51:01,307 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:51:01,307 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:51:01,307 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2dda140>, 'environ': {'routes.route': <routes.route.Route object at 0x2526550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test2/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2526790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2dd8f90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2dd8ed0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2526810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2d9bb50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2dd8f90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'wsgi.input': <socket._fileobject object at 0x2d96a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266501061.3081, '_creation_time': 1266501053.6575689}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2d9bb50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2d9b210>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f2a8b7031c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x18764d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:51:02,219 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:51:02,220 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:51:04,300 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:51:04,302 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
14:51:04,302 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:51:04,302 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
14:51:04,302 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:51:04,303 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:51:04,303 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:51:04,303 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:51:04,303 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:51:04,303 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2dcf7d0>, 'environ': {'routes.route': <routes.route.Route object at 0x2526550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2526790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2d5aad0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2526810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2d5a250>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2da5b90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2d5aad0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2526850>, 'wsgi.input': <socket._fileobject object at 0x24b0ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266501064.303968, '_creation_time': 1266501053.6575689}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2da5b90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2da54d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f2a8b7031c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x18764d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
14:51:05,186 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:51:05,186 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
15:47:44,722 INFO  [paste.httpserver.ThreadPool] Shutting down threadpool
 
15:47:49,103 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
15:47:49,104 DEBUG [pylons.configuration] Pushing process configuration
 
15:47:49,107 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
15:47:49,107 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
15:47:49,111 DEBUG [pylons.templating] Initialized Buffet object
 
15:47:49,111 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
15:47:49,111 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
15:47:49,113 DEBUG [paste.httpserver.ThreadPool] Started new worker 139821346044176: Initial worker pool
 
15:47:49,113 DEBUG [paste.httpserver.ThreadPool] Started new worker 139821337651472: Initial worker pool
 
15:47:49,114 DEBUG [paste.httpserver.ThreadPool] Started new worker 139821329258768: Initial worker pool
 
15:47:49,114 DEBUG [paste.httpserver.ThreadPool] Started new worker 139821320866064: Initial worker pool
 
15:47:49,114 DEBUG [paste.httpserver.ThreadPool] Started new worker 139821312473360: Initial worker pool
 
15:47:49,114 DEBUG [paste.httpserver.ThreadPool] Started new worker 139821304080656: Initial worker pool
 
15:47:49,115 DEBUG [paste.httpserver.ThreadPool] Started new worker 139821295687952: Initial worker pool
 
15:47:49,115 DEBUG [paste.httpserver.ThreadPool] Started new worker 139821287295248: Initial worker pool
 
15:47:49,115 DEBUG [paste.httpserver.ThreadPool] Started new worker 139821278902544: Initial worker pool
 
15:47:49,115 DEBUG [paste.httpserver.ThreadPool] Started new worker 139821270509840: Initial worker pool
 
16:39:22,962 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
16:39:22,963 DEBUG [pylons.configuration] Pushing process configuration
 
16:39:22,966 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
16:39:22,966 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
16:39:22,970 DEBUG [pylons.templating] Initialized Buffet object
 
16:39:22,970 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
16:39:22,970 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
16:39:22,972 DEBUG [paste.httpserver.ThreadPool] Started new worker 140505453979920: Initial worker pool
 
16:39:22,972 DEBUG [paste.httpserver.ThreadPool] Started new worker 140505445587216: Initial worker pool
 
16:39:22,973 DEBUG [paste.httpserver.ThreadPool] Started new worker 140505437194512: Initial worker pool
 
16:39:22,973 DEBUG [paste.httpserver.ThreadPool] Started new worker 140505428801808: Initial worker pool
 
16:39:22,973 DEBUG [paste.httpserver.ThreadPool] Started new worker 140505420409104: Initial worker pool
 
16:39:22,974 DEBUG [paste.httpserver.ThreadPool] Started new worker 140505412016400: Initial worker pool
 
16:39:22,974 DEBUG [paste.httpserver.ThreadPool] Started new worker 140505403623696: Initial worker pool
 
16:39:22,974 DEBUG [paste.httpserver.ThreadPool] Started new worker 140505395230992: Initial worker pool
 
16:39:22,974 DEBUG [paste.httpserver.ThreadPool] Started new worker 140505386838288: Initial worker pool
 
16:39:22,975 DEBUG [paste.httpserver.ThreadPool] Started new worker 140505378445584: Initial worker pool
 
16:39:30,858 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:39:30,861 DEBUG [routes.middleware] Matched GET /
 
16:39:30,861 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:39:30,861 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:39:30,862 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:39:30,862 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:39:30,936 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
16:39:30,945 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:39:30,945 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:39:30,946 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:39:30,946 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3832d70>, 'environ': {'routes.route': <routes.route.Route object at 0x3741550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3741790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3833850>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3741810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3833510>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3833310>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3833850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'wsgi.input': <socket._fileobject object at 0x36cba50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507570.946502, '_creation_time': 1266507570.946502}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3833310>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3756f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc9fe08a1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a8b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:39:31,874 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:39:31,904 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:39:31,969 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:39:31,970 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
16:39:31,971 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:39:31,971 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
16:39:31,971 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:39:31,972 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:39:31,972 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:39:31,972 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:39:31,972 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:39:31,972 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3cdccf8>, 'environ': {'routes.route': <routes.route.Route object at 0x3741550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3741790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3ce2890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3ce27d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3741810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3833450>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3ce2890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'wsgi.input': <socket._fileobject object at 0x3c998d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507571.9728971, '_creation_time': 1266507570.946502}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3833450>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3ce2250>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc9fe08a1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a8b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:39:32,877 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:39:32,877 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:39:34,987 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:39:34,988 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
16:39:34,988 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:39:34,988 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
16:39:34,989 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:39:34,989 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:39:34,989 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:39:34,989 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:39:34,989 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:39:34,990 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3cdc6e0>, 'environ': {'routes.route': <routes.route.Route object at 0x3741550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3741790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3cce9d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3741810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3cce810>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3ccea10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3cce9d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'wsgi.input': <socket._fileobject object at 0x36cbbd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507574.990238, '_creation_time': 1266507570.946502}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3ccea10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3ce2210>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc9fe08a1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a8b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:39:35,883 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:39:35,883 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:40:48,830 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:40:48,832 DEBUG [routes.middleware] Matched GET /
 
16:40:48,832 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:40:48,832 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:40:48,832 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:40:48,833 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:40:48,833 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:40:48,833 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:40:48,833 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:40:48,833 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3cf2410>, 'environ': {'routes.route': <routes.route.Route object at 0x3741550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3741790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3ce47d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3741810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3ce4e50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3ccef10>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3ce47d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'wsgi.input': <socket._fileobject object at 0x3ce1450 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507648.834162, '_creation_time': 1266507570.946502}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x3ccef10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3ce2ad0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc9fe08a1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a8b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:40:49,832 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:40:49,856 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:40:49,948 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:40:49,949 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
16:40:49,949 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:40:49,950 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
16:40:49,950 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:40:49,950 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:40:49,950 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:40:49,951 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:40:49,951 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:40:49,951 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3cf2578>, 'environ': {'routes.route': <routes.route.Route object at 0x3741550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3741790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3ce2210>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3ce2350>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3741810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3ce4050>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3ce2210>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'wsgi.input': <socket._fileobject object at 0x36cbbd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507649.9515381, '_creation_time': 1266507570.946502}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x3ce4050>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3ce4110>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc9fe08a1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a8b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:40:50,954 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:40:50,954 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:40:52,907 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:40:52,910 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
16:40:52,910 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:40:52,911 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
16:40:52,912 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:40:52,913 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:40:52,913 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:40:52,914 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:40:52,914 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:40:52,914 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3cf2cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x3741550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3741790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e4d110>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3741810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e4d2d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3ce29d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e4d110>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'wsgi.input': <socket._fileobject object at 0x3ce1950 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507652.9155259, '_creation_time': 1266507570.946502}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3ce29d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3ce4210>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc9fe08a1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a8b550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:40:53,922 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:40:53,923 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:41:12,518 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:41:12,519 DEBUG [routes.middleware] Matched GET /lotto
 
16:41:12,519 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:41:12,519 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:41:12,520 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:41:12,520 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:41:12,520 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:41:12,520 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:41:12,520 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:41:12,520 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3cfe2a8>, 'environ': {'routes.route': <routes.route.Route object at 0x3741550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3741810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3741790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e56290>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e564d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3ce2850>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e56290>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'wsgi.input': <socket._fileobject object at 0x3ce1550 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507672.521153, '_creation_time': 1266507672.521153}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3ce2850>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3ce4850>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc9fe08a1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a8b550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:41:13,560 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:41:13,561 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:41:13,579 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:41:13,580 DEBUG [routes.middleware] Matched GET /lotto
 
16:41:13,580 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:41:13,580 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:41:13,580 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:41:13,581 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:41:13,581 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:41:13,581 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:41:13,581 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:41:13,581 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x404fe60>, 'environ': {'routes.route': <routes.route.Route object at 0x3741550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3741810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3741790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e88450>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e88390>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e56910>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e88450>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'wsgi.input': <socket._fileobject object at 0x3ce1350 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507673.581815, '_creation_time': 1266507673.581815}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e56910>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3ce4750>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc9fe08a1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a8b550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:41:14,568 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:41:14,569 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:41:14,571 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:41:14,572 DEBUG [routes.middleware] Matched GET /lotto
 
16:41:14,572 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:41:14,572 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:41:14,573 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:41:14,573 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:41:14,573 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:41:14,573 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:41:14,573 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:41:14,573 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x406de60>, 'environ': {'routes.route': <routes.route.Route object at 0x3741550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3741810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3741790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4068dd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4068d90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e88310>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4068dd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'wsgi.input': <socket._fileobject object at 0x3ce1650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507674.574223, '_creation_time': 1266507674.574223}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e88310>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e88290>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc9fe08a1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a8b550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:41:15,567 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:41:15,584 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:41:15,586 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:41:15,587 DEBUG [routes.middleware] Matched GET /lotto
 
16:41:15,587 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:41:15,587 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:41:15,587 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:41:15,588 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:41:15,588 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:41:15,588 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:41:15,588 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:41:15,588 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x404ff50>, 'environ': {'routes.route': <routes.route.Route object at 0x3741550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3741810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3741790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x405b0d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x405b650>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x405bf90>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x405b0d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3741850>, 'wsgi.input': <socket._fileobject object at 0x3e8e8d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507675.5889001, '_creation_time': 1266507675.5889001}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x405bf90>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x405be10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fc9fe08a1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a8b550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:41:16,539 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:45:09,581 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
16:45:09,581 DEBUG [pylons.configuration] Pushing process configuration
 
16:45:09,584 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
16:45:09,584 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
16:45:09,588 DEBUG [pylons.templating] Initialized Buffet object
 
16:45:09,588 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
16:45:09,588 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
16:45:09,590 DEBUG [paste.httpserver.ThreadPool] Started new worker 139960299440400: Initial worker pool
 
16:45:09,591 DEBUG [paste.httpserver.ThreadPool] Started new worker 139960291047696: Initial worker pool
 
16:45:09,591 DEBUG [paste.httpserver.ThreadPool] Started new worker 139960282654992: Initial worker pool
 
16:45:09,591 DEBUG [paste.httpserver.ThreadPool] Started new worker 139960274262288: Initial worker pool
 
16:45:09,592 DEBUG [paste.httpserver.ThreadPool] Started new worker 139960265869584: Initial worker pool
 
16:45:09,592 DEBUG [paste.httpserver.ThreadPool] Started new worker 139960257476880: Initial worker pool
 
16:45:09,592 DEBUG [paste.httpserver.ThreadPool] Started new worker 139960249084176: Initial worker pool
 
16:45:09,593 DEBUG [paste.httpserver.ThreadPool] Started new worker 139960240691472: Initial worker pool
 
16:45:09,593 DEBUG [paste.httpserver.ThreadPool] Started new worker 139960223906064: Initial worker pool
 
16:45:09,593 DEBUG [paste.httpserver.ThreadPool] Started new worker 139960232298768: Initial worker pool
 
16:45:19,919 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
16:45:19,962 DEBUG [pylons.configuration] Pushing process configuration
 
16:45:19,978 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
16:45:19,979 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
16:45:19,982 DEBUG [pylons.templating] Initialized Buffet object
 
16:45:19,983 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
16:45:19,983 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
16:45:19,985 DEBUG [paste.httpserver.ThreadPool] Started new worker 140538952722704: Initial worker pool
 
16:45:19,985 DEBUG [paste.httpserver.ThreadPool] Started new worker 140538944330000: Initial worker pool
 
16:45:19,985 DEBUG [paste.httpserver.ThreadPool] Started new worker 140538935937296: Initial worker pool
 
16:45:19,986 DEBUG [paste.httpserver.ThreadPool] Started new worker 140538927544592: Initial worker pool
 
16:45:19,986 DEBUG [paste.httpserver.ThreadPool] Started new worker 140538919151888: Initial worker pool
 
16:45:19,986 DEBUG [paste.httpserver.ThreadPool] Started new worker 140538910759184: Initial worker pool
 
16:45:19,986 DEBUG [paste.httpserver.ThreadPool] Started new worker 140538902366480: Initial worker pool
 
16:45:19,986 DEBUG [paste.httpserver.ThreadPool] Started new worker 140538893973776: Initial worker pool
 
16:45:19,987 DEBUG [paste.httpserver.ThreadPool] Started new worker 140538885581072: Initial worker pool
 
16:45:19,987 DEBUG [paste.httpserver.ThreadPool] Started new worker 140538877188368: Initial worker pool
 
16:45:23,283 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:45:23,286 DEBUG [routes.middleware] Matched GET /lotto
 
16:45:23,286 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:45:23,286 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:45:23,287 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:45:23,288 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:45:23,424 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
16:45:23,424 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:45:23,424 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:45:23,424 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:45:23,424 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3357cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x33587d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3358490>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3358350>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x33587d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x31f1a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507923.425257, '_creation_time': 1266507923.425257}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3358350>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x327cf50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:45:24,443 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:45:24,450 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:45:24,457 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:45:24,458 DEBUG [routes.middleware] Matched GET /lotto
 
16:45:24,458 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:45:24,458 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:45:24,458 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:45:24,459 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:45:24,459 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:45:24,459 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:45:24,459 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:45:24,459 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3b2eb18>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x395f4d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3957c10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x33583d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x395f4d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x31f1ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507924.4599099, '_creation_time': 1266507924.4599099}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x33583d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3358050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:45:25,364 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:45:25,413 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:45:25,417 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:45:25,420 DEBUG [routes.middleware] Matched GET /lotto
 
16:45:25,420 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:45:25,421 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:45:25,421 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:45:25,422 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:45:25,423 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:45:25,423 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:45:25,423 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:45:25,424 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3b34b18>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3b14cd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3b14550>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3957f10>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3b14cd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x37c28d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507925.4250031, '_creation_time': 1266507925.4250031}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3957f10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3957e90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:45:26,346 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:45:26,347 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:45:26,349 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:45:26,350 DEBUG [routes.middleware] Matched GET /lotto
 
16:45:26,350 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:45:26,350 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:45:26,350 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:45:26,351 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:45:26,351 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:45:26,351 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:45:26,351 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:45:26,351 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3b07ed8>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x395fa50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x395f3d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x395fdd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x395fa50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x3b18650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266507926.351747, '_creation_time': 1266507926.351747}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x395fdd0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3b03dd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:45:27,359 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:45:39,629 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:47:07,087 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:47:07,090 DEBUG [routes.middleware] Matched GET /test2/summary
 
16:47:07,090 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:47:07,090 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test2/summary'}
 
16:47:07,091 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:47:07,091 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:47:07,091 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:47:07,091 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:47:07,092 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:47:07,092 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3df9cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test2/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test2/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test2/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e03890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e037d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x395fe10>, {'action': u'view', 'controller': u'hg', 'path_info': 'test2/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e03890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x3bb95d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508027.0924809, '_creation_time': 1266508027.0924809}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x395fe10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d04b90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:47:08,050 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
16:47:08,052 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:47:08,052 DEBUG [routes.middleware] Matched GET /error/document
 
16:47:08,052 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
16:47:08,053 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
16:47:08,053 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:47:08,053 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
16:47:08,054 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
16:47:08,054 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:47:08,054 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:47:08,054 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
16:47:08,054 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
16:47:08,054 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3e0a710 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x2db5758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x32675d0>, 'url': <routes.util.URLGenerator object at 0x3e0af10>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3e0aad0 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3e0a710 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3e050e0>, 'session': {'_accessed_time': 1266508028.0550189, '_creation_time': 1266508027.0924809}, 'N_': <function gettext_noop at 0x2db5410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x32675d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x3267390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x32675d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3e0ab10 200 OK>, '_': <function ugettext at 0x2db5578>}
 
16:47:08,055 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
16:47:08,056 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
16:47:10,601 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:47:10,603 DEBUG [routes.middleware] Matched GET /
 
16:47:10,603 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:47:10,603 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:47:10,603 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:47:10,604 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:47:10,604 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:47:10,604 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:47:10,604 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:47:10,604 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e0bde8>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e58190>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e580d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e0ad90>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e58190>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x3bb9650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508030.6049919, '_creation_time': 1266508027.0924809}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e0ad90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e03690>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:47:11,066 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:47:11,113 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
16:47:11,113 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:47:11,116 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
16:47:11,116 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:47:11,117 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:47:11,117 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:47:11,118 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:47:11,118 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:47:11,119 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3df9c80>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d04a10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e03a50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e03c50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d04a10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x3dcfed0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508031.1192989, '_creation_time': 1266508027.0924809}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e03c50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e03f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:47:12,259 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:47:12,588 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:47:12,610 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:47:12,641 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:47:12,679 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:47:12,694 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
16:47:12,694 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:47:12,694 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
16:47:12,695 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:47:12,695 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:47:12,695 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:47:12,695 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:47:12,695 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:47:12,695 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e0b488>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e0a810>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e0aa10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e58bd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e0a810>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x3bb97d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508032.6961589, '_creation_time': 1266508027.0924809}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e58bd0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e58e90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:47:13,628 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:47:13,628 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:47:15,633 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:47:15,634 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
16:47:15,634 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:47:15,635 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
16:47:15,635 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:47:15,635 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:47:15,635 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:47:15,636 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:47:15,636 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:47:15,636 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e62500>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d1b350>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d1b090>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d1b7d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d1b350>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x3bb96d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508035.636544, '_creation_time': 1266508027.0924809}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d1b7d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e58b90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:47:16,565 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:47:16,565 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:47:56,219 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:47:56,220 DEBUG [routes.middleware] Matched GET /lotto
 
16:47:56,220 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:47:56,220 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:47:56,220 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:47:56,221 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:47:56,221 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:47:56,221 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:47:56,221 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:47:56,221 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e629b0>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e03890>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d1bf10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d1b850>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e03890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x3bb95d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508076.2219729, '_creation_time': 1266508076.2219729}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d1b850>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e58fd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:47:57,149 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:47:57,150 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:47:57,157 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:47:57,158 DEBUG [routes.middleware] Matched GET /lotto
 
16:47:57,158 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:47:57,158 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:47:57,159 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:47:57,159 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:47:57,159 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:47:57,159 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:47:57,159 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:47:57,159 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e0be60>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d1be10>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d1b8d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d1bc90>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d1be10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x3dcff50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508077.160111, '_creation_time': 1266508077.160111}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d1bc90>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d1b810>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:47:58,105 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:47:58,107 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:47:58,108 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:47:58,109 DEBUG [routes.middleware] Matched GET /lotto
 
16:47:58,109 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:47:58,109 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:47:58,109 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:47:58,110 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:47:58,110 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:47:58,110 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:47:58,110 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:47:58,110 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e627d0>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e03a50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e03dd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d1b2d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e03a50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x3dcfed0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508078.1109829, '_creation_time': 1266508078.1109829}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d1b2d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d1bed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:47:59,039 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:47:59,040 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:47:59,042 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:47:59,043 DEBUG [routes.middleware] Matched GET /lotto
 
16:47:59,043 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:47:59,043 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:47:59,043 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:47:59,044 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:47:59,044 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:47:59,044 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:47:59,044 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:47:59,044 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3e62b90>, 'environ': {'routes.route': <routes.route.Route object at 0x3267550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3267810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3267790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e0a1d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e0a890>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e03d90>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e0a1d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3267850>, 'wsgi.input': <socket._fileobject object at 0x3bb97d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508079.0447071, '_creation_time': 1266508079.0447071}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e03d90>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d04cd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd1cab6e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x25b2550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:48:00,093 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:50:48,401 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
16:50:48,401 DEBUG [pylons.configuration] Pushing process configuration
 
16:50:48,405 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
16:50:48,405 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
16:50:48,408 DEBUG [pylons.templating] Initialized Buffet object
 
16:50:48,408 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
16:50:48,408 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
16:50:48,410 DEBUG [paste.httpserver.ThreadPool] Started new worker 140318044403984: Initial worker pool
 
16:50:48,411 DEBUG [paste.httpserver.ThreadPool] Started new worker 140318036011280: Initial worker pool
 
16:50:48,412 DEBUG [paste.httpserver.ThreadPool] Started new worker 140318027618576: Initial worker pool
 
16:50:48,412 DEBUG [paste.httpserver.ThreadPool] Started new worker 140318019225872: Initial worker pool
 
16:50:48,412 DEBUG [paste.httpserver.ThreadPool] Started new worker 140318010833168: Initial worker pool
 
16:50:48,412 DEBUG [paste.httpserver.ThreadPool] Started new worker 140318002440464: Initial worker pool
 
16:50:48,413 DEBUG [paste.httpserver.ThreadPool] Started new worker 140317994047760: Initial worker pool
 
16:50:48,413 DEBUG [paste.httpserver.ThreadPool] Started new worker 140317985655056: Initial worker pool
 
16:50:48,413 DEBUG [paste.httpserver.ThreadPool] Started new worker 140317977262352: Initial worker pool
 
16:50:48,413 DEBUG [paste.httpserver.ThreadPool] Started new worker 140317968869648: Initial worker pool
 
16:50:55,179 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:50:55,182 DEBUG [routes.middleware] Matched GET /lotto
 
16:50:55,182 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:50:55,182 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:50:55,182 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:50:55,183 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:50:55,234 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
16:50:55,234 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:50:55,235 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:50:55,235 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:50:55,235 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2e41cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x2d562d0>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2d56590>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d56510>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2e44550>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2e44210>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2d67fd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2e44550>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'wsgi.input': <socket._fileobject object at 0x2cdaa50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508255.2356739, '_creation_time': 1266508255.2356739}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2d67fd0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2d67cd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f9e5b9181c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20a0290>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:50:56,247 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:50:56,254 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:50:56,265 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:50:56,267 DEBUG [routes.middleware] Matched GET /lotto
 
16:50:56,267 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:50:56,267 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:50:56,267 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:50:56,268 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:50:56,268 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:50:56,268 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:50:56,268 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:50:56,268 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x35fdb18>, 'environ': {'routes.route': <routes.route.Route object at 0x2d562d0>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2d56590>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d56510>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x344ed90>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x344e410>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2e44150>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x344ed90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'wsgi.input': <socket._fileobject object at 0x2cdaad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508256.269136, '_creation_time': 1266508256.269136}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2e44150>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2d67d90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f9e5b9181c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20a0290>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:50:57,179 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:50:57,181 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:50:57,192 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:50:57,194 DEBUG [routes.middleware] Matched GET /lotto
 
16:50:57,194 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:50:57,194 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:50:57,194 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:50:57,195 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:50:57,195 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:50:57,195 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:50:57,195 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:50:57,195 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3676b18>, 'environ': {'routes.route': <routes.route.Route object at 0x2d562d0>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2d56590>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d56510>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3612090>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3612310>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x344e710>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3612090>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'wsgi.input': <socket._fileobject object at 0x32ac8d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508257.195956, '_creation_time': 1266508257.195956}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x344e710>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x344e690>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f9e5b9181c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20a0290>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:50:58,142 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:50:58,195 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:50:58,200 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:50:58,202 DEBUG [routes.middleware] Matched GET /lotto
 
16:50:58,202 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:50:58,203 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:50:58,204 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:50:58,205 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:50:58,205 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:50:58,205 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:50:58,206 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:50:58,206 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x35e8ed8>, 'environ': {'routes.route': <routes.route.Route object at 0x2d562d0>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2d56590>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d56510>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3601490>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3601890>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3601210>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3601490>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'wsgi.input': <socket._fileobject object at 0x3602650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508258.207397, '_creation_time': 1266508258.207397}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3601210>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3601690>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f9e5b9181c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20a0290>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:50:59,334 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:55:00,092 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:55:00,094 DEBUG [routes.middleware] Matched GET /lotto
 
16:55:00,094 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:55:00,094 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:55:00,095 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:55:00,095 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:55:00,095 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:55:00,095 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:55:00,095 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:55:00,096 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x37f6320>, 'environ': {'routes.route': <routes.route.Route object at 0x2d562d0>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2d56590>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d56510>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37eea50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37ee990>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3601310>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37eea50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'wsgi.input': <socket._fileobject object at 0x36d95d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508500.0962839, '_creation_time': 1266508500.0962839}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3601310>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37ee510>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f9e5b9181c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20a0290>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:55:01,013 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:55:01,015 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:55:01,034 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:55:01,035 DEBUG [routes.middleware] Matched GET /lotto
 
16:55:01,035 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:55:01,035 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:55:01,036 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:55:01,036 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:55:01,036 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:55:01,036 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:55:01,037 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:55:01,037 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x37f6c80>, 'environ': {'routes.route': <routes.route.Route object at 0x2d562d0>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2d56590>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d56510>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37fae50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37fa850>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37fab10>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37fae50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'wsgi.input': <socket._fileobject object at 0x36d9650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508501.0374401, '_creation_time': 1266508501.0374401}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37fab10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37ee7d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f9e5b9181c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20a0290>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:55:01,955 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:55:01,956 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:55:01,957 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:55:01,958 DEBUG [routes.middleware] Matched GET /lotto
 
16:55:01,958 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:55:01,958 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:55:01,958 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:55:01,959 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:55:01,959 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:55:01,959 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:55:01,959 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:55:01,959 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x37f68c0>, 'environ': {'routes.route': <routes.route.Route object at 0x2d562d0>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2d56590>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d56510>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x36d7cd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x32bc910>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37fac50>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x36d7cd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'wsgi.input': <socket._fileobject object at 0x36d9850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508501.960047, '_creation_time': 1266508501.960047}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37fac50>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37fa950>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f9e5b9181c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20a0290>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:55:02,870 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:55:02,871 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:55:02,873 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:55:02,873 DEBUG [routes.middleware] Matched GET /lotto
 
16:55:02,874 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:55:02,874 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:55:02,874 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:55:02,874 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:55:02,874 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:55:02,874 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:55:02,875 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:55:02,875 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x381a230>, 'environ': {'routes.route': <routes.route.Route object at 0x2d562d0>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2d56590>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d56510>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37eedd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37ee6d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37fa050>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37eedd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2d565d0>, 'wsgi.input': <socket._fileobject object at 0x36d94d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508502.8754489, '_creation_time': 1266508502.8754489}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37fa050>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37fa650>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f9e5b9181c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20a0290>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:55:03,777 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:55:42,231 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
16:55:42,232 DEBUG [pylons.configuration] Pushing process configuration
 
16:55:42,235 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
16:55:42,235 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
16:55:42,239 DEBUG [pylons.templating] Initialized Buffet object
 
16:55:42,239 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
16:55:42,239 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
16:55:42,241 DEBUG [paste.httpserver.ThreadPool] Started new worker 139805864663312: Initial worker pool
 
16:55:42,242 DEBUG [paste.httpserver.ThreadPool] Started new worker 139805856270608: Initial worker pool
 
16:55:42,242 DEBUG [paste.httpserver.ThreadPool] Started new worker 139805847877904: Initial worker pool
 
16:55:42,242 DEBUG [paste.httpserver.ThreadPool] Started new worker 139805839485200: Initial worker pool
 
16:55:42,242 DEBUG [paste.httpserver.ThreadPool] Started new worker 139805831092496: Initial worker pool
 
16:55:42,243 DEBUG [paste.httpserver.ThreadPool] Started new worker 139805822699792: Initial worker pool
 
16:55:42,243 DEBUG [paste.httpserver.ThreadPool] Started new worker 139805814307088: Initial worker pool
 
16:55:42,243 DEBUG [paste.httpserver.ThreadPool] Started new worker 139805805914384: Initial worker pool
 
16:55:42,243 DEBUG [paste.httpserver.ThreadPool] Started new worker 139805797521680: Initial worker pool
 
16:55:42,244 DEBUG [paste.httpserver.ThreadPool] Started new worker 139805789128976: Initial worker pool
 
16:55:51,957 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:55:51,966 DEBUG [routes.middleware] Matched GET /lotto/
 
16:55:51,966 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:55:51,966 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/'}
 
16:55:51,966 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:55:51,967 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:55:52,019 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
16:55:52,019 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:55:52,019 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:55:52,019 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:55:52,019 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x26dcd70>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x26dd950>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x26dd610>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x26dd4d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x26dd950>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2575a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508552.0201659, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x26dd4d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x26dd090>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:55:53,050 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:55:53,143 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:55:53,188 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:55:53,189 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
16:55:53,190 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:55:53,190 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
16:55:53,190 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:55:53,191 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:55:53,191 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:55:53,191 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:55:53,191 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:55:53,191 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2ebb8c0>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2ea3510>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2e98e50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x26dd550>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2ea3510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2575bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508553.1918819, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x26dd550>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x26dd350>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:55:54,106 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:55:54,106 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:55:56,266 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:55:56,270 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
16:55:56,271 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:55:56,271 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
16:55:56,273 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:55:56,274 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:55:56,274 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:55:56,274 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:55:56,275 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:55:56,275 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2eb57d0>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2e98ed0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2e986d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2d0d0d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2e98ed0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2575ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508556.276387, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2d0d0d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2e98550>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:55:57,170 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:55:57,171 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:55:57,329 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:55:57,330 DEBUG [routes.middleware] Matched GET /lotto/file/cfbb47c42aab
 
16:55:57,331 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:55:57,331 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/file/cfbb47c42aab'}
 
16:55:57,332 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:55:57,333 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:55:57,333 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:55:57,333 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:55:57,334 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:55:57,334 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2eb5cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/file/cfbb47c42aab'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto/file/cfbb47c42aab', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2ea3a90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ea3d50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2d0da90>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/file/cfbb47c42aab'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2ea3a90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2ce6e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508557.334729, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2d0da90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2e98210>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:55:58,229 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:55:58,305 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:55:58,342 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:55:58,343 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
16:55:58,344 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:55:58,344 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
16:55:58,344 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:55:58,345 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:55:58,345 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:55:58,345 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:55:58,345 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:55:58,346 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2ebb938>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/file/cfbb47c42aab', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2cf5bd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ecec50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2d00250>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2cf5bd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2d25a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508558.3463271, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2d00250>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ece810>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:55:59,238 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:55:59,239 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:56:01,333 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:56:01,334 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
16:56:01,334 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:56:01,334 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
16:56:01,334 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:56:01,335 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:56:01,335 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:56:01,335 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:56:01,335 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:56:01,335 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2eb5e60>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2ea3550>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ea3950>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2ea39d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2ea3550>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2d25650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508561.3358159, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2ea39d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ea3b50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:56:02,283 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:56:02,283 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:56:02,648 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:56:02,650 DEBUG [routes.middleware] Matched GET /lotto/file/cfbb47c42aab/src
 
16:56:02,651 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:56:02,651 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/file/cfbb47c42aab/src'}
 
16:56:02,652 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:56:02,653 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:56:02,653 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:56:02,653 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:56:02,654 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:56:02,654 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2ed01b8>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/file/cfbb47c42aab', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/file/cfbb47c42aab/src'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto/file/cfbb47c42aab/src', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2d00e90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2d00290>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2e98c50>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/file/cfbb47c42aab/src'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2d00e90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2e9e650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508562.6547511, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2e98c50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2cf5610>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:56:03,571 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:56:03,579 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:56:03,627 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:56:03,629 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
16:56:03,629 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:56:03,630 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
16:56:03,630 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:56:03,630 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:56:03,630 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:56:03,630 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:56:03,630 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:56:03,631 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2ed0e60>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/file/cfbb47c42aab/src', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2eacf90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2eac0d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2e98210>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2eacf90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2d25650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508563.6313429, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2e98210>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2eac550>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:56:04,588 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:56:04,589 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:56:06,092 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:56:06,094 DEBUG [routes.middleware] Matched GET /lotto/file/cfbb47c42aab/src/combinator.py
 
16:56:06,094 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:56:06,094 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/file/cfbb47c42aab/src/combinator.py'}
 
16:56:06,095 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:56:06,095 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:56:06,095 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:56:06,095 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:56:06,096 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:56:06,096 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2ec8488>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/file/cfbb47c42aab/src', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/file/cfbb47c42aab/src/combinator.py'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto/file/cfbb47c42aab/src/combinator.py', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2ed7b50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ed7990>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2cf5ad0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/file/cfbb47c42aab/src/combinator.py'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2ed7b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2ce6e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508566.0964501, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2cf5ad0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2d07690>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:56:06,635 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:56:06,674 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
16:56:06,674 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:56:06,674 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
16:56:06,675 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:56:06,675 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:56:06,675 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:56:06,675 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:56:06,675 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:56:06,676 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2ec8938>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2fbf7d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2fbf710>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fbf4d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2fbf7d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2e9ed50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508566.6762421, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fbf4d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2fbf390>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:56:07,369 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:56:07,676 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:56:08,051 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:56:08,056 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:56:08,231 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
16:56:08,235 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:56:08,236 DEBUG [routes.middleware] Matched GET /lotto/highlightcss
 
16:56:08,311 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:56:08,236 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
16:56:08,311 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/highlightcss'}
 
16:56:08,329 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:56:08,330 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:56:08,330 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:56:08,330 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:56:08,330 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:56:08,330 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x31e62a8>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/file/cfbb47c42aab/src/combinator.py', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2fc7210>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ece390>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x26dd490>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2fc7210>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2e9ef50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508568.331146, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x26dd490>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2d00590>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:56:08,329 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:56:08,356 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:56:08,356 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:56:08,356 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:56:08,356 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:56:08,357 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2ec82a8>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/file/cfbb47c42aab/src/combinator.py', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/highlightcss'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto/highlightcss', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3280b10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2600ed0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2eacd50>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/highlightcss'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3280b10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x32090d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508568.35726, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2eacd50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3207510>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:56:08,543 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:56:08,711 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:56:09,948 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:56:09,948 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:56:10,560 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:56:10,564 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:56:10,719 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:56:10,726 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
16:56:10,726 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:56:10,727 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
16:56:10,728 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:56:10,730 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:56:10,730 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:56:10,730 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:56:10,731 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:56:10,731 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3047500>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3280bd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3280190>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3215f10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3280bd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2575bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508570.732224, '_creation_time': 1266508552.0201659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3215f10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3186e10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
16:56:11,689 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:56:11,690 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:59:42,494 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:59:42,495 DEBUG [routes.middleware] Matched GET /lotto
 
16:59:42,496 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:59:42,496 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:59:42,496 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:59:42,497 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:59:42,497 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:59:42,497 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:59:42,497 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:59:42,497 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3013f50>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2fbf690>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2fbffd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fbf910>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2fbf690>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2fc3f50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508782.4977491, '_creation_time': 1266508782.4977491}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fbf910>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2fbfe10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:59:43,437 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:59:43,438 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:59:43,445 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:59:43,446 DEBUG [routes.middleware] Matched GET /lotto
 
16:59:43,446 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:59:43,446 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:59:43,446 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:59:43,447 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:59:43,447 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:59:43,447 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:59:43,447 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:59:43,447 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x31e6aa0>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2fc7050>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2fc73d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fbf550>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2fc7050>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2fc3550 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508783.4480641, '_creation_time': 1266508783.4480641}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fbf550>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2fbf790>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:59:44,382 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:59:44,384 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:59:44,385 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:59:44,386 DEBUG [routes.middleware] Matched GET /lotto
 
16:59:44,386 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:59:44,386 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:59:44,386 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:59:44,387 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:59:44,387 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:59:44,387 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:59:44,387 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:59:44,387 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2ed0cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2cf5d90>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2cf5790>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fc7150>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2cf5d90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2fc3050 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508784.3879361, '_creation_time': 1266508784.3879361}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fc7150>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2fc7410>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:59:45,276 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:59:45,278 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:59:45,288 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:59:45,290 DEBUG [routes.middleware] Matched GET /lotto
 
16:59:45,290 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:59:45,290 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:59:45,290 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:59:45,291 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:59:45,291 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:59:45,291 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:59:45,291 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:59:45,291 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3047848>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x32fd5d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x32fd450>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2cf5a50>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x32fd5d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x2e9e550 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508785.292109, '_creation_time': 1266508785.292109}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2cf5a50>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3186c10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:59:46,206 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:59:50,196 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:59:50,197 DEBUG [routes.middleware] Matched GET /lotto
 
16:59:50,197 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:59:50,198 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:59:50,198 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:59:50,198 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:59:50,198 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:59:50,198 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:59:50,199 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:59:50,199 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x31ed5f0>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31eb8d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31eb850>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x32fd310>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31eb8d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x3209dd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508790.199517, '_creation_time': 1266508790.199517}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x32fd310>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x31eb490>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:59:51,230 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:59:51,282 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:59:51,289 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:59:51,290 DEBUG [routes.middleware] Matched GET /lotto
 
16:59:51,290 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:59:51,290 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:59:51,290 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:59:51,290 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:59:51,291 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:59:51,291 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:59:51,291 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:59:51,291 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x31ed9b0>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31ee310>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31ee190>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x321c710>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31ee310>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x3209e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508791.2916629, '_creation_time': 1266508791.2916629}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x321c710>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x321c8d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:59:52,212 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:59:52,213 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:59:52,215 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:59:52,216 DEBUG [routes.middleware] Matched GET /lotto
 
16:59:52,216 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:59:52,216 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:59:52,216 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:59:52,217 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:59:52,217 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:59:52,217 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:59:52,217 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:59:52,217 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x320d398>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31f4c50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31f43d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x31eefd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31f4c50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x3209cd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508792.218087, '_creation_time': 1266508792.218087}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x31eefd0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x321c750>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:59:53,259 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
16:59:53,261 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
16:59:53,262 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
16:59:53,263 DEBUG [routes.middleware] Matched GET /lotto
 
16:59:53,263 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
16:59:53,263 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
16:59:53,264 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
16:59:53,264 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
16:59:53,264 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
16:59:53,264 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
16:59:53,264 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
16:59:53,265 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x31edd70>, 'environ': {'routes.route': <routes.route.Route object at 0x25eb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x25eb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x25eb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31ee550>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31ee3d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2d07fd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31ee550>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x25eb850>, 'wsgi.input': <socket._fileobject object at 0x31f9350 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508793.2652979, '_creation_time': 1266508793.2652979}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2d07fd0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x31ee750>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f271b42d1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1936550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
16:59:54,298 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:00:15,766 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:00:15,767 DEBUG [pylons.configuration] Pushing process configuration
 
17:00:15,770 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:00:15,770 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:00:15,774 DEBUG [pylons.templating] Initialized Buffet object
 
17:00:15,774 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:00:15,774 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
17:00:15,776 DEBUG [paste.httpserver.ThreadPool] Started new worker 140248731531536: Initial worker pool
 
17:00:15,776 DEBUG [paste.httpserver.ThreadPool] Started new worker 140248723138832: Initial worker pool
 
17:00:15,777 DEBUG [paste.httpserver.ThreadPool] Started new worker 140248714746128: Initial worker pool
 
17:00:15,777 DEBUG [paste.httpserver.ThreadPool] Started new worker 140248706353424: Initial worker pool
 
17:00:15,777 DEBUG [paste.httpserver.ThreadPool] Started new worker 140248697960720: Initial worker pool
 
17:00:15,777 DEBUG [paste.httpserver.ThreadPool] Started new worker 140248689568016: Initial worker pool
 
17:00:15,778 DEBUG [paste.httpserver.ThreadPool] Started new worker 140248681175312: Initial worker pool
 
17:00:15,778 DEBUG [paste.httpserver.ThreadPool] Started new worker 140248672782608: Initial worker pool
 
17:00:15,778 DEBUG [paste.httpserver.ThreadPool] Started new worker 140248664389904: Initial worker pool
 
17:00:15,778 DEBUG [paste.httpserver.ThreadPool] Started new worker 140248655997200: Initial worker pool
 
17:00:17,354 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:00:17,357 DEBUG [routes.middleware] Matched GET /lotto
 
17:00:17,357 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:00:17,357 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
17:00:17,357 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:00:17,358 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:00:17,410 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:00:17,410 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:00:17,411 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:00:17,411 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:00:17,411 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1c66cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x1b75550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1b75810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1b75790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1c677d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1b75850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1c67490>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1c67350>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1c677d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1b75850>, 'wsgi.input': <socket._fileobject object at 0x1affa50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508817.4117, '_creation_time': 1266508817.4117}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1c67350>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1b8af50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8e382ef1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xebf550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:00:18,356 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:00:18,363 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:00:18,370 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:00:18,371 DEBUG [routes.middleware] Matched GET /lotto
 
17:00:18,371 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:00:18,371 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
17:00:18,371 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:00:18,372 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:00:18,372 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:00:18,372 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:00:18,372 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:00:18,372 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x243bb18>, 'environ': {'routes.route': <routes.route.Route object at 0x1b75550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1b75810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1b75790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x226b390>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1b75850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2263f10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1c673d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x226b390>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1b75850>, 'wsgi.input': <socket._fileobject object at 0x1affad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508818.372875, '_creation_time': 1266508818.372875}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1c673d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1c67050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8e382ef1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xebf550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:00:19,266 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:00:19,267 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:00:19,269 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:00:19,270 DEBUG [routes.middleware] Matched GET /lotto
 
17:00:19,320 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:00:19,320 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
17:00:19,321 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:00:19,322 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:00:19,323 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:00:19,323 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:00:19,323 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:00:19,324 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2440b18>, 'environ': {'routes.route': <routes.route.Route object at 0x1b75550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1b75810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1b75790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2421490>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1b75850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2421bd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2263e90>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2421490>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1b75850>, 'wsgi.input': <socket._fileobject object at 0x20d08d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508819.3250141, '_creation_time': 1266508819.3250141}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2263e90>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2263e10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8e382ef1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xebf550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:00:20,231 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:00:20,233 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:00:20,235 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:00:20,236 DEBUG [routes.middleware] Matched GET /lotto
 
17:00:20,236 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:00:20,237 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
17:00:20,237 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:00:20,237 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:00:20,237 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:00:20,238 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:00:20,238 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:00:20,238 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2412cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x1b75550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1b75810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1b75790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x226bfd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1b75850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x226b490>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2418dd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x226bfd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1b75850>, 'wsgi.input': <socket._fileobject object at 0x2425650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508820.2385931, '_creation_time': 1266508820.2385931}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2418dd0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2418b90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8e382ef1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xebf550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:00:21,143 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:00:32,623 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:00:32,623 DEBUG [pylons.configuration] Pushing process configuration
 
17:00:32,626 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:00:32,626 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:00:32,630 DEBUG [pylons.templating] Initialized Buffet object
 
17:00:32,631 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:00:32,631 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
17:00:32,633 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724460628240: Initial worker pool
 
17:00:32,634 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724452235536: Initial worker pool
 
17:00:32,634 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724443842832: Initial worker pool
 
17:00:32,634 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724435450128: Initial worker pool
 
17:00:32,634 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724427057424: Initial worker pool
 
17:00:32,635 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724418664720: Initial worker pool
 
17:00:32,635 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724410272016: Initial worker pool
 
17:00:32,635 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724401879312: Initial worker pool
 
17:00:32,635 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724393486608: Initial worker pool
 
17:00:32,636 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724385093904: Initial worker pool
 
17:01:54,515 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:01:54,517 DEBUG [routes.middleware] Matched GET /lotto
 
17:01:54,518 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:01:54,518 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
17:01:54,518 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:01:54,519 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:01:54,587 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:01:54,588 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:01:54,588 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:01:54,588 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:01:54,588 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2c44cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x2b53550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2b53810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b53790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c467d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b53850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2c46490>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c46350>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c467d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b53850>, 'wsgi.input': <socket._fileobject object at 0x2adda50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508914.588762, '_creation_time': 1266508914.588762}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c46350>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2b68f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffcfbd8e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e9d550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:01:55,543 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:01:55,551 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:01:55,565 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:01:55,569 DEBUG [routes.middleware] Matched GET /lotto
 
17:01:55,570 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:01:55,570 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
17:01:55,570 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:01:55,570 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:01:55,571 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:01:55,571 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:01:55,571 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:01:55,571 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x340ab18>, 'environ': {'routes.route': <routes.route.Route object at 0x2b53550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2b53810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b53790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31c19d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b53850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31c1210>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c463d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31c19d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b53850>, 'wsgi.input': <socket._fileobject object at 0x2addad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508915.5718961, '_creation_time': 1266508915.5718961}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c463d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2b68fd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffcfbd8e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e9d550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:01:56,469 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:01:56,470 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:01:56,471 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:01:56,473 DEBUG [routes.middleware] Matched GET /lotto
 
17:01:56,473 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:01:56,473 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
17:01:56,473 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:01:56,473 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:01:56,474 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:01:56,474 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:01:56,474 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:01:56,474 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3421b18>, 'environ': {'routes.route': <routes.route.Route object at 0x2b53550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2b53810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b53790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3400d50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b53850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3400290>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x31bbc90>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3400d50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b53850>, 'wsgi.input': <socket._fileobject object at 0x30ae8d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508916.4746571, '_creation_time': 1266508916.4746571}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x31bbc90>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x31bbf90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffcfbd8e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e9d550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:01:57,397 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:01:57,399 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:01:57,401 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:01:57,402 DEBUG [routes.middleware] Matched GET /lotto
 
17:01:57,402 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:01:57,402 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}
 
17:01:57,402 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:01:57,403 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:01:57,403 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:01:57,403 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:01:57,403 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:01:57,403 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x33f2ed8>, 'environ': {'routes.route': <routes.route.Route object at 0x2b53550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2b53810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b53790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31c1cd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b53850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31c1590>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x31c1250>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31c1cd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b53850>, 'wsgi.input': <socket._fileobject object at 0x3407650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266508917.4037271, '_creation_time': 1266508917.4037271}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x31c1250>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x33f1c10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffcfbd8e1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e9d550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:01:58,454 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:02:08,872 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:09:01,570 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:09:01,570 DEBUG [pylons.configuration] Pushing process configuration
 
17:09:01,574 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:09:01,574 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:09:01,578 DEBUG [pylons.templating] Initialized Buffet object
 
17:09:01,578 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:09:01,580 DEBUG [paste.httpserver.ThreadPool] Started new worker 140395680250128: Initial worker pool
 
17:09:01,580 DEBUG [paste.httpserver.ThreadPool] Started new worker 140395671857424: Initial worker pool
 
17:09:01,580 DEBUG [paste.httpserver.ThreadPool] Started new worker 140395663464720: Initial worker pool
 
17:09:01,581 DEBUG [paste.httpserver.ThreadPool] Started new worker 140395655072016: Initial worker pool
 
17:09:01,581 DEBUG [paste.httpserver.ThreadPool] Started new worker 140395646679312: Initial worker pool
 
17:09:01,581 DEBUG [paste.httpserver.ThreadPool] Started new worker 140395638286608: Initial worker pool
 
17:09:01,582 DEBUG [paste.httpserver.ThreadPool] Started new worker 140395629893904: Initial worker pool
 
17:09:01,582 DEBUG [paste.httpserver.ThreadPool] Started new worker 140395621501200: Initial worker pool
 
17:09:01,582 DEBUG [paste.httpserver.ThreadPool] Started new worker 140395613108496: Initial worker pool
 
17:09:01,582 DEBUG [paste.httpserver.ThreadPool] Started new worker 140395604715792: Initial worker pool
 
17:09:13,210 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:09:13,213 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:09:13,214 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:09:13,292 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:09:13,292 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:09:13,292 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:09:13,292 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:09:13,293 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3612cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x3521450>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3521710>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3521690>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3613750>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3613410>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3613210>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3613750>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'wsgi.input': <socket._fileobject object at 0x34aba50 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266509353.2937641, '_creation_time': 1266509353.2937641}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3613210>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3537ed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fb06f0271c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x286f510>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:09:14,265 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:09:14,273 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:09:14,287 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:09:14,288 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:09:14,288 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:09:14,288 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:09:14,288 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:09:14,288 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:09:14,288 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3de8b18>, 'environ': {'routes.route': <routes.route.Route object at 0x3521450>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3521710>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3521690>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3c18110>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3c10e90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3613350>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3c18110>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'wsgi.input': <socket._fileobject object at 0x34abad0 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266509354.289202, '_creation_time': 1266509354.289202}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3613350>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3537f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fb06f0271c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x286f510>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:09:15,217 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:09:15,218 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:09:15,220 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:09:15,221 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:09:15,221 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:09:15,222 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:09:15,222 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:09:15,222 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:09:15,222 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3decb18>, 'environ': {'routes.route': <routes.route.Route object at 0x3521450>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3521710>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3521690>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3dce450>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3dceb90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3c10e10>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3dce450>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'wsgi.input': <socket._fileobject object at 0x3a7c8d0 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266509355.22363, '_creation_time': 1266509355.22363}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3c10e10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3c10d90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fb06f0271c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x286f510>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:09:16,288 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:09:16,289 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:09:16,291 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:09:16,292 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:09:16,292 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:09:16,292 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:09:16,292 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:09:16,292 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:09:16,292 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3dbfed8>, 'environ': {'routes.route': <routes.route.Route object at 0x3521450>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3521710>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3521690>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3c189d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3c188d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3dc5bd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3c189d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'wsgi.input': <socket._fileobject object at 0x3dd2650 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266509356.2930069, '_creation_time': 1266509356.2930069}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3dc5bd0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3dc5f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fb06f0271c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x286f510>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:09:17,312 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:09:24,750 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:09:24,863 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:09:24,865 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:09:24,866 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:09:24,866 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:09:24,866 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:09:24,866 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:09:24,866 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40b3c80>, 'environ': {'routes.route': <routes.route.Route object at 0x3521450>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'favicon.ico'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3521690>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/favicon.ico', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40bc7d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3521710>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40bc710>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3613290>, {'action': u'view', 'controller': u'hg', 'path_info': 'favicon.ico'}), 'SERVER_PORT': '8001', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40bc7d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'wsgi.input': <socket._fileobject object at 0x3e715d0 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266509364.8668461, '_creation_time': 1266509364.8668461}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3613290>, 'HTTP_ACCEPT': 'image/png,image/*;q=0.8,*/*;q=0.5', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3fbbb10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fb06f0271c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x286f510>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:09:25,759 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
17:09:25,761 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:09:25,762 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:09:25,762 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:09:25,762 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
17:09:25,763 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:09:25,763 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:09:25,763 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:09:25,763 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:09:25,763 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x40c3650 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:8001', url_redirect='/'>, 'ungettext': <function ungettext at 0x306f758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x35214d0>, 'url': <routes.util.URLGenerator object at 0x40c3350>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x40c3810 GET http://127.0.0.1:8001//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x40c3650 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:8001', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x40c50e0>, 'session': {'_accessed_time': 1266509365.7637401, '_creation_time': 1266509364.8668461}, 'N_': <function gettext_noop at 0x306f410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x35214d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/production.ini', 'routes.map': <routes.mapper.Mapper object at 0x3521290>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x35214d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/production.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x40c3a50 200 OK>, '_': <function ugettext at 0x306f578>}
 
17:09:25,764 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:09:25,764 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:09:27,868 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:09:27,890 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:09:27,891 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:09:27,891 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:09:27,891 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:09:27,891 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:09:27,891 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40c4de8>, 'environ': {'routes.route': <routes.route.Route object at 0x3521450>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'favicon.ico'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3521690>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/favicon.ico', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40d1110>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3521710>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40d1050>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40c3cd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'favicon.ico'}), 'SERVER_PORT': '8001', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40d1110>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3521750>, 'wsgi.input': <socket._fileobject object at 0x3e71650 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266509367.8918109, '_creation_time': 1266509364.8668461}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40c3cd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40c3f10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fb06f0271c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x286f510>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:09:28,841 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
17:09:28,843 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:09:28,843 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:09:28,844 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:09:28,844 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:09:28,844 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:09:28,844 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:09:28,844 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:09:28,844 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3fbba10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:8001', url_redirect='/'>, 'ungettext': <function ungettext at 0x306f758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x35214d0>, 'url': <routes.util.URLGenerator object at 0x40bc650>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x40bc5d0 GET http://127.0.0.1:8001//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3fbba10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:8001', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3fc65f0>, 'session': {'_accessed_time': 1266509368.8447909, '_creation_time': 1266509364.8668461}, 'N_': <function gettext_noop at 0x306f410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x35214d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/production.ini', 'routes.map': <routes.mapper.Mapper object at 0x3521290>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x35214d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/production.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3fbbb50 200 OK>, '_': <function ugettext at 0x306f578>}
 
17:09:28,845 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:09:28,845 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:10:39,679 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:10:39,680 DEBUG [pylons.configuration] Pushing process configuration
 
17:10:39,684 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:10:39,684 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:10:39,688 DEBUG [pylons.templating] Initialized Buffet object
 
17:10:39,689 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:10:39,689 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
17:10:39,692 DEBUG [paste.httpserver.ThreadPool] Started new worker 140533335587088: Initial worker pool
 
17:10:39,692 DEBUG [paste.httpserver.ThreadPool] Started new worker 140533327194384: Initial worker pool
 
17:10:39,692 DEBUG [paste.httpserver.ThreadPool] Started new worker 140533318801680: Initial worker pool
 
17:10:39,693 DEBUG [paste.httpserver.ThreadPool] Started new worker 140533310408976: Initial worker pool
 
17:10:39,693 DEBUG [paste.httpserver.ThreadPool] Started new worker 140533302016272: Initial worker pool
 
17:10:39,693 DEBUG [paste.httpserver.ThreadPool] Started new worker 140533293623568: Initial worker pool
 
17:10:39,693 DEBUG [paste.httpserver.ThreadPool] Started new worker 140533285230864: Initial worker pool
 
17:10:39,694 DEBUG [paste.httpserver.ThreadPool] Started new worker 140533276838160: Initial worker pool
 
17:10:39,694 DEBUG [paste.httpserver.ThreadPool] Started new worker 140533268445456: Initial worker pool
 
17:10:39,694 DEBUG [paste.httpserver.ThreadPool] Started new worker 140533260052752: Initial worker pool
 
17:14:14,435 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:14:14,436 DEBUG [pylons.configuration] Pushing process configuration
 
17:14:14,439 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:14:14,439 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:14:14,443 DEBUG [pylons.templating] Initialized Buffet object
 
17:14:14,443 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:14:14,443 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
17:14:14,445 DEBUG [paste.httpserver.ThreadPool] Started new worker 140649406875920: Initial worker pool
 
17:14:14,446 DEBUG [paste.httpserver.ThreadPool] Started new worker 140649398483216: Initial worker pool
 
17:14:14,446 DEBUG [paste.httpserver.ThreadPool] Started new worker 140649390090512: Initial worker pool
 
17:14:14,446 DEBUG [paste.httpserver.ThreadPool] Started new worker 140649381697808: Initial worker pool
 
17:14:14,447 DEBUG [paste.httpserver.ThreadPool] Started new worker 140649373305104: Initial worker pool
 
17:14:14,447 DEBUG [paste.httpserver.ThreadPool] Started new worker 140649364912400: Initial worker pool
 
17:14:14,447 DEBUG [paste.httpserver.ThreadPool] Started new worker 140649356519696: Initial worker pool
 
17:14:14,447 DEBUG [paste.httpserver.ThreadPool] Started new worker 140649348126992: Initial worker pool
 
17:14:14,448 DEBUG [paste.httpserver.ThreadPool] Started new worker 140649339734288: Initial worker pool
 
17:14:14,448 DEBUG [paste.httpserver.ThreadPool] Started new worker 140649331341584: Initial worker pool
 
17:14:16,260 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:16,263 DEBUG [routes.middleware] Matched GET /
 
17:14:16,264 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:16,264 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:16,264 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:16,265 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:16,317 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:14:16,317 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:16,317 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:16,317 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:14:16,318 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x38b2d70>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x38b3890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x38b3550>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x38b3350>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x38b3890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x374ba50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509656.3183651, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x38b3350>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37d6f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:14:16,324 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:14:16,350 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:14:16,456 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:16,457 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:14:16,458 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:16,458 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:14:16,458 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:16,459 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:16,459 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:16,459 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:16,459 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:14:16,459 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d5ca28>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d5e5d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d5e510>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x38b3490>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d5e5d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x374bbd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509656.4598041, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x38b3490>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d4ef90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:14:16,465 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:14:16,465 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:14:19,688 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:19,690 DEBUG [routes.middleware] Matched GET /add/test1
 
17:14:19,690 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
17:14:19,691 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test1', 'controller': u'hg'}
 
17:14:19,691 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:19,691 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:19,691 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:19,691 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:19,691 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
17:14:19,692 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test1'}
 
17:14:19,747 INFO  [pylons_app.controllers.hg] test1 repo is free for creation
 
17:14:19,747 INFO  [pylons_app.controllers.hg] test1 repo is free for creation
 
17:14:19,747 INFO  [pylons_app.controllers.hg] creating repo test1 in /home/marcink/hg_test/test1
 
17:14:19,747 INFO  [pylons_app.controllers.hg] creating repo test1 in /home/marcink/hg_test/test1
 
17:14:19,753 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:14:19,753 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:14:22,459 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:22,460 DEBUG [routes.middleware] Matched GET /
 
17:14:22,460 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:22,460 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:22,461 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:22,461 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:22,461 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:22,461 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:22,462 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:14:22,462 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x4096758>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/add/test1', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d4ec10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d4e910>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d4ecd0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d4ec10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d13ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509662.46244, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d4ecd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d5ef90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:14:22,467 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:14:22,470 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:14:22,509 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:22,510 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:14:22,510 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:22,510 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:14:22,510 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:22,511 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:22,511 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:22,511 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:22,511 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:14:22,511 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40968c0>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e64690>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e64450>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d4e6d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e64690>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d13f50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509662.512095, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d4e6d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d4ee10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:14:22,517 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:14:22,517 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:14:24,822 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:24,825 DEBUG [routes.middleware] Matched GET /
 
17:14:24,826 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:24,826 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:24,827 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:24,828 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:24,829 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:24,829 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:24,829 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:14:24,830 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6140>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/add/test1', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4089dd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e73c90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d5f190>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4089dd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3e6cf50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509664.8310289, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x3d5f190>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d4e810>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:14:24,863 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:14:24,865 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:14:24,909 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:24,910 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:14:24,910 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:24,910 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:14:24,910 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:24,911 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:24,911 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:24,911 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:24,911 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:14:24,911 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6aa0>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4099dd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4099d10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e73b10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4099dd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3e6c7d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509664.912029, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x3e73b10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40998d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:14:24,917 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:14:24,917 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:14:48,762 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:48,764 DEBUG [routes.middleware] Matched GET /add/test1
 
17:14:48,764 DEBUG [routes.middleware] Route path: '/add/{new_repo:[a-z0-9\. _-]*}', defaults: {'action': u'add_repo', 'controller': u'hg'}
 
17:14:48,764 DEBUG [routes.middleware] Match dict: {'action': u'add_repo', 'new_repo': u'test1', 'controller': u'hg'}
 
17:14:48,764 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:48,765 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:48,765 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:48,765 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:48,765 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
17:14:48,765 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test1'}
 
17:14:48,768 INFO  [pylons_app.controllers.hg] test1 repo is free for creation
 
17:14:48,768 INFO  [pylons_app.controllers.hg] test1 repo is free for creation
 
17:14:48,768 INFO  [pylons_app.controllers.hg] creating repo test1 in /home/marcink/hg_test/test1
 
17:14:48,768 INFO  [pylons_app.controllers.hg] creating repo test1 in /home/marcink/hg_test/test1
 
17:14:48,928 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:14:48,929 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:14:49,915 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:49,919 DEBUG [routes.middleware] Matched GET /
 
17:14:49,919 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:49,919 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:49,919 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:49,920 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:49,920 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:49,920 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:49,920 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:14:49,920 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x4096aa0>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/add/test1', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4089650>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4089dd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40890d0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4089650>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3e6c7d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509689.921267, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40890d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x4089790>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:14:49,927 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:14:49,930 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:14:49,955 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:49,960 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:14:49,960 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:49,960 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:14:49,960 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:49,961 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:49,961 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:49,961 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:49,961 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:14:49,961 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6758>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4099d10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e64090>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x4089210>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4099d10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3e6cf50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509689.9619839, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x4089210>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e64ad0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:14:49,967 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:14:49,967 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:14:51,608 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:51,609 DEBUG [routes.middleware] Matched GET /test1/
 
17:14:51,609 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:51,609 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:14:51,610 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:51,610 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:51,610 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:51,610 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:51,611 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:14:51,611 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6e60>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40b1750>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4099190>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e64890>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40b1750>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d5d450 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509691.611475, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e64890>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e64150>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:14:51,624 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:14:51,628 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:14:51,651 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:14:51,652 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:14:51,653 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:14:51,653 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:14:51,653 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:14:51,653 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:14:51,653 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:14:51,654 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:14:51,654 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:14:51,654 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6938>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4099e10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4099850>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x4099810>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4099e10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d5d3d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509691.654556, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x4099810>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x4099e90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:14:51,659 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:14:51,659 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:15:10,186 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:15:10,187 DEBUG [routes.middleware] Matched GET /test1
 
17:15:10,188 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:15:10,188 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}
 
17:15:10,188 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:10,189 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:15:10,189 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:15:10,189 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:15:10,189 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:15:10,189 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x4096c80>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d5f190>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d5f2d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x4099650>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d5f190>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x40615d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509710.1900051, '_creation_time': 1266509710.1900051}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x4099650>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x4099f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:15:10,200 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:15:10,202 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:15:10,215 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:15:10,217 DEBUG [routes.middleware] Matched GET /test1
 
17:15:10,217 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:15:10,217 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}
 
17:15:10,217 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:10,218 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:15:10,218 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:15:10,218 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:15:10,218 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:15:10,218 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40c2230>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40b46d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40b4610>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e64390>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40b46d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x40614d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509710.2187059, '_creation_time': 1266509710.2187059}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e64390>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x4099f10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:15:10,227 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:15:10,229 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:15:45,202 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:15:45,203 DEBUG [routes.middleware] Matched GET /test1
 
17:15:45,203 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:15:45,203 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}
 
17:15:45,204 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:45,204 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:15:45,204 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:15:45,204 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:15:45,204 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:15:45,204 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40b90c8>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40b12d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40b1410>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40b1850>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40b12d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x40615d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509745.2051041, '_creation_time': 1266509745.2051041}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40b1850>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40b1a50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:15:45,213 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:15:45,214 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:15:45,223 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:15:45,225 DEBUG [routes.middleware] Matched GET /test1
 
17:15:45,225 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:15:45,225 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}
 
17:15:45,226 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:45,226 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:15:45,226 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:15:45,226 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:15:45,226 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:15:45,226 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6410>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4089690>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e64890>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40b1910>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4089690>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3e6c7d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509745.2271559, '_creation_time': 1266509745.2271559}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40b1910>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40b1b90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:15:45,233 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:15:45,234 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:15:45,235 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:15:45,236 DEBUG [routes.middleware] Matched GET /test1
 
17:15:45,236 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:15:45,236 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}
 
17:15:45,237 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:45,237 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:15:45,237 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:15:45,237 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:15:45,237 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:15:45,237 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x4096b18>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4099c50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40996d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e64090>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4099c50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3e6cf50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509745.2381451, '_creation_time': 1266509745.2381451}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e64090>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e64450>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:15:45,246 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:15:45,247 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:15:45,270 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:15:45,272 DEBUG [routes.middleware] No route matched for POST /test1
 
17:15:45,272 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:45,273 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:15:45,273 DEBUG [routes.middleware] Matched POST /error/document
 
17:15:45,273 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
17:15:45,274 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
17:15:45,274 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:45,275 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:15:45,275 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
17:15:45,275 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:15:45,275 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:15:45,275 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:15:45,276 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:15:45,276 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3d5f350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x330e758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'url': <routes.util.URLGenerator object at 0x3d5ea50>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3d5ed50 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3d5f350 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x40af8c0>, 'session': {'_accessed_time': 1266509745.276613, '_creation_time': 1266509745.276613}, 'N_': <function gettext_noop at 0x330e410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x37c1390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3d5ee10 200 OK>, '_': <function ugettext at 0x330e578>}
 
17:15:45,277 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:15:45,277 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:15:57,784 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:15:57,785 DEBUG [routes.middleware] Matched GET /test1
 
17:15:57,785 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:15:57,785 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}
 
17:15:57,785 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:57,786 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:15:57,786 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:15:57,786 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:15:57,786 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:15:57,786 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x4096c80>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4099050>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4099710>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x407dfd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4099050>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3e6c750 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509757.786727, '_creation_time': 1266509757.786727}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x407dfd0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d5f150>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:15:57,792 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:15:57,793 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:15:57,801 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:15:57,802 DEBUG [routes.middleware] Matched GET /test1
 
17:15:57,803 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:15:57,803 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}
 
17:15:57,803 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:57,804 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:15:57,804 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:15:57,804 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:15:57,804 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:15:57,805 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a69b0>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4089810>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e64ad0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x4099ed0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4089810>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x4061c50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509757.805424, '_creation_time': 1266509757.805424}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x4099ed0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x407dcd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:15:57,815 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:15:57,817 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:15:57,819 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:15:57,821 DEBUG [routes.middleware] Matched GET /test1
 
17:15:57,821 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:15:57,821 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}
 
17:15:57,821 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:57,821 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:15:57,822 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:15:57,822 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:15:57,822 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:15:57,822 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40b9aa0>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40b1750>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40b1710>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e64fd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40b1750>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x4061ed0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509757.8227201, '_creation_time': 1266509757.8227201}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e64fd0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e64f10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:15:57,829 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:15:57,830 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:15:57,844 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:15:57,867 DEBUG [routes.middleware] No route matched for POST /test1
 
17:15:57,867 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:57,867 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:15:57,868 DEBUG [routes.middleware] Matched POST /error/document
 
17:15:57,868 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
17:15:57,868 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
17:15:57,868 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:15:57,869 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:15:57,869 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:15:57,869 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:15:57,869 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:15:57,869 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:15:57,870 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3d5e390 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x330e758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'url': <routes.util.URLGenerator object at 0x3d5ea10>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3d5ed10 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3d5e390 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3d61fc8>, 'session': {'_accessed_time': 1266509757.8706479, '_creation_time': 1266509757.8706479}, 'N_': <function gettext_noop at 0x330e410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x37c1390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3d5ec10 200 OK>, '_': <function ugettext at 0x330e578>}
 
17:15:57,871 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:15:57,871 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:16:01,677 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:01,678 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:01,678 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:01,679 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:01,679 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:01,679 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:01,679 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:01,679 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:01,680 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:01,680 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d5ccf8>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40b1510>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40b1ad0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40b1990>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40b1510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x374bad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509761.6803861, '_creation_time': 1266509761.6803861}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40b1990>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e6afd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:01,686 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:01,687 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:01,696 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:01,697 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:01,697 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:01,697 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:01,697 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:01,698 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:01,698 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:01,698 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:01,698 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:01,698 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a68c0>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e64f10>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e64090>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40b1350>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e64f10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d5d0d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509761.699049, '_creation_time': 1266509761.699049}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40b1350>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40b1650>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:01,709 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:01,710 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:01,715 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:01,716 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:01,716 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:01,716 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:01,716 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:01,717 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:01,717 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:01,717 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:01,717 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:01,717 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6a28>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4099110>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40996d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e64a50>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4099110>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d5d2d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509761.7177279, '_creation_time': 1266509761.7177279}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e64a50>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e64550>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:01,723 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:01,725 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:01,765 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:01,766 DEBUG [routes.middleware] No route matched for POST /test1/
 
17:16:01,766 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:01,767 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:16:01,767 DEBUG [routes.middleware] Matched POST /error/document
 
17:16:01,767 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
17:16:01,767 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
17:16:01,768 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:01,768 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:16:01,768 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:01,768 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:01,768 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:16:01,768 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:16:01,769 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3d4ee50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x330e758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'url': <routes.util.URLGenerator object at 0x3d4e790>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3d4ed90 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3d4ee50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3d5b200>, 'session': {'_accessed_time': 1266509761.769433, '_creation_time': 1266509761.769433}, 'N_': <function gettext_noop at 0x330e410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x37c1390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3d4e810 200 OK>, '_': <function ugettext at 0x330e578>}
 
17:16:01,770 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:16:01,770 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:16:07,788 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:07,789 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:07,789 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:07,790 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:07,790 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:07,790 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:07,790 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:07,790 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:07,790 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:07,791 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d4a7d0>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d4e050>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d4ed50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d4ec90>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d4e050>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x40615d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509767.7913511, '_creation_time': 1266509767.7913511}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d4ec90>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x4099210>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:07,798 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:07,799 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:07,807 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:07,808 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:07,808 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:07,808 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:07,809 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:07,809 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:07,809 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:07,809 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:07,809 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:07,809 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4099810>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4099b50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x4099e50>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4099810>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x4061c50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509767.8101161, '_creation_time': 1266509767.8101161}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x4099e50>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x4099b10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:07,816 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:07,817 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:07,818 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:07,821 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:07,821 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:07,821 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:07,821 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:07,822 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:07,822 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:07,822 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:07,822 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:07,822 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a68c0>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e64550>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e64890>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x4099bd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e64550>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3e6c750 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509767.8227029, '_creation_time': 1266509767.8227029}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x4099bd0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x4099cd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:07,828 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:07,829 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:07,851 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:07,852 DEBUG [routes.middleware] No route matched for POST /test1/
 
17:16:07,853 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:07,853 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:16:07,854 DEBUG [routes.middleware] Matched POST /error/document
 
17:16:07,854 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
17:16:07,854 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
17:16:07,854 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:07,854 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:16:07,854 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:07,855 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:07,855 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:16:07,855 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:16:07,855 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3d4ed10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x330e758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'url': <routes.util.URLGenerator object at 0x40b1b50>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x40b1550 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3d4ed10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x40bacf8>, 'session': {'_accessed_time': 1266509767.8558121, '_creation_time': 1266509767.8558121}, 'N_': <function gettext_noop at 0x330e410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x37c1390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x40b1dd0 200 OK>, '_': <function ugettext at 0x330e578>}
 
17:16:07,856 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:16:07,856 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:16:11,818 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:11,819 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:11,819 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:11,820 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:11,820 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:11,820 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:11,820 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:11,820 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:11,821 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:11,821 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d5c938>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d4e850>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d4e790>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40b1590>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d4e850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d5d350 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509771.8214381, '_creation_time': 1266509771.8214381}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40b1590>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x4099d10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:11,828 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:11,829 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:11,849 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:11,850 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:11,850 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:11,850 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:11,851 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:11,851 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:11,851 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:11,851 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:11,852 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:11,852 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40b9c08>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40b1790>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40b19d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40b10d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40b1790>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3e6c750 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509771.8524921, '_creation_time': 1266509771.8524921}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40b10d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40b1410>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:11,859 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:11,862 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:11,869 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:11,870 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:11,870 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:11,870 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:11,870 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:11,871 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:11,871 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:11,871 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:11,871 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:11,871 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6320>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4089dd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4089750>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40b1bd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4089dd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x374bad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509771.872108, '_creation_time': 1266509771.872108}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40b1bd0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40b1890>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:11,880 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:11,886 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:11,908 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:11,913 DEBUG [routes.middleware] No route matched for POST /test1/
 
17:16:11,913 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:11,914 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:16:11,915 DEBUG [routes.middleware] Matched POST /error/document
 
17:16:11,915 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
17:16:11,915 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
17:16:11,915 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:11,916 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:16:11,916 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:11,916 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:11,916 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:16:11,916 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:16:11,916 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3d5ee50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x330e758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'url': <routes.util.URLGenerator object at 0x4099dd0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3d5f950 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3d5ee50 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x40a3cb0>, 'session': {'_accessed_time': 1266509771.9172621, '_creation_time': 1266509771.9172621}, 'N_': <function gettext_noop at 0x330e410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x37c1390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3d5f150 200 OK>, '_': <function ugettext at 0x330e578>}
 
17:16:11,918 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:16:11,918 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:16:38,158 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:38,160 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:38,160 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:38,160 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:38,160 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:38,160 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:38,161 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:38,161 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:38,161 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:38,161 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d4acf8>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3d5eb10>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3d5e750>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d5f090>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3d5eb10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d138d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509798.161679, '_creation_time': 1266509798.161679}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d5f090>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e64fd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:38,168 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:38,169 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:38,177 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:38,178 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:38,179 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:38,179 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:38,179 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:38,179 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:38,179 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:38,180 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:38,180 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:38,180 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a60c8>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4099750>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4099c10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x38b3490>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4099750>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d139d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509798.180618, '_creation_time': 1266509798.180618}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x38b3490>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d5efd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:38,186 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:38,187 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:38,189 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:38,190 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:38,190 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:38,190 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:38,191 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:38,191 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:38,191 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:38,191 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:38,191 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:38,191 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6848>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4089f50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e64b50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x38b3110>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4089f50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d13950 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509798.1921279, '_creation_time': 1266509798.1921279}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x38b3110>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d5e4d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:38,198 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:38,199 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:38,216 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:38,217 DEBUG [routes.middleware] No route matched for POST /test1/
 
17:16:38,217 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:38,217 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:16:38,218 DEBUG [routes.middleware] Matched POST /error/document
 
17:16:38,218 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
17:16:38,218 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
17:16:38,218 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:38,219 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:16:38,219 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:38,219 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:38,219 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:16:38,219 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:16:38,219 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x40b1790 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x330e758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'url': <routes.util.URLGenerator object at 0x40b1f10>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x40b1490 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x40b1790 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x40aaa70>, 'session': {'_accessed_time': 1266509798.220156, '_creation_time': 1266509798.220156}, 'N_': <function gettext_noop at 0x330e410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x37c1390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x40b1c50 200 OK>, '_': <function ugettext at 0x330e578>}
 
17:16:38,220 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:16:38,221 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:16:42,853 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:42,854 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:42,854 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:42,855 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:42,855 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:42,855 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:42,855 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:42,855 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:42,855 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:42,856 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40c2758>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40b11d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40b12d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40b1450>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40b11d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x4061c50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509802.8563199, '_creation_time': 1266509802.8563199}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40b1450>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e64690>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:42,863 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:42,864 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:42,872 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:42,874 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:42,874 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:42,874 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:42,874 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:42,874 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:42,875 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:42,875 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:42,875 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:42,875 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d5ccf8>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e58b50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e6afd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40b1f50>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e58b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x4061ed0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509802.8756671, '_creation_time': 1266509802.8756671}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40b1f50>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40b1890>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:42,881 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:42,883 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:42,884 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:42,886 DEBUG [routes.middleware] Matched GET /test1/
 
17:16:42,886 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:16:42,886 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}
 
17:16:42,886 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:42,887 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:16:42,887 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:42,887 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:42,887 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:16:42,887 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6488>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37d6ed0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4089910>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e6a690>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37d6ed0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x374bad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509802.888037, '_creation_time': 1266509802.888037}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e6a690>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40b1110>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:16:42,896 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:16:42,898 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:16:42,912 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:16:42,914 DEBUG [routes.middleware] No route matched for POST /test1/
 
17:16:42,915 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:42,915 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:16:42,916 DEBUG [routes.middleware] Matched POST /error/document
 
17:16:42,916 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
17:16:42,916 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
17:16:42,916 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:16:42,917 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:16:42,917 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:16:42,917 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:16:42,917 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:16:42,917 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:16:42,917 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x40c4d90 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x330e758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'url': <routes.util.URLGenerator object at 0x40b4150>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x40b4ad0 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x40c4d90 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x40a8fc8>, 'session': {'_accessed_time': 1266509802.9182291, '_creation_time': 1266509802.9182291}, 'N_': <function gettext_noop at 0x330e410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x37c1390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x37c15d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x40b4050 200 OK>, '_': <function ugettext at 0x330e578>}
 
17:16:42,918 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:16:42,919 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:17:49,470 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:17:49,484 DEBUG [routes.middleware] Matched GET /test1/summary
 
17:17:49,485 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:17:49,486 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}
 
17:17:49,487 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:17:49,488 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:17:49,489 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:17:49,489 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:17:49,490 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:17:49,490 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40c2de8>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40c4a50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40c4950>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40c4e10>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40c4a50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d139d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509869.491214, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40c4e10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40b47d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:17:49,513 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:17:49,517 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:17:49,545 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:17:49,548 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:17:49,548 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:17:49,548 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:17:49,548 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:17:49,549 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:17:49,549 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:17:49,549 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:17:49,549 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:17:49,549 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6500>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4099790>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4099ed0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x38b33d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4099790>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3e6c750 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509869.55005, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x38b33d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x4099b50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:17:49,555 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:17:49,555 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:17:52,458 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:17:52,461 DEBUG [routes.middleware] Matched GET /test1/summary
 
17:17:52,461 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:17:52,462 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}
 
17:17:52,463 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:17:52,464 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:17:52,464 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:17:52,464 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:17:52,465 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:17:52,465 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6d70>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4089dd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4089d50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e73a50>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4089dd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d13950 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509872.46632, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e73a50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x4099ad0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:17:52,478 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:17:52,480 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:17:52,533 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:17:52,535 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:17:52,535 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:17:52,535 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:17:52,535 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:17:52,536 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:17:52,536 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:17:52,536 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:17:52,536 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:17:52,536 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40b90c8>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e58b50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e6a250>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3d25f10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e58b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x4061ed0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509872.536835, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3d25f10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40c9c10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:17:52,541 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:17:52,542 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:17:53,068 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:17:53,073 DEBUG [routes.middleware] Matched GET /test1/summary
 
17:17:53,074 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:17:53,074 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}
 
17:17:53,075 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:17:53,076 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:17:53,076 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:17:53,077 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:17:53,077 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:17:53,077 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d5ce60>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3e642d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3e64150>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e64ad0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3e642d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x374bad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509873.078582, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e64ad0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e64e50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:17:53,097 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:17:53,100 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:17:53,217 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:17:53,218 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:17:53,218 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:17:53,218 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:17:53,219 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:17:53,219 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:17:53,219 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:17:53,219 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:17:53,219 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:17:53,220 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6b90>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40b4b10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40b4550>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e64c90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40b4b10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d5d0d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509873.2203801, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e64c90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x38b3490>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:17:53,226 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:17:53,226 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:17:53,703 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:17:53,704 DEBUG [routes.middleware] Matched GET /test1/summary
 
17:17:53,705 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:17:53,705 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}
 
17:17:53,705 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:17:53,705 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:17:53,705 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:17:53,706 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:17:53,706 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:17:53,706 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x4164320>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x416a890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40c9f90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40c49d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x416a890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d5d2d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509873.7065611, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40c49d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3d5fa90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:17:53,726 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:17:53,729 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:17:53,770 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:17:53,770 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:17:53,771 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:17:53,771 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:17:53,771 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:17:53,771 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:17:53,772 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:17:53,772 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:17:53,772 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:17:53,772 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40a6848>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4099d90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4099c90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x40c9ed0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4099d90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d13950 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509873.7726669, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x40c9ed0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3e73a50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:17:53,777 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:17:53,777 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:17:54,259 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:17:54,260 DEBUG [routes.middleware] Matched GET /test1/summary
 
17:17:54,260 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:17:54,261 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}
 
17:17:54,261 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:17:54,261 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:17:54,261 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:17:54,262 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:17:54,262 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:17:54,262 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3d5ced8>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x4089750>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x40890d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x4099810>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x4089750>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x374bad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509874.262675, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x4099810>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40c9e10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:17:54,273 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:17:54,276 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:17:54,309 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:17:54,312 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:17:54,312 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:17:54,313 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:17:54,313 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:17:54,313 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:17:54,313 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:17:54,313 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:17:54,314 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:17:54,314 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x40b99b0>, 'environ': {'routes.route': <routes.route.Route object at 0x37c1550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x37c1790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x416a810>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x416aa50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x37c1810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3e58d10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x416a810>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x37c1850>, 'wsgi.input': <socket._fileobject object at 0x3d5d0d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509874.314394, '_creation_time': 1266509656.3183651}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3e58d10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x416ae50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7feb824b81c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2b0f4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:17:54,319 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:17:54,319 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:18:05,729 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:18:05,729 DEBUG [pylons.configuration] Pushing process configuration
 
17:18:05,733 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:18:05,733 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:18:05,737 DEBUG [pylons.templating] Initialized Buffet object
 
17:18:05,737 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:18:05,740 DEBUG [paste.httpserver.ThreadPool] Started new worker 139786523588880: Initial worker pool
 
17:18:05,740 DEBUG [paste.httpserver.ThreadPool] Started new worker 139786515196176: Initial worker pool
 
17:18:05,740 DEBUG [paste.httpserver.ThreadPool] Started new worker 139786506803472: Initial worker pool
 
17:18:05,740 DEBUG [paste.httpserver.ThreadPool] Started new worker 139786498410768: Initial worker pool
 
17:18:05,741 DEBUG [paste.httpserver.ThreadPool] Started new worker 139786490018064: Initial worker pool
 
17:18:05,741 DEBUG [paste.httpserver.ThreadPool] Started new worker 139786481625360: Initial worker pool
 
17:18:05,742 DEBUG [paste.httpserver.ThreadPool] Started new worker 139786473232656: Initial worker pool
 
17:18:05,743 DEBUG [paste.httpserver.ThreadPool] Started new worker 139786464839952: Initial worker pool
 
17:18:05,743 DEBUG [paste.httpserver.ThreadPool] Started new worker 139786456447248: Initial worker pool
 
17:18:05,744 DEBUG [paste.httpserver.ThreadPool] Started new worker 139786448054544: Initial worker pool
 
17:18:07,108 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:18:07,111 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:18:07,112 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:18:07,192 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:18:07,193 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:18:07,193 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:18:07,193 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:18:07,193 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3744d70>, 'environ': {'routes.route': <routes.route.Route object at 0x3653550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3653790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37458d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3745590>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3653810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3745350>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3653850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37458d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3653850>, 'wsgi.input': <socket._fileobject object at 0x35dca50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509887.19398, '_creation_time': 1266509887.19398}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x3745350>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3668f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f229a7171c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x29a14d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:18:07,237 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:18:07,246 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:18:07,269 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:18:07,271 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:18:07,271 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:18:07,271 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:18:07,271 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:18:07,271 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:18:07,272 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x3efe140>, 'environ': {'routes.route': <routes.route.Route object at 0x3653550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3653790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3ec6090>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3eb4bd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3653810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3cb5f50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3653850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3ec6090>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3653850>, 'wsgi.input': <socket._fileobject object at 0x35dcbd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509887.272377, '_creation_time': 1266509887.19398}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x3cb5f50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3ca2d90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f229a7171c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x29a14d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:18:07,278 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:18:07,278 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:18:24,121 INFO  [paste.httpserver.ThreadPool] Shutting down threadpool
 
17:18:25,526 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:18:25,527 DEBUG [pylons.configuration] Pushing process configuration
 
17:18:25,530 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:18:25,530 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:18:25,534 DEBUG [pylons.templating] Initialized Buffet object
 
17:18:25,535 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:18:25,537 DEBUG [paste.httpserver.ThreadPool] Started new worker 140333533624592: Initial worker pool
 
17:18:25,537 DEBUG [paste.httpserver.ThreadPool] Started new worker 140333525231888: Initial worker pool
 
17:18:25,537 DEBUG [paste.httpserver.ThreadPool] Started new worker 140333516839184: Initial worker pool
 
17:18:25,537 DEBUG [paste.httpserver.ThreadPool] Started new worker 140333508446480: Initial worker pool
 
17:18:25,538 DEBUG [paste.httpserver.ThreadPool] Started new worker 140333500053776: Initial worker pool
 
17:18:25,538 DEBUG [paste.httpserver.ThreadPool] Started new worker 140333491661072: Initial worker pool
 
17:18:25,538 DEBUG [paste.httpserver.ThreadPool] Started new worker 140333483268368: Initial worker pool
 
17:18:25,538 DEBUG [paste.httpserver.ThreadPool] Started new worker 140333474875664: Initial worker pool
 
17:18:25,538 DEBUG [paste.httpserver.ThreadPool] Started new worker 140333466482960: Initial worker pool
 
17:18:25,539 DEBUG [paste.httpserver.ThreadPool] Started new worker 140333458090256: Initial worker pool
 
17:18:28,499 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:18:28,514 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:18:28,549 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:18:28,621 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:18:28,621 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:18:28,621 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:18:28,621 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:18:28,622 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x1baad70>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1bab8d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1bab590>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1bab350>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1bab8d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x1a3ea50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509908.622421, '_creation_time': 1266509908.622421}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x1bab350>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1ac9f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:18:28,684 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:18:28,693 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:18:28,727 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:18:28,746 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:18:28,746 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:18:28,746 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:18:28,746 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:18:28,747 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:18:28,747 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2360140>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2328090>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2316bd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2116f50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2328090>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x1a3ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509908.747489, '_creation_time': 1266509908.622421}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x2116f50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2103d90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:18:28,753 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:18:28,754 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:19:21,906 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:19:21,908 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:19:21,908 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:19:21,908 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:19:21,908 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:19:21,908 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:19:21,908 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2360668>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2338b50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2338490>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2316690>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2338b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x1a3ead0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509961.909241, '_creation_time': 1266509961.909241}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2316690>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1bab150>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:19:21,916 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:19:21,917 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:19:21,927 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:19:21,930 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:19:21,930 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:19:21,931 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:19:21,931 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:19:21,931 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:19:21,931 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x23600c8>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1bab290>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2116f50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2328d90>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1bab290>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x2107e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509961.9318831, '_creation_time': 1266509961.9318831}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2328d90>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2328f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:19:21,941 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:19:21,943 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:19:21,944 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:19:21,948 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:19:21,949 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:19:21,949 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:19:21,949 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:19:21,949 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:19:21,949 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x23740c8>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x234ac50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x234ab90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2116d90>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x234ac50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x1a3ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509961.9500849, '_creation_time': 1266509961.9500849}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2116d90>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2328cd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:19:21,957 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:19:21,958 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:19:21,974 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:19:21,983 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:19:21,984 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:19:21,984 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:19:21,985 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:19:21,985 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
17:19:21,985 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:19:21,985 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:19:21,985 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:19:21,986 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:19:21,986 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2330290 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1601758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'url': <routes.util.URLGenerator object at 0x20faf10>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2103490 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2330290 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x235a098>, 'session': {'_accessed_time': 1266509961.986779, '_creation_time': 1266509961.986779}, 'N_': <function gettext_noop at 0x1601410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x1ab4390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x23301d0 200 OK>, '_': <function ugettext at 0x1601578>}
 
17:19:21,988 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:19:21,988 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:19:30,760 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:19:30,761 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:19:30,762 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:19:30,762 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:19:30,762 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:19:30,762 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:19:30,762 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x235bb90>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x234af50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2330f90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2330c10>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x234af50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x233c9d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509970.762974, '_creation_time': 1266509970.762974}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2330c10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2328690>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:19:30,769 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:19:30,770 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:19:30,778 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:19:30,799 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:19:30,800 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:19:30,800 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:19:30,800 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:19:30,800 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:19:30,800 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2374b90>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2371910>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2371790>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2330950>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2371910>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x233c750 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509970.800997, '_creation_time': 1266509970.800997}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2330950>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x23305d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:19:30,807 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:19:30,809 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:19:30,810 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:19:30,811 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:19:30,811 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:19:30,811 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:19:30,812 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:19:30,812 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:19:30,812 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2360cf8>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x234a290>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x234af90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x23717d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x234a290>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x233cc50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266509970.8125229, '_creation_time': 1266509970.8125229}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x23717d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2338d10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:19:30,819 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:19:30,820 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:19:30,843 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:19:30,858 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:19:30,859 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:19:30,859 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:19:30,860 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:19:30,860 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:19:30,860 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:19:30,860 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:19:30,860 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:19:30,861 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x23289d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1601758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'url': <routes.util.URLGenerator object at 0x2041c50>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x1bab290 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x23289d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x23825a8>, 'session': {'_accessed_time': 1266509970.861486, '_creation_time': 1266509970.861486}, 'N_': <function gettext_noop at 0x1601410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x1ab4390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2328c10 200 OK>, '_': <function ugettext at 0x1601578>}
 
17:19:30,862 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:19:30,862 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:21:56,528 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:21:56,529 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:21:56,529 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:21:56,530 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:21:56,530 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:21:56,530 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:21:56,530 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x237b1b8>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2379510>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x23794d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x23288d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2379510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x233cad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510116.5306001, '_creation_time': 1266510116.5306001}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x23288d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x234a6d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:21:56,538 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:21:56,539 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:21:56,547 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:21:56,548 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:21:56,549 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:21:56,549 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:21:56,549 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:21:56,549 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:21:56,549 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2374c80>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x23791d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x23790d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2379210>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x23791d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x2107e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510116.549916, '_creation_time': 1266510116.549916}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2379210>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2379e50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:21:56,555 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:21:56,557 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:21:56,558 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:21:56,559 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:21:56,559 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:21:56,559 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:21:56,560 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:21:56,560 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:21:56,560 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2360938>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2338790>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2338d10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2379090>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2338790>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x1a3ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510116.5604849, '_creation_time': 1266510116.5604849}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2379090>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2379b10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:21:56,566 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:21:56,567 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:21:56,582 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:21:56,583 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:21:56,583 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:21:56,584 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:21:56,584 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:21:56,584 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:21:56,585 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:21:56,585 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:21:56,585 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:21:56,585 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x20fa510 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1601758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'url': <routes.util.URLGenerator object at 0x20fad10>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x20fa790 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x20fa510 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x2364368>, 'session': {'_accessed_time': 1266510116.5858071, '_creation_time': 1266510116.5858071}, 'N_': <function gettext_noop at 0x1601410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x1ab4390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x20fadd0 200 OK>, '_': <function ugettext at 0x1601578>}
 
17:21:56,586 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:21:56,586 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:21:59,508 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:21:59,520 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:21:59,520 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:21:59,520 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:21:59,520 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:21:59,520 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:21:59,521 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x235b050>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2041190>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2041c90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x20fa110>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2041190>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x20058d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510119.5214369, '_creation_time': 1266510119.5214369}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x20fa110>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x20fa890>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:21:59,529 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:21:59,530 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:21:59,598 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:21:59,599 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:21:59,600 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:21:59,600 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:21:59,600 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:21:59,600 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:21:59,600 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2360e60>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x20fabd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x20fad10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2041c10>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x20fabd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x1a3ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510119.600955, '_creation_time': 1266510119.600955}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2041c10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2328490>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:21:59,607 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:21:59,608 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:21:59,619 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:21:59,620 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:21:59,620 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:21:59,620 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:21:59,621 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:21:59,621 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:21:59,621 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x23749b0>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x234afd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x234ad10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x20fa1d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x234afd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x1a3ead0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510119.6217, '_creation_time': 1266510119.6217}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x20fa1d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2328f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:21:59,629 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:21:59,630 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:21:59,647 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:21:59,648 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:21:59,648 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:21:59,649 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:21:59,649 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:21:59,649 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:21:59,650 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:21:59,650 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:21:59,650 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:21:59,650 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x23790d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1601758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'url': <routes.util.URLGenerator object at 0x23792d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2379190 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x23790d0 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x235a098>, 'session': {'_accessed_time': 1266510119.650816, '_creation_time': 1266510119.650816}, 'N_': <function gettext_noop at 0x1601410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x1ab4390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2379b10 200 OK>, '_': <function ugettext at 0x1601578>}
 
17:21:59,651 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:21:59,651 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:22:01,648 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:01,650 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:01,650 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:22:01,650 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:01,650 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:01,650 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:22:01,650 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2329d70>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2387150>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2387a90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2379f50>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2387150>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x233c6d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510121.6511259, '_creation_time': 1266510121.6511259}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2379f50>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2338cd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:22:01,657 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:22:01,658 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:22:01,666 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:01,667 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:01,668 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:22:01,668 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:01,668 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:01,668 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:22:01,668 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2374488>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2379190>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2379cd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2387190>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2379190>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x2107e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510121.6690071, '_creation_time': 1266510121.6690071}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2387190>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2330c10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:22:01,680 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:22:01,681 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:22:01,683 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:01,683 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:01,684 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:22:01,684 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:01,684 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:01,684 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:22:01,684 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x235b2a8>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x234ae50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x234ab90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x23307d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x234ae50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x2144650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510121.6849649, '_creation_time': 1266510121.6849649}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x23307d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x23301d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:22:01,691 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:22:01,692 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:22:01,705 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:01,707 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:01,707 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:22:01,708 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:01,708 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:22:01,708 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:01,708 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:01,708 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:22:01,709 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:22:01,709 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2018a10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1601758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'url': <routes.util.URLGenerator object at 0x20fa510>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2041090 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2018a10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x23634d0>, 'session': {'_accessed_time': 1266510121.709599, '_creation_time': 1266510121.709599}, 'N_': <function gettext_noop at 0x1601410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x1ab4390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x20411d0 200 OK>, '_': <function ugettext at 0x1601578>}
 
17:22:01,710 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:22:01,710 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:22:04,129 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:04,130 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:04,130 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:22:04,130 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:04,130 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:04,130 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:22:04,130 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x237b578>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2328d90>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2328ed0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2041310>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2328d90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x233cf50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510124.131228, '_creation_time': 1266510124.131228}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2041310>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x234a410>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:22:04,137 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:22:04,139 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:22:04,148 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:04,149 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:04,150 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:22:04,150 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:04,150 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:04,150 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:22:04,150 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2360c08>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2316850>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2116d90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2328a50>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2316850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x2144650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510124.15084, '_creation_time': 1266510124.15084}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2328a50>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x20fae90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:22:04,158 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:22:04,160 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:22:04,161 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:04,162 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:04,162 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:22:04,163 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:04,163 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:04,163 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:22:04,163 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2374b90>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x234a510>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x234af10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2116a50>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x234a510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x2144a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510124.163666, '_creation_time': 1266510124.163666}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2116a50>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x20fa710>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'identity'}}
 
17:22:04,169 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:22:04,170 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:22:04,191 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:04,191 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:04,192 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:22:04,192 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:04,193 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:22:04,193 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:04,193 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:04,193 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:22:04,193 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:22:04,193 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x2368190 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x1601758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'url': <routes.util.URLGenerator object at 0x23871d0>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x2387190 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x2368190 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x238d6c8>, 'session': {'_accessed_time': 1266510124.1942501, '_creation_time': 1266510124.1942501}, 'N_': <function gettext_noop at 0x1601410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x1ab4390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x1ab45d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x2387f50 200 OK>, '_': <function ugettext at 0x1601578>}
 
17:22:04,194 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:22:04,195 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:22:38,679 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:38,680 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:38,681 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:22:38,681 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:38,681 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:38,681 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:22:38,681 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x237ba28>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2368bd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2368ad0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2387cd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2368bd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x233cd50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510158.6819661, '_creation_time': 1266509908.622421}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x2387cd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2387e50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:22:38,693 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:22:38,696 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:22:38,724 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:38,725 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:38,726 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:22:38,726 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:38,726 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:38,726 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:22:38,726 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2374230>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x234a710>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x234ac90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x234acd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x234a710>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x20059d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510158.726835, '_creation_time': 1266509908.622421}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x234acd0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x234a210>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:22:38,732 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:22:38,732 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:22:41,560 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:41,561 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:41,562 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:22:41,562 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:41,562 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:41,562 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:22:41,562 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x2360938>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2116f50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2316bd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x234a650>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2116f50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x233c9d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510161.562803, '_creation_time': 1266509908.622421}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x234a650>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x234a690>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:22:41,574 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:22:41,577 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:22:41,614 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:22:41,619 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:22:41,620 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:22:41,620 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:22:41,620 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:22:41,620 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:22:41,620 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'start_response': <function repl_start_response at 0x237b9b0>, 'environ': {'routes.route': <routes.route.Route object at 0x1ab4550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1ab4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x20f3f50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2328210>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1ab4810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x234ae90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x20f3f50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1ab4850>, 'wsgi.input': <socket._fileobject object at 0x2144a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510161.621073, '_creation_time': 1266509908.622421}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x234ae90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x234ad10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa1f6c831c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0xdfe550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}}
 
17:22:41,626 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:22:41,626 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:25:04,785 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:25:04,785 DEBUG [pylons.configuration] Pushing process configuration
 
17:25:04,788 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:25:04,788 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:25:04,794 DEBUG [pylons.templating] Initialized Buffet object
 
17:25:04,794 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:25:04,797 DEBUG [paste.httpserver.ThreadPool] Started new worker 139734099040528: Initial worker pool
 
17:25:04,797 DEBUG [paste.httpserver.ThreadPool] Started new worker 139734090647824: Initial worker pool
 
17:25:04,797 DEBUG [paste.httpserver.ThreadPool] Started new worker 139734082255120: Initial worker pool
 
17:25:04,798 DEBUG [paste.httpserver.ThreadPool] Started new worker 139734073862416: Initial worker pool
 
17:25:04,798 DEBUG [paste.httpserver.ThreadPool] Started new worker 139734065469712: Initial worker pool
 
17:25:04,798 DEBUG [paste.httpserver.ThreadPool] Started new worker 139734057077008: Initial worker pool
 
17:25:04,799 DEBUG [paste.httpserver.ThreadPool] Started new worker 139734048684304: Initial worker pool
 
17:25:04,799 DEBUG [paste.httpserver.ThreadPool] Started new worker 139734040291600: Initial worker pool
 
17:25:04,800 DEBUG [paste.httpserver.ThreadPool] Started new worker 139734031898896: Initial worker pool
 
17:25:04,800 DEBUG [paste.httpserver.ThreadPool] Started new worker 139734023506192: Initial worker pool
 
17:25:07,602 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:07,605 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:07,606 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:07,669 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:25:07,670 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:07,670 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:07,670 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:07,670 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x22925d0>, 'start_response': <function repl_start_response at 0x2291c08>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x21a0550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x21a0790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2292910>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x21a0810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x22925d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x22923d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x21a0850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2292910>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x21a0850>, 'wsgi.input': <socket._fileobject object at 0x212aa50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510307.670902, '_creation_time': 1266510307.670902}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x22923d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2292050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f1665b251c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x14ee4d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'test1', 'action': u'view'}
 
17:25:07,671 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:25:07,671 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:15,310 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:25:15,311 DEBUG [pylons.configuration] Pushing process configuration
 
17:25:15,314 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:25:15,314 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:25:15,318 DEBUG [pylons.templating] Initialized Buffet object
 
17:25:15,318 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:25:15,320 DEBUG [paste.httpserver.ThreadPool] Started new worker 140687978649872: Initial worker pool
 
17:25:15,320 DEBUG [paste.httpserver.ThreadPool] Started new worker 140687970257168: Initial worker pool
 
17:25:15,321 DEBUG [paste.httpserver.ThreadPool] Started new worker 140687961864464: Initial worker pool
 
17:25:15,321 DEBUG [paste.httpserver.ThreadPool] Started new worker 140687953471760: Initial worker pool
 
17:25:15,321 DEBUG [paste.httpserver.ThreadPool] Started new worker 140687945079056: Initial worker pool
 
17:25:15,321 DEBUG [paste.httpserver.ThreadPool] Started new worker 140687936686352: Initial worker pool
 
17:25:15,322 DEBUG [paste.httpserver.ThreadPool] Started new worker 140687928293648: Initial worker pool
 
17:25:15,322 DEBUG [paste.httpserver.ThreadPool] Started new worker 140687919900944: Initial worker pool
 
17:25:15,322 DEBUG [paste.httpserver.ThreadPool] Started new worker 140687911508240: Initial worker pool
 
17:25:15,322 DEBUG [paste.httpserver.ThreadPool] Started new worker 140687903115536: Initial worker pool
 
17:25:16,363 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:16,366 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:16,367 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:16,422 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:25:16,423 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:16,423 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:16,423 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:16,423 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2fe55d0>, 'start_response': <function repl_start_response at 0x2fe4c08>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2fe5910>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2fe55d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fe53d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2fe5910>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x2e7ea50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510316.4237909, '_creation_time': 1266510316.4237909}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x2fe53d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2fe5050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'test1', 'action': u'view'}
 
17:25:16,486 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:25:16,486 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:25:16,500 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:16,502 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:16,502 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:16,502 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:16,502 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:16,503 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:16,503 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x35370d0>, 'start_response': <function repl_start_response at 0x3768a28>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test1', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x35375d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x35370d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x345ec10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x35375d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x2e7ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510316.5033979, '_creation_time': 1266510316.4237909}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x345ec10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2fe51d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
17:25:16,509 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:25:16,509 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:25:41,983 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:41,984 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:41,984 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:41,984 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:41,985 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:41,985 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:41,985 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3765f10>, 'start_response': <function repl_start_response at 0x379f758>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37659d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3765f10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3755a10>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37659d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x357ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510341.985549, '_creation_time': 1266510341.985549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3755a10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2f09ed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test1', 'action': u'view'}
 
17:25:41,998 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:25:41,999 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:41,999 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:25:42,008 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:42,011 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:42,012 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:42,013 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:42,013 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:42,013 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:42,013 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3778590>, 'start_response': <function repl_start_response at 0x379f848>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3778b50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3778590>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37788d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3778b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x357ec50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510342.0136521, '_creation_time': 1266510342.0136521}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37788d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37787d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test1', 'action': u'view'}
 
17:25:42,020 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:25:42,020 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:42,021 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:25:42,022 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:42,023 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:42,023 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:42,024 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:42,024 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:42,024 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:42,024 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3778550>, 'start_response': <function repl_start_response at 0x379fc80>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2fe5310>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3778550>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3480690>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2fe5310>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x357e6d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510342.0246379, '_creation_time': 1266510342.0246379}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3480690>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3528d10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test1', 'action': u'view'}
 
17:25:42,030 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:25:42,030 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:42,030 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:25:42,045 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:42,052 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:42,052 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:25:42,053 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:42,053 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:25:42,054 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
17:25:42,054 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:42,054 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:42,054 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:25:42,054 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:25:42,054 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3786790 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x2a42758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2ef45d0>, 'url': <routes.util.URLGenerator object at 0x3786a90>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3786210 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3786790 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x37b5170>, 'session': {'_accessed_time': 1266510342.0551331, '_creation_time': 1266510342.0551331}, 'N_': <function gettext_noop at 0x2a42410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2ef45d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2ef4390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2ef45d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3786b90 200 OK>, '_': <function ugettext at 0x2a42578>}
 
17:25:42,056 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:25:42,056 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:48,677 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:48,682 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:48,683 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:48,683 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:48,683 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:48,683 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:48,683 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37b3610>, 'start_response': <function repl_start_response at 0x37aaed8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x345ee10>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37b3610>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3786d10>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x345ee10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x3779350 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510348.684021, '_creation_time': 1266510348.684021}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3786d10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x352eb50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test1/', 'action': u'view'}
 
17:25:48,702 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:25:48,702 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:48,703 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:25:48,712 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:48,714 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:48,714 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:48,714 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:48,714 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:48,714 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:48,715 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37863d0>, 'start_response': <function repl_start_response at 0x379fe60>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37862d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37863d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3786b10>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37862d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x2e7ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510348.71527, '_creation_time': 1266510348.71527}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3786b10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37656d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test1/', 'action': u'view'}
 
17:25:48,721 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:25:48,721 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:48,721 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:25:48,723 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:48,723 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:48,724 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:48,724 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:48,724 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:48,724 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:48,724 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3778550>, 'start_response': <function repl_start_response at 0x3461e60>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3778710>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3778550>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fe5310>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3778710>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x353be50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510348.724972, '_creation_time': 1266510348.724972}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fe5310>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x376f8d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test1/', 'action': u'view'}
 
17:25:48,730 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:25:48,731 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:48,731 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:25:48,744 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:48,745 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:48,746 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:25:48,746 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:48,747 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:25:48,747 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:48,747 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:48,747 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:25:48,747 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:25:48,748 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x37b3b10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x2a42758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2ef45d0>, 'url': <routes.util.URLGenerator object at 0x37b3b50>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x37b3e50 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x37b3b10 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x37bdfc8>, 'session': {'_accessed_time': 1266510348.748347, '_creation_time': 1266510348.748347}, 'N_': <function gettext_noop at 0x2a42410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2ef45d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2ef4390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2ef45d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x37b3d50 200 OK>, '_': <function ugettext at 0x2a42578>}
 
17:25:48,748 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:25:48,749 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:54,446 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:54,447 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:54,448 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:54,448 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:54,448 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:54,448 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:54,448 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37c1090>, 'start_response': <function repl_start_response at 0x37ba9b0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37c1150>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37c1090>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37b3d10>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37c1150>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x3779a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510354.448838, '_creation_time': 1266510354.448838}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37b3d10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3755610>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test1/', 'action': u'view'}
 
17:25:54,459 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:25:54,459 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:54,459 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:25:54,466 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:54,467 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:54,467 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:54,467 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:54,467 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:54,467 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:54,468 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2fe5190>, 'start_response': <function repl_start_response at 0x379fc80>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37b3bd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2fe5190>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3778550>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1/'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37b3bd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x353be50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510354.4683261, '_creation_time': 1266510354.4683261}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3778550>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3778dd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test1/', 'action': u'view'}
 
17:25:54,474 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:25:54,474 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:54,474 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:25:57,741 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:25:57,742 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:25:57,743 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:25:57,743 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:25:57,743 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:25:57,743 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:25:57,743 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3755750>, 'start_response': <function repl_start_response at 0x37aa2a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ef4550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2ef4810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2ef4790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test1', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37b38d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3755750>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37785d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test1'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37b38d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2ef4850>, 'wsgi.input': <socket._fileobject object at 0x2e7ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510357.7438991, '_creation_time': 1266510357.7438991}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37785d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3778590>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ff47d5a11c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x22434d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test1', 'action': u'view'}
 
17:25:57,750 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:25:57,750 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:25:57,750 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:26:24,410 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:26:24,410 DEBUG [pylons.configuration] Pushing process configuration
 
17:26:24,414 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:26:24,414 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:26:24,421 DEBUG [pylons.templating] Initialized Buffet object
 
17:26:24,422 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:26:24,424 DEBUG [paste.httpserver.ThreadPool] Started new worker 139689929406736: Initial worker pool
 
17:26:24,424 DEBUG [paste.httpserver.ThreadPool] Started new worker 139689921014032: Initial worker pool
 
17:26:24,424 DEBUG [paste.httpserver.ThreadPool] Started new worker 139689912621328: Initial worker pool
 
17:26:24,425 DEBUG [paste.httpserver.ThreadPool] Started new worker 139689904228624: Initial worker pool
 
17:26:24,425 DEBUG [paste.httpserver.ThreadPool] Started new worker 139689895835920: Initial worker pool
 
17:26:24,425 DEBUG [paste.httpserver.ThreadPool] Started new worker 139689887443216: Initial worker pool
 
17:26:24,425 DEBUG [paste.httpserver.ThreadPool] Started new worker 139689879050512: Initial worker pool
 
17:26:24,426 DEBUG [paste.httpserver.ThreadPool] Started new worker 139689870657808: Initial worker pool
 
17:26:24,426 DEBUG [paste.httpserver.ThreadPool] Started new worker 139689862265104: Initial worker pool
 
17:26:24,426 DEBUG [paste.httpserver.ThreadPool] Started new worker 139689853872400: Initial worker pool
 
17:26:49,766 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:26:49,770 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:26:49,771 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:26:49,823 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:26:49,823 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:26:49,823 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:26:49,823 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:26:49,823 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x298c490>, 'start_response': <function repl_start_response at 0x298ab90>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2899550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2899810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2899790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x298c7d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2899850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x298c490>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x298c290>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x298c7d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2899850>, 'wsgi.input': <socket._fileobject object at 0x2823a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510409.8242519, '_creation_time': 1266510409.8242519}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x298c290>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x28aef50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0c1cfb31c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1be4550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'lotto', 'action': u'view'}
 
17:26:50,780 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:26:50,780 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:26:50,780 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:26:50,787 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:26:50,788 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:26:50,789 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:26:50,789 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:26:50,789 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:26:50,789 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:26:50,789 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2e27710>, 'start_response': <function repl_start_response at 0x313bc08>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2899550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2899810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2899790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2e03a10>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2899850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2e27710>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x298c3d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2e03a10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2899850>, 'wsgi.input': <socket._fileobject object at 0x2823ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510410.789866, '_creation_time': 1266510410.789866}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x298c3d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x298c050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0c1cfb31c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1be4550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'lotto', 'action': u'view'}
 
17:26:51,753 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:26:51,754 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:26:51,754 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:26:51,756 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:26:51,757 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:26:51,758 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:26:51,758 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:26:51,758 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:26:51,758 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:26:51,758 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2f8e110>, 'start_response': <function repl_start_response at 0x316c848>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2899550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2899810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2899790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3122a10>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2899850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2f8e110>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2e27650>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3122a10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2899850>, 'wsgi.input': <socket._fileobject object at 0x2df18d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510411.7590699, '_creation_time': 1266510411.7590699}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2e27650>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2e273d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0c1cfb31c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1be4550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'lotto', 'action': u'view'}
 
17:26:52,682 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:26:52,682 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:26:52,683 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:26:52,684 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:26:52,685 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:26:52,685 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:26:52,685 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:26:52,686 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:26:52,686 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:26:52,686 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3157690>, 'start_response': <function repl_start_response at 0x316cde8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2899550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2899810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2899790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=cfbb47c42aab0f85717002791cf34a2e8fee1045', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3157450>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2899850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3157690>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2f8e450>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3157450>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2899850>, 'wsgi.input': <socket._fileobject object at 0x2f94dd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510412.6865339, '_creation_time': 1266510412.6865339}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2f8e450>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2f85150>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f0c1cfb31c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1be4550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'lotto', 'action': u'view'}
 
17:26:53,609 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:26:53,609 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:26:53,610 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:27:24,179 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:27:24,179 DEBUG [pylons.configuration] Pushing process configuration
 
17:27:24,183 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:27:24,183 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:27:24,189 DEBUG [pylons.templating] Initialized Buffet object
 
17:27:24,189 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:27:24,192 DEBUG [paste.httpserver.ThreadPool] Started new worker 140295837104400: Initial worker pool
 
17:27:24,194 DEBUG [paste.httpserver.ThreadPool] Started new worker 140295828711696: Initial worker pool
 
17:27:24,195 DEBUG [paste.httpserver.ThreadPool] Started new worker 140295820318992: Initial worker pool
 
17:27:24,195 DEBUG [paste.httpserver.ThreadPool] Started new worker 140295811926288: Initial worker pool
 
17:27:24,195 DEBUG [paste.httpserver.ThreadPool] Started new worker 140295803533584: Initial worker pool
 
17:27:24,195 DEBUG [paste.httpserver.ThreadPool] Started new worker 140295795140880: Initial worker pool
 
17:27:24,196 DEBUG [paste.httpserver.ThreadPool] Started new worker 140295786748176: Initial worker pool
 
17:27:24,196 DEBUG [paste.httpserver.ThreadPool] Started new worker 140295778355472: Initial worker pool
 
17:27:24,196 DEBUG [paste.httpserver.ThreadPool] Started new worker 140295769962768: Initial worker pool
 
17:27:24,196 DEBUG [paste.httpserver.ThreadPool] Started new worker 140295761570064: Initial worker pool
 
17:29:00,917 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:29:00,923 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:29:00,926 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:29:01,009 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:29:01,009 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:29:01,009 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:29:01,009 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:29:01,009 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x321b510>, 'start_response': <function repl_start_response at 0x3219d70>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3129550>, 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3129790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x321b850>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3129810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x321b510>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x321b310>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x321b850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'wsgi.input': <socket._fileobject object at 0x30b3a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510541.010186, '_creation_time': 1266510541.010186}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x321b310>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x313ef90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f992fe4f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x24774d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
17:29:01,924 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:29:01,925 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:29:01,975 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:29:01,977 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:29:01,977 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:29:01,977 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:29:01,978 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:29:01,978 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:29:01,978 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x36b66d0>, 'start_response': <function repl_start_response at 0x36b1b90>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3129550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3129790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x36b6410>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x36b66d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3129810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x321b450>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x36b6410>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'wsgi.input': <socket._fileobject object at 0x30b3bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510541.9785759, '_creation_time': 1266510541.010186}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x321b450>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x36b6ed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f992fe4f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x24774d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
17:29:02,930 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:29:02,930 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:29:10,840 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:29:10,842 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:29:10,842 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:29:10,842 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:29:10,842 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:29:10,842 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
17:29:10,842 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test_marcin'}
 
17:29:10,879 INFO  [pylons_app.controllers.hg] test_marcin repo is free for creation
 
17:29:10,879 INFO  [pylons_app.controllers.hg] test_marcin repo is free for creation
 
17:29:10,880 INFO  [pylons_app.controllers.hg] creating repo test_marcin in /home/marcink/python_workspace/test_marcin
 
17:29:10,880 INFO  [pylons_app.controllers.hg] creating repo test_marcin in /home/marcink/python_workspace/test_marcin
 
17:29:11,063 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:29:11,064 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:29:12,549 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:29:12,550 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:29:12,551 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:29:12,551 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:29:12,551 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:29:12,551 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:29:12,551 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x36c5c50>, 'start_response': <function repl_start_response at 0x39e2cf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3129550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/add/test_marcin', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3129790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x36c5ed0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x36c5c50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3129810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x36cc410>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x36c5ed0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'wsgi.input': <socket._fileobject object at 0x367ecd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510552.5523169, '_creation_time': 1266510541.010186}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x36cc410>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x36cc0d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f992fe4f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x24774d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
17:29:13,493 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:29:13,493 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:29:13,541 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:29:13,543 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:29:13,543 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:29:13,543 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:29:13,543 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:29:13,543 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:29:13,544 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3855850>, 'start_response': <function repl_start_response at 0x3a095f0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3129550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3129790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x39f5c50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3855850>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3129810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3846250>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x39f5c50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'wsgi.input': <socket._fileobject object at 0x367ee50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510553.544246, '_creation_time': 1266510541.010186}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3846250>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x39e9e50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f992fe4f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x24774d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
17:29:14,497 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:29:14,497 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:29:42,003 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:29:42,006 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:29:42,006 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:29:42,007 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:29:42,007 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:29:42,007 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:29:42,007 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x39e9f50>, 'start_response': <function repl_start_response at 0x39e2de8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3129550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3129810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3129790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x321b110>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x39e9f50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3846a10>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x321b110>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'wsgi.input': <socket._fileobject object at 0x367ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510582.007668, '_creation_time': 1266510582.007668}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3846a10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3691c50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f992fe4f1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x24774d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:29:42,941 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:29:42,941 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:29:42,941 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:29:42,950 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:29:42,951 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:29:42,951 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:29:42,952 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:29:42,952 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:29:42,952 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:29:42,952 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x39f5110>, 'start_response': <function repl_start_response at 0x3a09a28>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3129550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3129810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3129790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x39f5dd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x39f5110>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x36cc2d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x39f5dd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'wsgi.input': <socket._fileobject object at 0x367ecd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510582.9525809, '_creation_time': 1266510582.9525809}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x36cc2d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x36c5b50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f992fe4f1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x24774d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:29:43,862 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:29:43,863 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:29:43,863 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:29:43,864 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:29:43,865 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:29:43,865 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:29:43,866 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:29:43,866 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:29:43,866 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:29:43,866 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x39f5e50>, 'start_response': <function repl_start_response at 0x3a100c8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3129550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3129810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3129790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3a03690>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x39f5e50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x38551d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3a03690>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'wsgi.input': <socket._fileobject object at 0x386c850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510583.8666301, '_creation_time': 1266510583.8666301}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x38551d0>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x36cc290>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f992fe4f1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x24774d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:29:44,792 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:29:44,792 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:29:44,793 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:29:44,807 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:29:44,809 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:29:44,809 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:29:44,810 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:29:44,810 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:29:44,810 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
17:29:44,811 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:29:44,811 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:29:44,811 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:29:44,811 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:29:44,811 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x384c550 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x2c76758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x31295d0>, 'url': <routes.util.URLGenerator object at 0x36b6a90>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x36b6f50 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x384c550 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3a0a5f0>, 'session': {'_accessed_time': 1266510584.8120949, '_creation_time': 1266510584.8120949}, 'N_': <function gettext_noop at 0x2c76410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x31295d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x3129390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x31295d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x384c110 200 OK>, '_': <function ugettext at 0x2c76578>}
 
17:29:44,813 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:29:44,813 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:30:23,059 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:30:23,060 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:30:23,060 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:30:23,061 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:30:23,061 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:30:23,061 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:30:23,061 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3846410>, 'start_response': <function repl_start_response at 0x3a10d70>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3129550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3129810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3129790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3846250>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3846410>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x384c250>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3846250>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'wsgi.input': <socket._fileobject object at 0x367ec50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510623.061686, '_creation_time': 1266510623.061686}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x384c250>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3a03b50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f992fe4f1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x24774d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:30:23,997 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:30:23,998 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:30:23,998 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:30:24,010 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:30:24,011 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:30:24,012 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:30:24,012 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:30:24,012 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:30:24,012 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:30:24,012 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x383cc10>, 'start_response': <function repl_start_response at 0x3a162a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3129550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3129810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3129790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3ac0ad0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x383cc10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3846990>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3ac0ad0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'wsgi.input': <socket._fileobject object at 0x386c8d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510624.013072, '_creation_time': 1266510624.013072}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3846990>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x39e9fd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f992fe4f1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x24774d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:30:24,928 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:30:24,928 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:30:24,928 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:30:24,929 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:30:24,930 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:30:24,931 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:30:24,931 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:30:24,931 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:30:24,931 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:30:24,931 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3ac0d50>, 'start_response': <function repl_start_response at 0x3a167d0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3129550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x3129810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3129790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3ac0510>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3ac0d50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x36b6810>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3ac0510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3129850>, 'wsgi.input': <socket._fileobject object at 0x386c050 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510624.9318349, '_creation_time': 1266510624.9318349}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x36b6810>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x39f57d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f992fe4f1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x24774d0>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:30:25,873 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:30:25,873 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:30:25,873 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:30:25,889 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:30:25,922 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:30:25,923 DEBUG [pylons.wsgiapp] No controller found, returning 404 HTTP Not Found
 
17:30:25,923 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:30:25,924 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
17:30:25,924 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:30:25,924 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:30:25,924 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
17:30:25,924 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
17:30:25,924 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3ac0250 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x2c76758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x31295d0>, 'url': <routes.util.URLGenerator object at 0x3ac0710>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3ac03d0 POST http://127.0.0.1:5000/error/document?cmd=unbundle&heads=0000000000000000000000000000000000000000>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3ac0250 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x3a12638>, 'session': {'_accessed_time': 1266510625.9251561, '_creation_time': 1266510625.9251561}, 'N_': <function gettext_noop at 0x2c76410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x31295d0>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x3129390>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x31295d0>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3ac08d0 200 OK>, '_': <function ugettext at 0x2c76578>}
 
17:30:25,925 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
17:30:25,926 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:30:51,417 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:30:51,417 DEBUG [pylons.configuration] Pushing process configuration
 
17:30:51,429 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:30:51,429 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:30:51,433 DEBUG [pylons.templating] Initialized Buffet object
 
17:30:51,434 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:30:51,436 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336506431760: Initial worker pool
 
17:30:51,436 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336498039056: Initial worker pool
 
17:30:51,437 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336489646352: Initial worker pool
 
17:30:51,437 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336481253648: Initial worker pool
 
17:30:51,437 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336472860944: Initial worker pool
 
17:30:51,437 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336464468240: Initial worker pool
 
17:30:51,437 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336456075536: Initial worker pool
 
17:30:51,438 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336447682832: Initial worker pool
 
17:30:51,438 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336439290128: Initial worker pool
 
17:30:51,438 DEBUG [paste.httpserver.ThreadPool] Started new worker 140336430897424: Initial worker pool
 
17:30:53,809 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:30:53,812 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:30:53,815 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:30:53,870 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:30:53,870 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:30:53,870 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:30:53,870 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:30:53,871 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3174490>, 'start_response': <function repl_start_response at 0x3173cf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3081510>, 'beaker.cache': <beaker.cache.CacheManager object at 0x30817d0>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3081750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31747d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3081810>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3174490>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3174250>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31747d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3081810>, 'wsgi.input': <socket._fileobject object at 0x300ca50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510653.8715, '_creation_time': 1266510653.8715}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3174250>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3097f10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa2a7f9a1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23cb550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:30:54,914 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:30:54,914 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:30:54,914 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:30:54,923 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:30:54,924 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:30:54,925 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:30:54,925 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:30:54,925 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:30:54,925 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:30:54,925 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3610910>, 'start_response': <function repl_start_response at 0x391ff50>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3081510>, 'beaker.cache': <beaker.cache.CacheManager object at 0x30817d0>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3081750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x35ebb10>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3081810>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3610910>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3174390>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x35ebb10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3081810>, 'wsgi.input': <socket._fileobject object at 0x300cad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510654.9259751, '_creation_time': 1266510654.9259751}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3174390>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3097fd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa2a7f9a1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23cb550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:30:55,966 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:30:55,967 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:30:55,967 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:30:55,982 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:30:55,994 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:30:55,995 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:30:55,995 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:30:55,995 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:30:55,995 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:30:55,995 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x391df90>, 'start_response': <function repl_start_response at 0x3936500>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3081510>, 'beaker.cache': <beaker.cache.CacheManager object at 0x30817d0>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3081750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x391d390>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3081810>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x391df90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3770e90>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x391d390>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3081810>, 'wsgi.input': <socket._fileobject object at 0x35dc8d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510655.9960029, '_creation_time': 1266510655.9960029}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3770e90>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3610510>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa2a7f9a1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23cb550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:30:56,939 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:30:56,940 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:30:56,940 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:30:56,957 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:30:56,958 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:30:56,958 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:30:56,958 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:30:56,958 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:30:56,958 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:30:56,958 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3940750>, 'start_response': <function repl_start_response at 0x3936b18>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x3081510>, 'beaker.cache': <beaker.cache.CacheManager object at 0x30817d0>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3081750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'POST', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=unbundle&heads=0000000000000000000000000000000000000000', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3940e50>>, 'CONTENT_LENGTH': '18864', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3081810>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3940750>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x391d690>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3940e50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3081810>, 'wsgi.input': <socket._fileobject object at 0x377edd0 length=18864>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510656.959183, '_creation_time': 1266510656.959183}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x391d690>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3925810>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa2a7f9a1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': 'application/octet-stream', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23cb550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:30:58,095 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:30:58,096 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:31:05,431 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:31:05,431 DEBUG [pylons.configuration] Pushing process configuration
 
17:31:05,434 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:31:05,434 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:31:05,438 DEBUG [pylons.templating] Initialized Buffet object
 
17:31:05,438 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:31:05,440 DEBUG [paste.httpserver.ThreadPool] Started new worker 140027508824336: Initial worker pool
 
17:31:05,441 DEBUG [paste.httpserver.ThreadPool] Started new worker 140027500431632: Initial worker pool
 
17:31:05,441 DEBUG [paste.httpserver.ThreadPool] Started new worker 140027492038928: Initial worker pool
 
17:31:05,441 DEBUG [paste.httpserver.ThreadPool] Started new worker 140027483646224: Initial worker pool
 
17:31:05,442 DEBUG [paste.httpserver.ThreadPool] Started new worker 140027475253520: Initial worker pool
 
17:31:05,442 DEBUG [paste.httpserver.ThreadPool] Started new worker 140027466860816: Initial worker pool
 
17:31:05,442 DEBUG [paste.httpserver.ThreadPool] Started new worker 140027458468112: Initial worker pool
 
17:31:05,442 DEBUG [paste.httpserver.ThreadPool] Started new worker 140027450075408: Initial worker pool
 
17:31:05,443 DEBUG [paste.httpserver.ThreadPool] Started new worker 140027441682704: Initial worker pool
 
17:31:05,443 DEBUG [paste.httpserver.ThreadPool] Started new worker 140027433290000: Initial worker pool
 
17:31:34,368 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:31:34,390 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:31:34,391 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:31:34,442 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:31:34,442 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:31:34,442 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:31:34,442 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:31:34,442 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2483590>, 'start_response': <function repl_start_response at 0x2481d70>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x238e510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x238e750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x24838d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2483590>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x238e7d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2483350>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x24838d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'wsgi.input': <socket._fileobject object at 0x2318a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510694.4430659, '_creation_time': 1266510694.4430659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2483350>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x23a4f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f5ab64851c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x16d8550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'test_marcin/', 'action': u'view'}
 
17:31:35,418 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:31:35,418 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:31:35,452 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:31:35,470 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:31:35,470 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:31:35,470 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:31:35,471 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:31:35,471 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:31:35,471 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2c3a550>, 'start_response': <function repl_start_response at 0x2c2fd70>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x238e510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/test_marcin/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x238e750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c3a7d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2c3a550>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x238e7d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x28f8c90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c3a7d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'wsgi.input': <socket._fileobject object at 0x2318bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510695.4716151, '_creation_time': 1266510694.4430659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x28f8c90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2a97450>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f5ab64851c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x16d8550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
17:31:36,667 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:31:36,667 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:32:03,088 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:32:03,090 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:32:03,090 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:32:03,090 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:32:03,090 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:32:03,090 DEBUG [pylons.controllers.core] Looking for u'add_repo' method to handle the request
 
17:32:03,090 DEBUG [pylons.controllers.core] Calling 'add_repo' method with keyword args: **{'new_repo': u'test_marcin'}
 
17:32:03,092 INFO  [pylons_app.controllers.hg] test_marcin repo is free for creation
 
17:32:03,092 INFO  [pylons_app.controllers.hg] test_marcin repo is free for creation
 
17:32:03,093 INFO  [pylons_app.controllers.hg] creating repo test_marcin in /home/marcink/python_workspace/test_marcin
 
17:32:03,093 INFO  [pylons_app.controllers.hg] creating repo test_marcin in /home/marcink/python_workspace/test_marcin
 
17:32:03,258 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:32:03,259 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:32:05,313 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:32:05,315 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:32:05,315 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:32:05,315 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:32:05,316 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:32:05,316 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:32:05,316 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2c4f210>, 'start_response': <function repl_start_response at 0x2c46c08>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x238e510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/add/test_marcin', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x238e750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c4f0d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2c4f210>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x238e7d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c4f650>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c4f0d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'wsgi.input': <socket._fileobject object at 0x2ac8bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510725.3166251, '_creation_time': 1266510694.4430659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c4f650>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2c3aed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f5ab64851c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x16d8550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
17:32:06,417 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:32:06,417 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:32:06,476 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:32:06,478 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:32:06,478 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:32:06,478 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:32:06,478 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:32:06,478 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:32:06,479 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2c459d0>, 'start_response': <function repl_start_response at 0x2c46cf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x238e510>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x238e750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c45f10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2c459d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x238e7d0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c45cd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c45f10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'wsgi.input': <socket._fileobject object at 0x2ac8c50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510726.4792631, '_creation_time': 1266510694.4430659}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c45cd0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2c45590>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f5ab64851c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x16d8550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
17:32:07,419 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:32:07,419 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:32:10,354 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:32:10,356 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:32:10,400 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:32:10,400 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:32:10,400 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:32:10,400 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:32:10,401 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2c4f610>, 'start_response': <function repl_start_response at 0x2c6d1b8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x238e510>, 'beaker.cache': <beaker.cache.CacheManager object at 0x238e7d0>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x238e750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c4f9d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2c4f610>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c45050>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c4f9d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'wsgi.input': <socket._fileobject object at 0x2ac8b50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510730.4014051, '_creation_time': 1266510730.4014051}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c45050>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x23a4e90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f5ab64851c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x16d8550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:32:11,389 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:32:11,389 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:32:11,389 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:32:11,399 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:32:11,401 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:32:11,401 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:32:11,401 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:32:11,402 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:32:11,402 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:32:11,402 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2d04e90>, 'start_response': <function repl_start_response at 0x2c46cf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x238e510>, 'beaker.cache': <beaker.cache.CacheManager object at 0x238e7d0>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x238e750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2d04f50>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2d04e90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2d04d50>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2d04f50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'wsgi.input': <socket._fileobject object at 0x2a8ae50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510731.4026029, '_creation_time': 1266510731.4026029}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2d04d50>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2d04c10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f5ab64851c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x16d8550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:32:12,367 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:32:12,367 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:32:12,367 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:32:12,368 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:32:12,369 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:32:12,370 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:32:12,370 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:32:12,370 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:32:12,370 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:32:12,370 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2d04710>, 'start_response': <function repl_start_response at 0x2481cf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x238e510>, 'beaker.cache': <beaker.cache.CacheManager object at 0x238e7d0>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x238e750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c3a3d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2d04710>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c4ff10>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c3a3d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'wsgi.input': <socket._fileobject object at 0x2318bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510732.3710101, '_creation_time': 1266510732.3710101}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c4ff10>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2c4f710>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f5ab64851c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x16d8550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:32:13,260 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:32:13,261 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:32:13,261 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:32:13,275 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:32:13,276 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:32:13,277 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:32:13,277 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:32:13,277 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:32:13,277 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:32:13,277 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x291cfd0>, 'start_response': <function repl_start_response at 0x2c6d7d0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x238e510>, 'beaker.cache': <beaker.cache.CacheManager object at 0x238e7d0>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x238e750>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'POST', 'PATH_INFO': '/test_marcin', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=unbundle&heads=0000000000000000000000000000000000000000', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x291ca90>>, 'CONTENT_LENGTH': '18864', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x291cfd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2d04a50>, {'action': u'view', 'controller': u'hg', 'path_info': 'test_marcin'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x291ca90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x238e810>, 'wsgi.input': <socket._fileobject object at 0x2ac8c50 length=18864>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510733.277714, '_creation_time': 1266510733.277714}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2d04a50>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2c45e10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f5ab64851c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': 'application/octet-stream', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x16d8550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'test_marcin', 'action': u'view'}
 
17:32:14,437 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:32:14,438 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:32:50,564 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:32:50,564 DEBUG [pylons.configuration] Pushing process configuration
 
17:32:50,568 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:32:50,568 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:32:50,572 DEBUG [pylons.templating] Initialized Buffet object
 
17:32:50,572 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:32:50,572 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
17:32:50,593 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724820314384: Initial worker pool
 
17:32:50,593 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724811921680: Initial worker pool
 
17:32:50,593 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724803528976: Initial worker pool
 
17:32:50,594 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724795136272: Initial worker pool
 
17:32:50,594 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724786743568: Initial worker pool
 
17:32:50,594 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724778350864: Initial worker pool
 
17:32:50,595 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724769958160: Initial worker pool
 
17:32:50,595 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724761565456: Initial worker pool
 
17:32:50,595 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724753172752: Initial worker pool
 
17:32:50,595 DEBUG [paste.httpserver.ThreadPool] Started new worker 140724744780048: Initial worker pool
 
17:35:18,839 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:35:18,842 DEBUG [routes.middleware] Matched GET /mass_account_manager/
 
17:35:18,842 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:35:18,842 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}
 
17:35:18,843 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:35:18,844 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:35:18,912 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:35:18,912 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:35:18,913 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:35:18,913 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:35:18,913 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2de6690>, 'start_response': <function repl_start_response at 0x2de4d70>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf2550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2cf2790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2de69d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2de6690>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2cf2810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2de6410>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2cf2850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2de69d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2cf2850>, 'wsgi.input': <socket._fileobject object at 0x2c7ca50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510918.913573, '_creation_time': 1266510918.913573}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2de6410>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2de6090>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffd114941c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20414d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/', 'action': u'view'}
 
17:35:20,038 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:35:20,039 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:35:20,131 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:35:20,140 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:35:20,141 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:35:20,141 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:35:20,141 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:35:20,142 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:35:20,142 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:35:20,142 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:35:20,142 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:35:20,142 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3280610>, 'start_response': <function repl_start_response at 0x35bc6e0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf2550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2cf2790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3415590>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3280610>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2cf2810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x340f850>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2cf2850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3415590>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2cf2850>, 'wsgi.input': <socket._fileobject object at 0x2c7cbd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510920.1430869, '_creation_time': 1266510918.913573}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x340f850>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2de6350>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffd114941c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20414d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
17:35:21,067 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:35:21,067 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:35:26,068 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:35:26,076 DEBUG [routes.middleware] Matched GET /mass_account_manager/
 
17:35:26,076 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:35:26,076 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}
 
17:35:26,077 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:35:26,077 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:35:26,077 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:35:26,077 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:35:26,077 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:35:26,077 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x35b3310>, 'start_response': <function repl_start_response at 0x35c2230>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf2550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2cf2790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x35b3710>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x35b3310>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2cf2810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x33f2590>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2cf2850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x35b3710>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2cf2850>, 'wsgi.input': <socket._fileobject object at 0x2c7cad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510926.0781159, '_creation_time': 1266510918.913573}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x33f2590>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x325bd90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffd114941c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20414d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/', 'action': u'view'}
 
17:35:26,995 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:35:26,995 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:35:27,028 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:35:27,029 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
17:35:27,029 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:35:27,029 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
17:35:27,029 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:35:27,030 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:35:27,030 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:35:27,030 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:35:27,030 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:35:27,030 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2de6050>, 'start_response': <function repl_start_response at 0x35bca28>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf2550>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2cf2790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x33f2a10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100216 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=ec1f911f486328328b82fe62b9ecfb8c8e67ce074366ad71ec9c1fedd2deef3b48609ea4', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2de6050>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2cf2810>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3280b90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2cf2850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x33f2a10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2cf2850>, 'wsgi.input': <socket._fileobject object at 0x33ede50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266510927.0309989, '_creation_time': 1266510918.913573}, 'wsgi.multithread': True, 'HTTP_CACHE_CONTROL': 'max-age=0', 'routes.url': <routes.util.URLGenerator object at 0x3280b90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x359ef10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7ffd114941c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x20414d0>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
17:35:27,979 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:35:27,980 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
17:35:41,915 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:35:41,915 DEBUG [pylons.configuration] Pushing process configuration
 
17:35:41,918 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:35:41,919 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:35:41,922 DEBUG [pylons.templating] Initialized Buffet object
 
17:35:41,922 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:35:41,923 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
17:35:41,925 DEBUG [paste.httpserver.ThreadPool] Started new worker 139817129953552: Initial worker pool
 
17:35:41,925 DEBUG [paste.httpserver.ThreadPool] Started new worker 139817121560848: Initial worker pool
 
17:35:41,925 DEBUG [paste.httpserver.ThreadPool] Started new worker 139817113168144: Initial worker pool
 
17:35:41,926 DEBUG [paste.httpserver.ThreadPool] Started new worker 139817104775440: Initial worker pool
 
17:35:41,926 DEBUG [paste.httpserver.ThreadPool] Started new worker 139817096382736: Initial worker pool
 
17:35:41,926 DEBUG [paste.httpserver.ThreadPool] Started new worker 139817087990032: Initial worker pool
 
17:35:41,926 DEBUG [paste.httpserver.ThreadPool] Started new worker 139817079597328: Initial worker pool
 
17:35:41,927 DEBUG [paste.httpserver.ThreadPool] Started new worker 139817071204624: Initial worker pool
 
17:35:41,927 DEBUG [paste.httpserver.ThreadPool] Started new worker 139817062811920: Initial worker pool
 
17:35:41,927 DEBUG [paste.httpserver.ThreadPool] Started new worker 139817054419216: Initial worker pool
 
17:44:52,578 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
17:44:52,579 DEBUG [pylons.configuration] Pushing process configuration
 
17:44:52,582 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
17:44:52,582 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
17:44:52,586 DEBUG [pylons.templating] Initialized Buffet object
 
17:44:52,586 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
17:44:52,586 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
17:44:52,589 DEBUG [paste.httpserver.ThreadPool] Started new worker 140351700621584: Initial worker pool
 
17:44:52,590 DEBUG [paste.httpserver.ThreadPool] Started new worker 140351692228880: Initial worker pool
 
17:44:52,590 DEBUG [paste.httpserver.ThreadPool] Started new worker 140351683836176: Initial worker pool
 
17:44:52,590 DEBUG [paste.httpserver.ThreadPool] Started new worker 140351675443472: Initial worker pool
 
17:44:52,590 DEBUG [paste.httpserver.ThreadPool] Started new worker 140351667050768: Initial worker pool
 
17:44:52,590 DEBUG [paste.httpserver.ThreadPool] Started new worker 140351658658064: Initial worker pool
 
17:44:52,591 DEBUG [paste.httpserver.ThreadPool] Started new worker 140351650265360: Initial worker pool
 
17:44:52,591 DEBUG [paste.httpserver.ThreadPool] Started new worker 140351641872656: Initial worker pool
 
17:44:52,591 DEBUG [paste.httpserver.ThreadPool] Started new worker 140351633479952: Initial worker pool
 
17:44:52,592 DEBUG [paste.httpserver.ThreadPool] Started new worker 140351625087248: Initial worker pool
 
17:45:10,225 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:45:10,228 DEBUG [routes.middleware] Matched GET /hg_app
 
17:45:10,228 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:45:10,228 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}
 
17:45:10,228 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:45:10,229 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:45:10,283 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
17:45:10,299 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:45:10,299 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:45:10,299 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:45:10,299 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x30af4d0>, 'start_response': <function repl_start_response at 0x30aecf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2fbb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2fbb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2fbb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x30af810>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2fbb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '192.168.66.71', 'REMOTE_ADDR': '192.168.2.135', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x30af4d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x30af390>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x30af810>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2fbb850>, 'wsgi.input': <socket._fileobject object at 0x2f45a50 length=0>, 'HTTP_HOST': '192.168.66.71:5000', 'beaker.session': {'_accessed_time': 1266511510.299964, '_creation_time': 1266511510.299964}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x30af390>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2fd1f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa63200b1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2305550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'hg_app', 'action': u'view'}
 
17:45:11,295 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:45:11,296 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:45:11,296 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:45:11,308 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:45:11,319 DEBUG [routes.middleware] Matched GET /hg_app
 
17:45:11,320 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:45:11,320 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}
 
17:45:11,320 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:45:11,320 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:45:11,321 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:45:11,321 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:45:11,321 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:45:11,321 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3525950>, 'start_response': <function repl_start_response at 0x3858f50>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2fbb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2fbb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2fbb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=heads', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x36185d0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2fbb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '192.168.66.71', 'REMOTE_ADDR': '192.168.2.135', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3525950>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x30af410>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x36185d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2fbb850>, 'wsgi.input': <socket._fileobject object at 0x2f45ad0 length=0>, 'HTTP_HOST': '192.168.66.71:5000', 'beaker.session': {'_accessed_time': 1266511511.3216901, '_creation_time': 1266511511.3216901}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x30af410>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x30af210>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa63200b1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2305550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'hg_app', 'action': u'view'}
 
17:45:12,269 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:45:12,269 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:45:12,269 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:45:12,272 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:45:12,273 DEBUG [routes.middleware] Matched GET /hg_app
 
17:45:12,273 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:45:12,273 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}
 
17:45:12,273 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:45:12,274 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:45:12,274 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:45:12,274 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:45:12,274 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:45:12,274 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3857e50>, 'start_response': <function repl_start_response at 0x3870aa0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2fbb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2fbb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2fbb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'cmd=capabilities', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3857910>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2fbb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '192.168.66.71', 'REMOTE_ADDR': '192.168.2.135', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3857e50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x354a910>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3857910>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2fbb850>, 'wsgi.input': <socket._fileobject object at 0x35168d0 length=0>, 'HTTP_HOST': '192.168.66.71:5000', 'beaker.session': {'_accessed_time': 1266511512.2750239, '_creation_time': 1266511512.2750239}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x354a910>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x354a790>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa63200b1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2305550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'hg_app', 'action': u'view'}
 
17:45:13,186 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:45:13,186 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:45:13,186 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:45:13,189 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
17:45:13,189 DEBUG [routes.middleware] Matched GET /hg_app
 
17:45:13,190 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
17:45:13,190 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}
 
17:45:13,190 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
17:45:13,190 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
17:45:13,191 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
17:45:13,191 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
17:45:13,191 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
17:45:13,191 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x38796d0>, 'start_response': <function repl_start_response at 0x388c0c8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2fbb550>, 'beaker.cache': <beaker.cache.CacheManager object at 0x2fbb810>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2fbb790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': 'bases=0000000000000000000000000000000000000000&cmd=changegroupsubset&heads=058f63b6c2ff15c53b17e1af3fd876a450698518', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3879fd0>>, 'CONTENT_LENGTH': '0', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2fbb850>, 'HTTP_USER_AGENT': 'mercurial/proto-1.0', 'SERVER_NAME': '192.168.66.71', 'REMOTE_ADDR': '192.168.2.135', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x38796d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x36b5290>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app'}), 'SERVER_PORT': '5000', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3879fd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2fbb850>, 'wsgi.input': <socket._fileobject object at 0x3625dd0 length=0>, 'HTTP_HOST': '192.168.66.71:5000', 'beaker.session': {'_accessed_time': 1266511513.1916749, '_creation_time': 1266511513.1916749}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x36b5290>, 'HTTP_ACCEPT': 'application/mercurial-0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x36b5090>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fa63200b1c8>, 'wsgi.multiprocess': False, 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2305550>, 'HTTP_ACCEPT_ENCODING': 'identity'}, 'path_info': 'hg_app', 'action': u'view'}
 
17:45:14,103 DEBUG [pylons.controllers.core] Assuming controller returned an iterable, setting it as pylons.response.app_iter
 
17:45:14,114 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
17:45:14,114 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
17:45:25,141 INFO  [paste.httpserver.ThreadPool] Shutting down threadpool
 
12:15:47,808 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
12:15:47,836 DEBUG [pylons.configuration] Pushing process configuration
 
12:15:47,849 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
12:15:47,850 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
12:15:47,860 DEBUG [pylons.templating] Initialized Buffet object
 
12:15:47,861 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
12:15:47,861 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
12:15:47,865 DEBUG [paste.httpserver.ThreadPool] Started new worker 140166778497296: Initial worker pool
 
12:15:47,865 DEBUG [paste.httpserver.ThreadPool] Started new worker 140166770104592: Initial worker pool
 
12:15:47,865 DEBUG [paste.httpserver.ThreadPool] Started new worker 140166761711888: Initial worker pool
 
12:15:47,866 DEBUG [paste.httpserver.ThreadPool] Started new worker 140166753319184: Initial worker pool
 
12:15:47,866 DEBUG [paste.httpserver.ThreadPool] Started new worker 140166744926480: Initial worker pool
 
12:15:47,866 DEBUG [paste.httpserver.ThreadPool] Started new worker 140166736533776: Initial worker pool
 
12:15:47,867 DEBUG [paste.httpserver.ThreadPool] Started new worker 140166728141072: Initial worker pool
 
12:15:47,867 DEBUG [paste.httpserver.ThreadPool] Started new worker 140166719748368: Initial worker pool
 
12:15:47,867 DEBUG [paste.httpserver.ThreadPool] Started new worker 140166711355664: Initial worker pool
 
12:15:47,867 DEBUG [paste.httpserver.ThreadPool] Started new worker 140166702962960: Initial worker pool
 
12:16:08,052 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
12:16:08,055 DEBUG [routes.middleware] Matched GET /
 
12:16:08,055 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
12:16:08,055 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
12:16:08,056 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
12:16:08,061 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
12:16:08,555 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
12:16:08,555 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
12:16:08,555 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
12:16:08,555 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
12:16:08,556 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x1d2b690>, 'start_response': <function repl_start_response at 0x1d35050>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x1d1ee10>, 'beaker.cache': <beaker.cache.CacheManager object at 0x1d29110>, 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1d29090>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x1d2b9d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x1d2b690>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x1d2b490>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x1d2b9d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'wsgi.input': <socket._fileobject object at 0x1d10350 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266664568.5564301, '_creation_time': 1266664568.5564301}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x1d2b490>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1d2b150>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f7b22e6d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x106ed50>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
12:16:11,822 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
12:16:11,823 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
12:16:11,888 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
12:16:11,897 DEBUG [paste.httpserver.ThreadPool] Added task (1 tasks queued)
 
12:16:11,898 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
12:16:11,898 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
12:16:11,899 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
12:16:11,899 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
12:16:11,899 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
12:16:11,900 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
12:16:11,900 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
12:16:11,900 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
12:16:11,900 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2264990>, 'start_response': <function repl_start_response at 0x2260d70>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x1d1ee10>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1d29090>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2264f10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=044d7403781bb7a7943e21cd241aa1729c42f14a23ba0311c0ae3136b28d7c3d67158c28', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2264990>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1d29110>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2264a50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2264f10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'wsgi.input': <socket._fileobject object at 0x1d10450 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266664571.900681, '_creation_time': 1266664568.5564301}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2264a50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2264dd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f7b22e6d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x106ed50>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
12:16:12,019 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
12:16:12,019 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
12:16:12,019 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
12:16:12,019 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
12:16:12,020 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
12:16:12,020 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
12:16:12,020 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
12:16:12,020 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
12:16:12,020 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2257c90>, 'start_response': <function repl_start_response at 0x2260cf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x1d1ee10>, 'HTTP_COOKIE': 'pylons_app=044d7403781bb7a7943e21cd241aa1729c42f14a23ba0311c0ae3136b28d7c3d67158c28', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1d29090>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2257c10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1d29110>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2257c90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2257d90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2257c10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'wsgi.input': <socket._fileobject object at 0x2261550 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266664572.0208709, '_creation_time': 1266664568.5564301}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2257d90>, 'HTTP_ACCEPT': 'image/png,image/*;q=0.8,*/*;q=0.5', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x226eed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f7b22e6d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x106ed50>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/hgicon.png', 'action': u'view'}
 
12:16:14,902 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
12:16:14,942 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
12:16:14,942 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
12:16:14,943 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
12:16:14,943 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
12:16:14,943 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
12:16:14,943 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
12:16:14,943 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
12:16:14,944 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
12:16:14,944 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x24f6450>, 'start_response': <function repl_start_response at 0x22707d0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x1d1ee10>, 'HTTP_COOKIE': 'pylons_app=044d7403781bb7a7943e21cd241aa1729c42f14a23ba0311c0ae3136b28d7c3d67158c28', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1d29090>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x24f6510>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1d29110>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x24f6450>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x24f6150>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x24f6510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'wsgi.input': <socket._fileobject object at 0x2261950 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266664574.9444411, '_creation_time': 1266664568.5564301}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x24f6150>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x226ec10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f7b22e6d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x106ed50>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/hgicon.png', 'action': u'view'}
 
12:16:15,308 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
12:16:15,338 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
12:16:15,634 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
12:16:15,878 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
12:16:17,162 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
12:16:17,162 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:59:37,814 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:59:37,817 DEBUG [routes.middleware] Matched GET /
 
13:59:37,818 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:59:37,818 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:59:37,819 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:59:37,821 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:59:37,821 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:59:37,822 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:59:37,822 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:59:37,823 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x24f60d0>, 'start_response': <function repl_start_response at 0x2260aa0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x1d1ee10>, 'HTTP_COOKIE': 'pylons_app=044d7403781bb7a7943e21cd241aa1729c42f14a23ba0311c0ae3136b28d7c3d67158c28', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1d29090>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x24f64d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1d29110>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x24f60d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x24f6ad0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x24f64d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'wsgi.input': <socket._fileobject object at 0x2261750 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266670777.823997, '_creation_time': 1266670777.823997}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x24f6ad0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x22648d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f7b22e6d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x106ed50>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
13:59:39,522 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:59:39,522 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
13:59:39,559 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
13:59:39,560 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
13:59:39,560 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
13:59:39,560 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
13:59:39,560 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
13:59:39,561 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
13:59:39,561 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
13:59:39,561 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
13:59:39,561 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
13:59:39,561 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x226e350>, 'start_response': <function repl_start_response at 0x2270a28>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x1d1ee10>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1d29090>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x226e050>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x226e350>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1d29110>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x24f69d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x226e050>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'wsgi.input': <socket._fileobject object at 0x22615d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266670779.5618861, '_creation_time': 1266670777.823997}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x24f69d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2257cd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f7b22e6d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x106ed50>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
13:59:41,258 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
13:59:41,258 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:00:37,368 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:00:37,371 DEBUG [routes.middleware] Matched GET /
 
14:00:37,371 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:00:37,372 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:00:37,373 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:00:37,374 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:00:37,374 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:00:37,375 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:00:37,375 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:00:37,375 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2264e50>, 'start_response': <function repl_start_response at 0x2477140>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x1d1ee10>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1d29090>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2264410>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x1d29110>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2264e50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x226edd0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2264410>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'wsgi.input': <socket._fileobject object at 0x22616d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266670837.3765171, '_creation_time': 1266670777.823997}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x226edd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x24f63d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f7b22e6d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x106ed50>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:00:39,265 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:00:39,265 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:00:39,303 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:00:39,304 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:00:39,304 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:00:39,304 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:00:39,304 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:00:39,305 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:00:39,305 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:00:39,305 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:00:39,305 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:00:39,305 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x245edd0>, 'start_response': <function repl_start_response at 0x24775f0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x1d1ee10>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x1d29090>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x245ef50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x245edd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x1d29110>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x22643d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x245ef50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x1d29150>, 'wsgi.input': <socket._fileobject object at 0x2261b50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266670839.305872, '_creation_time': 1266670777.823997}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x22643d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x22c44d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f7b22e6d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x106ed50>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:00:40,997 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:00:40,998 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:01:07,646 INFO  [paste.httpserver.ThreadPool] Shutting down threadpool
 
14:01:07,647 DEBUG [paste.httpserver.ThreadPool] Worker 140166719748368 asked to SHUTDOWN
 
14:01:07,647 DEBUG [paste.httpserver.ThreadPool] Worker 140166711355664 asked to SHUTDOWN
 
14:01:07,648 DEBUG [paste.httpserver.ThreadPool] Worker 140166702962960 asked to SHUTDOWN
 
14:01:07,648 DEBUG [paste.httpserver.ThreadPool] Worker 140166778497296 asked to SHUTDOWN
 
14:01:07,649 DEBUG [paste.httpserver.ThreadPool] Worker 140166761711888 asked to SHUTDOWN
 
14:01:07,650 DEBUG [paste.httpserver.ThreadPool] Worker 140166770104592 asked to SHUTDOWN
 
14:01:07,650 DEBUG [paste.httpserver.ThreadPool] Worker 140166753319184 asked to SHUTDOWN
 
14:01:07,651 DEBUG [paste.httpserver.ThreadPool] Worker 140166744926480 asked to SHUTDOWN
 
14:01:07,651 INFO  [paste.httpserver.ThreadPool] All workers stopped
 
14:01:07,652 INFO  [paste.httpserver.ThreadPool] Shutting down threadpool
 
14:01:07,652 DEBUG [paste.httpserver.ThreadPool] Worker 140166736533776 asked to SHUTDOWN
 
14:01:07,653 DEBUG [paste.httpserver.ThreadPool] Worker 140166728141072 asked to SHUTDOWN
 
14:01:07,654 INFO  [paste.httpserver.ThreadPool] All workers stopped
 
14:01:13,024 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:01:13,024 DEBUG [pylons.configuration] Pushing process configuration
 
14:01:13,028 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:01:13,028 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:01:13,032 DEBUG [pylons.templating] Initialized Buffet object
 
14:01:13,032 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:01:13,032 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:01:13,034 DEBUG [paste.httpserver.ThreadPool] Started new worker 140450652420368: Initial worker pool
 
14:01:13,034 DEBUG [paste.httpserver.ThreadPool] Started new worker 140450644027664: Initial worker pool
 
14:01:13,035 DEBUG [paste.httpserver.ThreadPool] Started new worker 140450635634960: Initial worker pool
 
14:01:13,035 DEBUG [paste.httpserver.ThreadPool] Started new worker 140450627242256: Initial worker pool
 
14:01:13,035 DEBUG [paste.httpserver.ThreadPool] Started new worker 140450618849552: Initial worker pool
 
14:01:13,035 DEBUG [paste.httpserver.ThreadPool] Started new worker 140450610456848: Initial worker pool
 
14:01:13,036 DEBUG [paste.httpserver.ThreadPool] Started new worker 140450602064144: Initial worker pool
 
14:01:13,036 DEBUG [paste.httpserver.ThreadPool] Started new worker 140450593671440: Initial worker pool
 
14:01:13,036 DEBUG [paste.httpserver.ThreadPool] Started new worker 140450585278736: Initial worker pool
 
14:01:13,036 DEBUG [paste.httpserver.ThreadPool] Started new worker 140450576886032: Initial worker pool
 
14:01:24,493 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:01:24,501 DEBUG [routes.middleware] Matched GET /
 
14:01:24,501 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:01:24,502 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:01:24,503 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:01:24,506 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:01:24,561 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:01:24,562 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:01:24,562 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:01:24,562 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:01:24,562 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2156510>, 'start_response': <function repl_start_response at 0x2155d70>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2060550>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2060790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2156850>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2060810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2156510>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2156310>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2060850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2156850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2060850>, 'wsgi.input': <socket._fileobject object at 0x1feba50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266670884.562799, '_creation_time': 1266670884.562799}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2156310>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2075f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbd3b9b31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x13ab550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:01:24,810 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:01:24,811 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:01:24,814 DEBUG [paste.httpserver.ThreadPool] Added task (1 tasks queued)
 
14:01:24,831 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:01:24,848 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:01:24,849 DEBUG [paste.httpserver.ThreadPool] Added task (1 tasks queued)
 
14:01:24,850 DEBUG [paste.httpserver.ThreadPool] Added task (1 tasks queued)
 
14:01:24,915 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:01:24,963 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:01:24,965 DEBUG [routes.middleware] Matched GET /favicon.ico
 
14:01:24,965 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:01:24,966 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'favicon.ico'}
 
14:01:24,966 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:01:24,966 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:01:24,967 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:01:24,967 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:01:24,967 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:01:24,967 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x26e9d50>, 'start_response': <function repl_start_response at 0x26fb410>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2060550>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'favicon.ico'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2060790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/favicon.ico', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x26e9550>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2060810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x26e9d50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2156450>, {'action': u'view', 'controller': u'hg', 'path_info': 'favicon.ico'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2060850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x26e9550>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2060850>, 'wsgi.input': <socket._fileobject object at 0x26e2450 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266670884.9677529, '_creation_time': 1266670884.9677529}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2156450>, 'HTTP_ACCEPT': 'image/png,image/*;q=0.8,*/*;q=0.5', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x26e9510>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbd3b9b31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x13ab550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'favicon.ico', 'action': u'view'}
 
14:01:27,971 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:01:27,972 DEBUG [routes.middleware] Matched GET /favicon.ico
 
14:01:27,972 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:01:27,972 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'favicon.ico'}
 
14:01:27,972 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:01:27,973 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:01:27,973 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:01:27,973 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:01:27,973 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:01:27,973 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x26fc590>, 'start_response': <function repl_start_response at 0x26fb668>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2060550>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'favicon.ico'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2060790>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/favicon.ico', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x26fc150>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2060810>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x26fc590>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x26fc2d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'favicon.ico'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2060850>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x26fc150>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2060850>, 'wsgi.input': <socket._fileobject object at 0x26e2650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266670887.9739599, '_creation_time': 1266670887.9739599}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x26fc2d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x26e9810>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbd3b9b31c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x13ab550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'favicon.ico', 'action': u'view'}
 
14:04:34,851 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:04:34,851 DEBUG [pylons.configuration] Pushing process configuration
 
14:04:34,854 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:04:34,854 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:04:58,076 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:04:58,076 DEBUG [pylons.configuration] Pushing process configuration
 
14:04:58,080 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:04:58,080 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:04:59,808 DEBUG [pylons.templating] Initialized Buffet object
 
14:04:59,809 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:04:59,809 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:04:59,811 DEBUG [paste.httpserver.ThreadPool] Started new worker 140452378986768: Initial worker pool
 
14:04:59,811 DEBUG [paste.httpserver.ThreadPool] Started new worker 140452370594064: Initial worker pool
 
14:04:59,811 DEBUG [paste.httpserver.ThreadPool] Started new worker 140452362201360: Initial worker pool
 
14:04:59,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 140452353808656: Initial worker pool
 
14:04:59,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 140452345415952: Initial worker pool
 
14:04:59,812 DEBUG [paste.httpserver.ThreadPool] Started new worker 140452337023248: Initial worker pool
 
14:04:59,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 140452328630544: Initial worker pool
 
14:04:59,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 140452320237840: Initial worker pool
 
14:04:59,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 140452311845136: Initial worker pool
 
14:04:59,813 DEBUG [paste.httpserver.ThreadPool] Started new worker 140452303452432: Initial worker pool
 
14:05:07,504 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:07,512 DEBUG [routes.middleware] Matched GET /
 
14:05:07,512 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:07,513 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:07,514 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:07,517 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:07,550 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:05:07,551 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:07,551 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:07,551 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:07,551 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2c266d0>, 'start_response': <function repl_start_response at 0x2c2e2a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c26a10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2c266d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c264d0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c26a10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x2bcb1d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671107.5518091, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c264d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2c26210>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:05:07,555 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:07,555 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:07,590 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:07,595 DEBUG [paste.httpserver.ThreadPool] Added task (1 tasks queued)
 
14:05:07,600 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:05:07,600 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:07,600 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:05:07,601 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:07,601 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:07,601 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:07,601 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:07,601 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:07,601 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3014dd0>, 'start_response': <function repl_start_response at 0x301d1b8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x30148d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3014dd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3014e10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x30148d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x2bcb850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671107.6021039, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3014e10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3014f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:05:07,605 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:07,605 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:07,606 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
14:05:07,607 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:07,607 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
14:05:07,607 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:07,607 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:07,608 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:07,608 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:07,608 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:07,608 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x301b350>, 'start_response': <function repl_start_response at 0x301d848>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x301b390>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x301b350>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x301bc10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x301b390>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x2bcb6d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671107.6086221, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x301bc10>, 'HTTP_ACCEPT': 'image/png,image/*;q=0.8,*/*;q=0.5', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3014950>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/hgicon.png', 'action': u'view'}
 
14:05:07,624 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:07,624 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:09,167 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:09,169 DEBUG [routes.middleware] Matched GET /ftp_exchange/
 
14:05:09,169 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:09,169 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/'}
 
14:05:09,170 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:09,170 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:09,170 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:09,170 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:09,170 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:09,170 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x301bd10>, 'start_response': <function repl_start_response at 0x301ded8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/ftp_exchange/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x301bdd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x301bd10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x301b0d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x301bdd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x2f7edd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671109.171232, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x301b0d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3014610>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'ftp_exchange/', 'action': u'view'}
 
14:05:09,534 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:09,534 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:09,569 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:09,585 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:05:09,586 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:09,586 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:05:09,586 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:09,586 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:09,586 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:09,587 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:09,587 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:09,587 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3110750>, 'start_response': <function repl_start_response at 0x32a10c8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/ftp_exchange/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31180d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3110750>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x301b850>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31180d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x2f7ed50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671109.587492, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x301b850>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x301b6d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:05:09,590 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:09,591 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:32,790 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:32,793 DEBUG [routes.middleware] Matched GET /ftp_exchange/summary
 
14:05:32,793 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:32,794 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/summary'}
 
14:05:32,795 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:32,796 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:32,797 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:32,797 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:32,798 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:32,798 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3107410>, 'start_response': <function repl_start_response at 0x3290848>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/ftp_exchange/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/ftp_exchange/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3107e50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3107410>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3110dd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3107e50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x2f7ed50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671132.799273, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3110dd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3110450>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'ftp_exchange/summary', 'action': u'view'}
 
14:05:34,517 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:34,517 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:34,536 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:34,537 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:05:34,537 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:34,537 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:05:34,537 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:34,538 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:34,538 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:34,538 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:34,538 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:34,538 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3281fd0>, 'start_response': <function repl_start_response at 0x32a1500>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/ftp_exchange/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3281210>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3281fd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x30fcfd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3281210>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x3131c50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671134.5391469, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x30fcfd0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2bd5ed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:05:34,542 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:34,543 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:36,806 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:36,814 DEBUG [routes.middleware] Matched GET /f
 
14:05:36,815 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:36,815 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'f'}
 
14:05:36,815 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:36,815 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:36,816 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:36,816 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:36,816 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:36,816 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3281a90>, 'start_response': <function repl_start_response at 0x32ab140>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'f'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/f', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3291c10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3281a90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3281e90>, {'action': u'view', 'controller': u'hg', 'path_info': 'f'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3291c10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x2f7ebd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671136.816658, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3281e90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3110610>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'f', 'action': u'view'}
 
14:05:36,820 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 404 Not Found
 
14:05:36,820 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:36,821 DEBUG [routes.middleware] Matched GET /error/document
 
14:05:36,821 DEBUG [routes.middleware] Route path: '/error/{action}', defaults: {'action': 'index', 'controller': u'error'}
 
14:05:36,821 DEBUG [routes.middleware] Match dict: {'action': u'document', 'controller': u'error'}
 
14:05:36,821 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:36,822 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'error'
 
14:05:36,874 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.error', class: 'ErrorController'
 
14:05:36,875 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:36,876 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:36,876 DEBUG [pylons.controllers.core] Looking for u'document' method to handle the request
 
14:05:36,876 DEBUG [pylons.controllers.core] Calling 'document' method with keyword args: **{}
 
14:05:36,877 DEBUG [pylons.templating] Created render namespace with pylons vars: {'c': <pylons.util.AttribSafeContextObj at 0x3291090 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'ungettext': <function ungettext at 0x24f4758>, 'g': <pylons_app.lib.app_globals.Globals object at 0x2bd5e10>, 'url': <routes.util.URLGenerator object at 0x3291b90>, 'h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'request': <Request at 0x3291190 GET http://127.0.0.1:5000//error/document>, 'tmpl_context': <pylons.util.AttribSafeContextObj at 0x3291090 error_explanation=u'The resource could not be found', error_message='404 Not Found', redirect_module=u'Home page', redirect_time=5, serv_p='http://127.0.0.1:5000', url_redirect='/'>, 'translator': <gettext.GNUTranslations instance at 0x32a62d8>, 'session': {'_accessed_time': 1266671136.878418, '_creation_time': 1266671107.5518091}, 'N_': <function gettext_noop at 0x24f4410>, 'app_globals': <pylons_app.lib.app_globals.Globals object at 0x2bd5e10>, 'config': {'error_email_from': 'paste_error@localhost', 'beaker.session.auto': 'True', 'pylons.paths': {'templates': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'controllers': '/home/marcink/python_workspace/hg_app/pylons_app/controllers', 'static_files': '/home/marcink/python_workspace/hg_app/pylons_app/public', 'root': '/home/marcink/python_workspace/hg_app/pylons_app'}, 'pylons.errorware': {'debug': True}, 'pylons.response_options': {'headers': {'Pragma': 'no-cache', 'Cache-Control': 'no-cache'}, 'errors': 'strict', 'charset': 'utf-8', 'content_type': 'text/html'}, 'beaker.session.type': 'memory', 'pylons.c_attach_args': True, 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'smtp_server': 'localhost', 'app_conf': {'lang': 'en', 'beaker.session.auto': 'True', 'package': 'pylons_app', 'beaker.session.timeout': '3600', 'cache_dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.type': 'memory'}, 'pylons.cache_dir': '/home/marcink/python_workspace/hg_app/data', 'buffet.template_engines': [{'engine': 'mako', 'alias': None, 'template_root': '', 'template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}}], 'buffet.template_options': {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True}, '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'routes.map': <routes.mapper.Mapper object at 0x2bd5bd0>, 'here': '/home/marcink/python_workspace/hg_app', 'email_to': 'marcin.kuzminski@etelko.pl', 'pylons.h': <module 'pylons_app.lib.helpers' from '/home/marcink/python_workspace/hg_app/pylons_app/lib/helpers.pyc'>, 'pylons.package': 'pylons_app', 'pylons.g': <pylons_app.lib.app_globals.Globals object at 0x2bd5e10>, 'lang': 'en', 'global_conf': {'error_email_from': 'paste_error@localhost', 'email_to': 'marcin.kuzminski@etelko.pl', 'debug': 'true', '__file__': '/home/marcink/python_workspace/hg_app/development.ini', 'smtp_server': 'localhost', 'here': '/home/marcink/python_workspace/hg_app'}, 'package': 'pylons_app', 'cache.dir': '/home/marcink/python_workspace/hg_app/data', 'beaker.session.timeout': '3600', 'pylons.request_options': {'errors': 'replace', 'decode_param_names': False, 'charset': 'utf-8', 'language': 'en-us'}, 'pylons.db_engines': {}, 'pylons.strict_c': False, 'beaker.cache.data_dir': '/home/marcink/python_workspace/hg_app/data/cache', 'debug': True, 'beaker.session.key': 'pylons_app', 'beaker.session.secret': '#@^^F&VWUDCT%@$#WR^@&*IWEKF', 'beaker.session.data_dir': '/home/marcink/python_workspace/hg_app/data/sessions'}, 'response': <Response at 0x3291c50 200 OK>, '_': <function ugettext at 0x24f4578>}
 
14:05:36,895 DEBUG [pylons.controllers.core] Controller returned a unicode string , writing it to pylons.response
 
14:05:36,895 DEBUG [pylons.controllers.core] Calling Response object to return WSGI data
 
14:05:41,941 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:41,945 DEBUG [routes.middleware] Matched GET /
 
14:05:41,946 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:41,946 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:41,947 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:41,948 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:41,948 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:41,949 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:41,949 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:41,949 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3014c10>, 'start_response': <function repl_start_response at 0x32ab578>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3014950>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3014c10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2bd5ed0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3014950>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x2bcb150 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671141.950387, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2bd5ed0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3281510>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:05:41,953 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:41,953 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:42,013 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:42,014 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:05:42,014 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:42,014 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:05:42,015 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:42,015 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:42,015 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:42,015 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:42,015 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:42,015 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2c22510>, 'start_response': <function repl_start_response at 0x32ab2a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c22610>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2c22510>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3014f50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c22610>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x3131e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671142.016238, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3014f50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3281850>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:05:42,019 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:42,019 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:44,352 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:44,354 DEBUG [routes.middleware] Matched GET /sqlalchemy_model_generator/
 
14:05:44,355 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:44,356 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'sqlalchemy_model_generator/'}
 
14:05:44,356 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:44,356 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:44,357 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:44,357 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:44,357 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:44,357 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3107950>, 'start_response': <function repl_start_response at 0x32a1c08>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'sqlalchemy_model_generator/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/sqlalchemy_model_generator/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31073d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3107950>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3281f50>, {'action': u'view', 'controller': u'hg', 'path_info': 'sqlalchemy_model_generator/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31073d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x31310d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671144.3576839, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3281f50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3281e10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'sqlalchemy_model_generator/', 'action': u'view'}
 
14:05:44,365 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:44,365 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:05:44,451 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:05:44,452 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:05:44,452 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:05:44,452 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:05:44,452 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:05:44,453 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:05:44,453 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:05:44,453 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:05:44,453 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:05:44,453 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3291bd0>, 'start_response': <function repl_start_response at 0x32906e0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2bd5d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/sqlalchemy_model_generator/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2c22050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3291d90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3291bd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2c22bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x301b910>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3291d90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2c22f90>, 'wsgi.input': <socket._fileobject object at 0x3131d50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671144.454114, '_creation_time': 1266671107.5518091}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x301b910>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3118850>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fbda38751c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1cef550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:05:44,457 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:05:44,458 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:06:16,025 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:06:16,025 DEBUG [pylons.configuration] Pushing process configuration
 
14:06:16,029 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:06:16,029 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:06:17,698 DEBUG [pylons.templating] Initialized Buffet object
 
14:06:17,699 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:06:17,699 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:06:17,701 DEBUG [paste.httpserver.ThreadPool] Started new worker 139839855511824: Initial worker pool
 
14:06:17,701 DEBUG [paste.httpserver.ThreadPool] Started new worker 139839847119120: Initial worker pool
 
14:06:17,701 DEBUG [paste.httpserver.ThreadPool] Started new worker 139839838726416: Initial worker pool
 
14:06:17,702 DEBUG [paste.httpserver.ThreadPool] Started new worker 139839830333712: Initial worker pool
 
14:06:17,702 DEBUG [paste.httpserver.ThreadPool] Started new worker 139839821941008: Initial worker pool
 
14:06:17,702 DEBUG [paste.httpserver.ThreadPool] Started new worker 139839813548304: Initial worker pool
 
14:06:17,703 DEBUG [paste.httpserver.ThreadPool] Started new worker 139839805155600: Initial worker pool
 
14:06:17,703 DEBUG [paste.httpserver.ThreadPool] Started new worker 139839796762896: Initial worker pool
 
14:06:17,703 DEBUG [paste.httpserver.ThreadPool] Started new worker 139839788370192: Initial worker pool
 
14:06:17,703 DEBUG [paste.httpserver.ThreadPool] Started new worker 139839779977488: Initial worker pool
 
14:12:29,435 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:12:29,438 DEBUG [routes.middleware] Matched GET /
 
14:12:29,438 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:12:29,438 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:12:29,439 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:12:29,440 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:12:29,479 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:12:29,479 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:12:29,479 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:12:29,479 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:12:29,479 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2e7f6d0>, 'start_response': <function repl_start_response at 0x2e87230>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2c5ed90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2cad050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2e7fa10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2cadbd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2e7f6d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2e7f4d0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2cad990>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2e7fa10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2cad990>, 'wsgi.input': <socket._fileobject object at 0x2c545d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671549.4801331, '_creation_time': 1266671549.4801331}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2e7f4d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2e7f190>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f2f0648d1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1d78550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:12:29,605 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:12:29,606 DEBUG [paste.httpserver.ThreadPool] Added task (1 tasks queued)
 
14:12:29,606 DEBUG [paste.httpserver.ThreadPool] Added task (2 tasks queued)
 
14:12:29,606 DEBUG [paste.httpserver.ThreadPool] Added task (3 tasks queued)
 
14:12:29,626 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:12:29,628 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:12:29,628 DEBUG [paste.httpserver.ThreadPool] Added task (1 tasks queued)
 
14:12:29,705 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:19,319 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:16:19,319 DEBUG [pylons.configuration] Pushing process configuration
 
14:16:19,322 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:16:19,322 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:16:21,088 DEBUG [pylons.templating] Initialized Buffet object
 
14:16:21,089 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:16:21,089 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:16:21,091 DEBUG [paste.httpserver.ThreadPool] Started new worker 140202253904144: Initial worker pool
 
14:16:21,091 DEBUG [paste.httpserver.ThreadPool] Started new worker 140202245511440: Initial worker pool
 
14:16:21,091 DEBUG [paste.httpserver.ThreadPool] Started new worker 140202237118736: Initial worker pool
 
14:16:21,092 DEBUG [paste.httpserver.ThreadPool] Started new worker 140202228726032: Initial worker pool
 
14:16:21,092 DEBUG [paste.httpserver.ThreadPool] Started new worker 140202220333328: Initial worker pool
 
14:16:21,092 DEBUG [paste.httpserver.ThreadPool] Started new worker 140202211940624: Initial worker pool
 
14:16:21,093 DEBUG [paste.httpserver.ThreadPool] Started new worker 140202203547920: Initial worker pool
 
14:16:21,093 DEBUG [paste.httpserver.ThreadPool] Started new worker 140202195155216: Initial worker pool
 
14:16:21,093 DEBUG [paste.httpserver.ThreadPool] Started new worker 140202186762512: Initial worker pool
 
14:16:21,093 DEBUG [paste.httpserver.ThreadPool] Started new worker 140202178369808: Initial worker pool
 
14:16:22,049 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:22,056 DEBUG [routes.middleware] Matched GET /
 
14:16:22,056 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:22,056 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:22,056 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:22,057 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:22,084 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:16:22,084 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:22,084 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:22,084 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:22,084 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x24666d0>, 'start_response': <function repl_start_response at 0x246f230>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2466a10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x24666d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x24664d0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2466a10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x22f95d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671782.0852549, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x24664d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x24661d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:16:22,089 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:22,089 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:22,175 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:22,176 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:16:22,176 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:22,177 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:16:22,177 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:22,177 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:22,178 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:22,178 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:22,178 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:22,178 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2745e50>, 'start_response': <function repl_start_response at 0x2746cf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x27459d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2745e50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2745ad0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x27459d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x22f9850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671782.1786959, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2745ad0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2745dd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:16:22,182 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:22,182 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:22,327 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:22,328 DEBUG [routes.middleware] Matched GET /static/hgicon.png
 
14:16:22,328 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:22,328 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}
 
14:16:22,329 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:22,329 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:22,329 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:22,329 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:22,329 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:22,330 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x274d190>, 'start_response': <function repl_start_response at 0x27507d0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x274d2d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x274d190>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x274d410>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x274d2d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x22f9650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671782.3303609, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x274d410>, 'HTTP_ACCEPT': 'image/png,image/*;q=0.8,*/*;q=0.5', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x27458d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/hgicon.png', 'action': u'view'}
 
14:16:22,334 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:22,334 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:24,458 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:24,461 DEBUG [routes.middleware] Matched GET /lotto/
 
14:16:24,462 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:24,462 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/'}
 
14:16:24,463 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:24,465 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:24,465 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:24,465 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:24,466 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:24,466 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x274dc50>, 'start_response': <function repl_start_response at 0x2750de8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x274dd10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x274dc50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x274db10>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x274dd10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x26b0dd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671784.466491, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x274db10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x274da90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'lotto/', 'action': u'view'}
 
14:16:24,508 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:24,509 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:24,554 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:24,555 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:16:24,555 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:24,556 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:16:24,556 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:24,556 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:24,556 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:24,557 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:24,557 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:24,557 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x28447d0>, 'start_response': <function repl_start_response at 0x29cf1b8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x284b7d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x28447d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x274da10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x284b7d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x26b0d50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671784.5579171, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x274da10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x274d810>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:16:24,561 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:24,561 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:27,179 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:27,180 DEBUG [routes.middleware] Matched GET /lotto/shortlog
 
14:16:27,180 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:27,180 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/shortlog'}
 
14:16:27,181 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:27,181 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:27,181 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:27,181 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:27,181 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:27,181 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x28441d0>, 'start_response': <function repl_start_response at 0x29cf2a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/shortlog'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto/shortlog', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x283b410>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x28441d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2745b10>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/shortlog'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x283b410>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x26b0bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671787.182158, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2745b10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x274dcd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'lotto/shortlog', 'action': u'view'}
 
14:16:27,189 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:27,190 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:27,283 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:27,284 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:16:27,285 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:27,285 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:16:27,285 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:27,285 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:27,285 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:27,286 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:27,286 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:27,286 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x29c6c10>, 'start_response': <function repl_start_response at 0x29cf9b0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/shortlog', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29c6690>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29c6c10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x28443d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29c6690>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x28640d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671787.286531, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x28443d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x29b7990>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:16:27,289 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:27,290 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:28,052 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:28,055 DEBUG [routes.middleware] Matched GET /lotto/log/11
 
14:16:28,055 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:28,056 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/log/11'}
 
14:16:28,057 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:28,058 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:28,059 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:28,059 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:28,059 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:28,059 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x29c6790>, 'start_response': <function repl_start_response at 0x29da668>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/shortlog', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/log/11'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto/log/11', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29c6310>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29c6790>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x29c6b10>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/log/11'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29c6310>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x2864d50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671788.05966, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x29c6b10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2745ed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'lotto/log/11', 'action': u'view'}
 
14:16:28,067 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:28,067 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:28,179 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:28,180 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:16:28,180 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:28,180 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:16:28,180 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:28,181 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:28,181 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:28,181 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:28,181 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:28,181 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x283b510>, 'start_response': <function repl_start_response at 0x29cfa28>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/log/11', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x283b0d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x283b510>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x274dcd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x283b0d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x26b0bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671788.1819179, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x274dcd0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x28443d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:16:28,185 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:28,185 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:28,952 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:28,955 DEBUG [routes.middleware] Matched GET /lotto/summary
 
14:16:28,956 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:28,956 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/summary'}
 
14:16:28,956 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:28,957 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:28,957 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:28,957 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:28,957 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:28,957 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x29c6810>, 'start_response': <function repl_start_response at 0x29da5f0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/log/11', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29c6090>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29c6810>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2745e50>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29c6090>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x2864c50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671788.9579511, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2745e50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2844ed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'lotto/summary', 'action': u'view'}
 
14:16:28,966 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:28,966 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:28,986 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:28,987 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:16:28,987 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:28,988 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:16:28,988 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:28,988 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:28,989 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:28,989 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:28,989 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:28,989 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x29e1790>, 'start_response': <function repl_start_response at 0x29eb2a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29e1850>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29e1790>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x29c6dd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29e1850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x2864850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671788.9897561, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x29c6dd0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x29b7790>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:16:28,994 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:28,994 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:29,619 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:29,651 DEBUG [routes.middleware] Matched GET /lotto/summary
 
14:16:29,652 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:29,652 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/summary'}
 
14:16:29,653 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:29,654 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:29,654 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:29,655 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:29,655 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:29,656 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x29e1b50>, 'start_response': <function repl_start_response at 0x29ebcf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/lotto/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29e1c10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29e1b50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x29e1890>, {'action': u'view', 'controller': u'hg', 'path_info': 'lotto/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29e1c10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x2864dd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671789.656652, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x29e1890>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x283be90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'lotto/summary', 'action': u'view'}
 
14:16:29,673 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:29,673 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:29,690 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:29,691 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:16:29,691 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:29,691 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:16:29,691 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:29,692 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:29,692 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:29,692 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:29,692 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:29,692 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x29c6350>, 'start_response': <function repl_start_response at 0x29eb230>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/lotto/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29c6890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29c6350>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x274d910>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29c6890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x26b0bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671789.6931, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x274d910>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x28441d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:16:29,696 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:29,697 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:32,716 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:32,719 DEBUG [routes.middleware] Matched GET /
 
14:16:32,719 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:32,720 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:32,720 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:32,721 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:32,722 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:32,722 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:32,722 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:32,723 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x29c6bd0>, 'start_response': <function repl_start_response at 0x29da488>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29c6ad0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29c6bd0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x29c6250>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29c6ad0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x29b1650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671792.7239759, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x29c6250>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x29b77d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:16:32,744 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:32,745 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:16:32,786 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:16:32,787 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:16:32,787 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:16:32,787 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:16:32,787 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:16:32,788 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:16:32,788 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:16:32,788 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:16:32,788 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:16:32,788 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x29e1f50>, 'start_response': <function repl_start_response at 0x29cfb18>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2303d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2352710>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29e1a50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29e1f50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2352f90>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x283b210>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29e1a50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2352e50>, 'wsgi.input': <socket._fileobject object at 0x29b15d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671792.789047, '_creation_time': 1266671782.0852549}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x283b210>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x283bb50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f8366e971c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x141e550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:16:32,792 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:16:32,793 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:17:18,226 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:17:18,226 DEBUG [pylons.configuration] Pushing process configuration
 
14:17:18,230 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:17:18,230 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:17:19,921 DEBUG [pylons.templating] Initialized Buffet object
 
14:17:19,921 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:17:19,978 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:17:19,981 DEBUG [paste.httpserver.ThreadPool] Started new worker 139947565103376: Initial worker pool
 
14:17:19,981 DEBUG [paste.httpserver.ThreadPool] Started new worker 139947556710672: Initial worker pool
 
14:17:19,981 DEBUG [paste.httpserver.ThreadPool] Started new worker 139947548317968: Initial worker pool
 
14:17:19,981 DEBUG [paste.httpserver.ThreadPool] Started new worker 139947539925264: Initial worker pool
 
14:17:19,982 DEBUG [paste.httpserver.ThreadPool] Started new worker 139947531532560: Initial worker pool
 
14:17:19,982 DEBUG [paste.httpserver.ThreadPool] Started new worker 139947523139856: Initial worker pool
 
14:17:19,982 DEBUG [paste.httpserver.ThreadPool] Started new worker 139947514747152: Initial worker pool
 
14:17:19,983 DEBUG [paste.httpserver.ThreadPool] Started new worker 139947506354448: Initial worker pool
 
14:17:19,984 DEBUG [paste.httpserver.ThreadPool] Started new worker 139947497961744: Initial worker pool
 
14:17:19,984 DEBUG [paste.httpserver.ThreadPool] Started new worker 139947489569040: Initial worker pool
 
14:18:10,593 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:18:10,600 DEBUG [routes.middleware] Matched GET /
 
14:18:10,601 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:18:10,601 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:18:10,602 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:18:10,605 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:18:10,640 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:18:10,640 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:18:10,640 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:18:10,640 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:18:10,640 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x265a6d0>, 'start_response': <function repl_start_response at 0x2664230>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x24f6d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2546050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x265aa10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2546bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x265a6d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x265a4d0>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2546c90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x265aa10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2546c90>, 'wsgi.input': <socket._fileobject object at 0x24ec650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671890.640919, '_creation_time': 1266671890.640919}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x265a4d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x265a190>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f481a46c1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1611550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:18:12,342 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:18:12,342 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:18:12,387 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:18:12,388 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:18:12,388 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:18:12,388 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:18:12,389 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:18:12,389 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:18:12,389 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:18:12,389 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:18:12,389 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:18:12,389 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x29cd890>, 'start_response': <function repl_start_response at 0x2939cf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x24f6d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2546050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x29cd610>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29cd890>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2546bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x265a610>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2546c90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x29cd610>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2546c90>, 'wsgi.input': <socket._fileobject object at 0x24ec850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671892.390229, '_creation_time': 1266671890.640919}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x265a610>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x29cd650>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f481a46c1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1611550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:18:14,259 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:18:14,259 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:18:15,666 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:18:15,667 DEBUG [routes.middleware] Matched GET /hg_app/
 
14:18:15,667 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:18:15,667 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/'}
 
14:18:15,668 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:18:15,668 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:18:15,668 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:18:15,668 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:18:15,668 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:18:15,669 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x29385d0>, 'start_response': <function repl_start_response at 0x29398c0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x24f6d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2546050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2938a90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x29385d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2546bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x29cd250>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2546c90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2938a90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2546c90>, 'wsgi.input': <socket._fileobject object at 0x24ec250 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671895.669333, '_creation_time': 1266671890.640919}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x29cd250>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x29cd550>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f481a46c1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1611550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'hg_app/', 'action': u'view'}
 
14:18:17,423 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:18:17,423 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:18:17,534 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:18:17,535 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:18:17,535 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:18:17,535 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:18:17,536 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:18:17,536 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:18:17,536 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:18:17,536 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:18:17,536 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:18:17,537 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2a05bd0>, 'start_response': <function repl_start_response at 0x2bdb578>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x24f6d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2546050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2a05890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2a05bd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2546bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x295ff50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2546c90>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2a05890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2546c90>, 'wsgi.input': <socket._fileobject object at 0x28a3ad0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266671897.5373321, '_creation_time': 1266671890.640919}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x295ff50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x29cd8d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f481a46c1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1611550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:18:19,241 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:18:19,241 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:19:04,216 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:19:04,216 DEBUG [pylons.configuration] Pushing process configuration
 
14:19:04,220 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:19:04,220 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:19:46,091 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:19:46,092 DEBUG [pylons.configuration] Pushing process configuration
 
14:19:46,095 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:19:46,095 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:20:05,979 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:20:05,980 DEBUG [pylons.configuration] Pushing process configuration
 
14:20:05,983 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:20:05,983 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:20:09,351 DEBUG [pylons.templating] Initialized Buffet object
 
14:20:09,351 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:20:09,351 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:20:09,354 DEBUG [paste.httpserver.ThreadPool] Started new worker 139861432969488: Initial worker pool
 
14:20:09,354 DEBUG [paste.httpserver.ThreadPool] Started new worker 139861424576784: Initial worker pool
 
14:20:09,354 DEBUG [paste.httpserver.ThreadPool] Started new worker 139861416184080: Initial worker pool
 
14:20:09,354 DEBUG [paste.httpserver.ThreadPool] Started new worker 139861407791376: Initial worker pool
 
14:20:09,355 DEBUG [paste.httpserver.ThreadPool] Started new worker 139861399398672: Initial worker pool
 
14:20:09,355 DEBUG [paste.httpserver.ThreadPool] Started new worker 139861391005968: Initial worker pool
 
14:20:09,355 DEBUG [paste.httpserver.ThreadPool] Started new worker 139861382613264: Initial worker pool
 
14:20:09,356 DEBUG [paste.httpserver.ThreadPool] Started new worker 139861374220560: Initial worker pool
 
14:20:09,356 DEBUG [paste.httpserver.ThreadPool] Started new worker 139861365827856: Initial worker pool
 
14:20:09,356 DEBUG [paste.httpserver.ThreadPool] Started new worker 139861357435152: Initial worker pool
 
14:20:10,593 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:10,600 DEBUG [routes.middleware] Matched GET /
 
14:20:10,601 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:10,602 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:10,603 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:10,604 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:10,642 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:20:10,642 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:10,642 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:10,642 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:10,642 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x341ff90>, 'start_response': <function repl_start_response at 0x342c2a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3426310>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x341ff90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x341fd90>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3426310>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x32ad5d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672010.642962, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x341fd90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x341fa90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:20:10,646 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:10,646 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:10,689 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:10,690 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:10,690 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:10,690 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:10,691 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:10,691 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:10,691 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:10,691 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:10,691 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:10,691 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3703410>, 'start_response': <function repl_start_response at 0x3702d70>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3703950>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3703410>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x341fed0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3703950>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x32ad8d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672010.6921811, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x341fed0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3703690>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:10,696 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:10,696 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:12,096 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:12,099 DEBUG [routes.middleware] Matched GET /mass_account_manager/
 
14:20:12,099 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:12,100 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}
 
14:20:12,101 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:12,102 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:12,103 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:12,103 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:12,104 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:12,104 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3703f90>, 'start_response': <function repl_start_response at 0x37048c0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3703f50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3703f90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3703dd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3703f50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x32ad6d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672012.1051011, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3703dd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3703550>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/', 'action': u'view'}
 
14:20:12,146 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:12,157 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:12,253 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:12,256 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:12,256 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:12,256 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:12,256 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:12,257 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:12,257 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:12,257 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:12,257 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:12,257 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37fef50>, 'start_response': <function repl_start_response at 0x3980b18>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37fe990>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37fef50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3703410>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37fe990>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x366ee50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672012.2584529, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3703410>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3703450>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:12,262 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:12,262 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:13,719 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:13,722 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:20:13,722 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:13,723 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:20:13,724 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:13,726 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:13,726 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:13,726 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:13,727 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:13,727 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37f6bd0>, 'start_response': <function repl_start_response at 0x39802a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37f6210>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37f6bd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37fe6d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37f6210>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x366ec50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672013.728256, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37fe6d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37fe3d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:20:13,746 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:13,746 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:13,772 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:13,773 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:13,773 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:13,773 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:13,774 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:13,774 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:13,774 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:13,774 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:13,774 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:13,774 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x39709d0>, 'start_response': <function repl_start_response at 0x39825f0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x39706d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x39709d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37f6190>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x39706d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818050 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672013.7752099, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37f6190>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37ead10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:13,781 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:13,781 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:14,546 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:14,547 DEBUG [routes.middleware] Matched GET /mass_account_manager/shortlog
 
14:20:14,547 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:14,548 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/shortlog'}
 
14:20:14,548 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:14,549 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:14,549 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:14,549 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:14,549 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:14,549 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3970990>, 'start_response': <function repl_start_response at 0x39940c8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/shortlog'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/shortlog', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3970ad0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3970990>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3970550>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/shortlog'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3970ad0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818cd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672014.5497091, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3970550>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x38033d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/shortlog', 'action': u'view'}
 
14:20:14,557 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:14,558 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:14,582 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:14,583 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:14,583 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:14,583 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:14,583 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:14,584 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:14,584 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:14,584 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:14,584 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:14,584 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x341fa10>, 'start_response': <function repl_start_response at 0x3982c80>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/shortlog', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x341f850>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x341fa10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3966f90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x341f850>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x366ec50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672014.5850229, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3966f90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x39667d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:14,588 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:14,588 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:15,207 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:15,210 DEBUG [routes.middleware] Matched GET /mass_account_manager/log/9
 
14:20:15,211 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:15,211 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/log/9'}
 
14:20:15,213 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:15,214 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:15,214 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:15,215 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:15,215 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:15,215 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37f6b50>, 'start_response': <function repl_start_response at 0x39801b8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/shortlog', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/log/9'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/log/9', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37f6350>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37f6b50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3966890>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/log/9'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37f6350>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672015.216531, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3966890>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3966bd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/log/9', 'action': u'view'}
 
14:20:15,227 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:15,227 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:15,259 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:15,265 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:15,265 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:15,266 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:15,266 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:15,266 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:15,266 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:15,266 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:15,266 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:15,267 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x399bc50>, 'start_response': <function repl_start_response at 0x3994aa0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/log/9', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x399bc10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x399bc50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37f6bd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x399bc10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x38187d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672015.2673309, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37f6bd0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37f6d10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:15,270 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:15,271 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:15,915 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:15,916 DEBUG [routes.middleware] Matched GET /mass_account_manager/graph
 
14:20:15,916 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:15,916 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/graph'}
 
14:20:15,917 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:15,917 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:15,917 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:15,918 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:15,918 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:15,918 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x399bc90>, 'start_response': <function repl_start_response at 0x399e578>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/log/9', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/graph'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/graph', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x399b290>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x399bc90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x399bb50>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/graph'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x399b290>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818d50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672015.9195881, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x399bb50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37fe3d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/graph', 'action': u'view'}
 
14:20:15,941 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:15,941 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:16,043 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:16,044 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:16,045 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:16,045 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:16,045 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:16,045 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:16,046 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:16,046 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:16,046 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:16,046 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3978890>, 'start_response': <function repl_start_response at 0x39802a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/graph', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3978050>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3978890>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3703b50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3978050>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x366ec50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672016.0467429, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3703b50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37f6350>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:16,050 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:16,050 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:16,051 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:16,052 DEBUG [routes.middleware] Matched GET /static/graph.js
 
14:20:16,052 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:16,053 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/graph.js'}
 
14:20:16,053 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:16,053 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:16,053 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:16,054 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:16,054 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:16,054 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3978550>, 'start_response': <function repl_start_response at 0x3982140>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/graph', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/graph.js'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/graph.js', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3978610>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3978550>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3978510>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/graph.js'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3978610>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3967cd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672016.054451, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3978510>, 'HTTP_ACCEPT': '*/*', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3803890>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/graph.js', 'action': u'view'}
 
14:20:16,058 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:16,058 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:17,587 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:17,589 DEBUG [routes.middleware] Matched GET /mass_account_manager/log/9
 
14:20:17,589 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:17,589 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/log/9'}
 
14:20:17,589 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:17,590 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:17,590 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:17,590 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:17,590 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:17,590 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3978d90>, 'start_response': <function repl_start_response at 0x39825f0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/graph', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/log/9'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/log/9', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3978e50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3978d90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3978850>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/log/9'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3978e50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x39675d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672017.590977, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3978850>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37eaad0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/log/9', 'action': u'view'}
 
14:20:17,602 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:17,602 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:17,629 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:17,632 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:17,632 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:17,633 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:17,634 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:17,635 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:17,635 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:17,635 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:17,636 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:17,636 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x399b950>, 'start_response': <function repl_start_response at 0x3994b90>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/log/9', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x399b090>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x399b950>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x399bd90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x399b090>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818050 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672017.6373589, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x399bd90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x399bed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:17,646 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:17,647 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:18,608 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:18,611 DEBUG [routes.middleware] Matched GET /mass_account_manager/shortlog/9
 
14:20:18,611 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:18,612 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/shortlog/9'}
 
14:20:18,613 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:18,614 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:18,615 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:18,615 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:18,616 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:18,616 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3966690>, 'start_response': <function repl_start_response at 0x39829b0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/log/9', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/shortlog/9'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/shortlog/9', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3966790>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3966690>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x399be50>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/shortlog/9'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3966790>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x38187d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672018.6172609, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x399be50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x399b690>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/shortlog/9', 'action': u'view'}
 
14:20:18,633 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:18,633 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:18,651 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:18,653 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:18,653 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:18,653 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:18,653 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:18,654 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:18,654 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:18,654 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:18,654 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:18,654 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37f6450>, 'start_response': <function repl_start_response at 0x3982230>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/shortlog/9', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37f68d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37f6450>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x39668d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37f68d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x366eed0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672018.6547849, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x39668d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3713d50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:18,658 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:18,658 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:19,216 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:19,218 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:20:19,218 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:19,218 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:20:19,218 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:19,218 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:19,219 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:19,219 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:19,219 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:19,219 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37fe550>, 'start_response': <function repl_start_response at 0x3980410>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/shortlog/9', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37fe6d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37fe550>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3966650>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37fe6d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672019.2195971, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3966650>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x399b550>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:20:19,227 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:19,227 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:19,263 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:19,264 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:19,264 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:19,264 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:19,264 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:19,265 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:19,265 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:19,265 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:19,265 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:19,265 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37f6bd0>, 'start_response': <function repl_start_response at 0x3980de8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3970550>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37f6bd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37fe690>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3970550>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x32ad6d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672019.266042, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37fe690>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37fe3d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:19,272 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:19,272 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:20,903 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:20,906 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:20:20,907 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:20,907 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:20:20,908 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:20,909 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:20,909 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:20,910 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:20,910 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:20,911 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3970690>, 'start_response': <function repl_start_response at 0x3982ed8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3803890>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3970690>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37f6210>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3803890>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x366ef50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672020.9116781, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37f6210>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37feb50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:20:20,931 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:20,931 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:20,948 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:20,949 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:20,949 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:20,949 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:20,949 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:20,950 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:20,950 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:20,950 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:20,950 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:20,950 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37eaa10>, 'start_response': <function repl_start_response at 0x39822a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x399b110>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37eaa10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3966890>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x399b110>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818cd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672020.950815, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3966890>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3978e10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:20,954 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:20,954 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:21,619 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:21,622 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:20:21,622 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:21,623 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:20:21,623 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:21,623 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:21,623 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:21,623 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:21,624 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:21,624 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x399bcd0>, 'start_response': <function repl_start_response at 0x399e7d0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x399b690>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x399bcd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37ea550>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x399b690>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x366eed0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672021.6244259, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37ea550>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3970850>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:20:21,638 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:21,638 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:21,659 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:21,662 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:21,662 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:21,663 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:21,663 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:21,665 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:21,665 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:21,665 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:21,666 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:21,666 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x399bd50>, 'start_response': <function repl_start_response at 0x3994de8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x399bd90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x399bd50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x399bb50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x399bd90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818cd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672021.667258, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x399bb50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3703b90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:21,672 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:21,672 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:22,016 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:22,017 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:20:22,018 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:22,018 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:20:22,018 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:22,018 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:22,019 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:22,019 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:22,019 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:22,019 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3966890>, 'start_response': <function repl_start_response at 0x39822a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x39664d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3966890>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x399b290>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x39664d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x32ad6d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672022.019752, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x399b290>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3703490>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:20:22,029 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:22,029 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:22,045 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:22,046 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:22,047 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:22,047 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:22,047 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:22,047 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:22,048 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:22,048 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:22,048 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:22,048 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37ea950>, 'start_response': <function repl_start_response at 0x3982b90>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37ea990>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37ea950>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x399bc90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37ea990>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818050 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672022.0487499, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x399bc90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3713c90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:22,052 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:22,052 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:22,203 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:22,204 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:20:22,204 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:22,204 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:20:22,205 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:22,205 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:22,205 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:22,205 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:22,205 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:22,205 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37f65d0>, 'start_response': <function repl_start_response at 0x398d938>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37f6750>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37f65d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x39706d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37f6750>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818dd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672022.206197, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x39706d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x399b390>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:20:22,214 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:22,214 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:22,230 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:22,232 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:22,232 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:22,232 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:22,232 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:22,233 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:22,233 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:22,233 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:22,233 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:22,233 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x39709d0>, 'start_response': <function repl_start_response at 0x3980398>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3970510>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x39709d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37f6d10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3970510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x32ad6d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672022.233773, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37f6d10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37f6350>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:22,238 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:22,239 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:22,360 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:22,362 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:20:22,363 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:22,363 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:20:22,364 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:22,365 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:22,366 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:22,366 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:22,366 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:22,367 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3978ed0>, 'start_response': <function repl_start_response at 0x3982c80>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3978990>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3978ed0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3970690>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3978990>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x366ec50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672022.3679659, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3970690>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37fef50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:20:22,393 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:22,393 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:22,410 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:22,413 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:22,414 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:22,414 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:22,415 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:22,416 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:22,416 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:22,416 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:22,416 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:22,416 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x399b6d0>, 'start_response': <function repl_start_response at 0x39822a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x399bd90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x399b6d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x37f68d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x399bd90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818cd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672022.4169199, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x37f68d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x39784d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:22,420 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:22,421 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:22,503 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:22,506 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:20:22,506 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:22,506 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:20:22,506 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:22,507 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:22,507 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:22,507 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:22,507 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:22,507 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x39a5650>, 'start_response': <function repl_start_response at 0x39ad668>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x39a5e90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x39a5650>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x399bd50>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x39a5e90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x366eb50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672022.507865, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x399bd50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x37ea7d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:20:22,516 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:22,516 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:22,534 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:22,536 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:22,536 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:22,536 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:22,537 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:22,537 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:22,537 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:22,537 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:22,537 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:22,538 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3703a90>, 'start_response': <function repl_start_response at 0x3994e60>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3703b90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3703a90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x39a5690>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3703b90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818cd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672022.538305, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x39a5690>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x399bd10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:22,554 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:22,554 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:22,648 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:22,657 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:20:22,657 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:22,658 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:20:22,658 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:22,659 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:22,660 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:22,660 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:22,661 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:22,661 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3978dd0>, 'start_response': <function repl_start_response at 0x3982aa0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3978290>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3978dd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3703bd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3978290>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x32ad6d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672022.6621201, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3703bd0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x399b290>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:20:22,683 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:22,683 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:20:22,707 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:20:22,708 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:20:22,708 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:20:22,708 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:20:22,708 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:20:22,709 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:20:22,709 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:20:22,709 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:20:22,709 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:20:22,709 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x37f6510>, 'start_response': <function repl_start_response at 0x3982050>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x32b7d50>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x3305890>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x37f6350>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x37f6510>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x3454bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x399b650>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x37f6350>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x3454b10>, 'wsgi.input': <socket._fileobject object at 0x3818850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672022.709723, '_creation_time': 1266672010.642962}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x399b650>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3713d50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f340c66b1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x23d0550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:20:22,713 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:20:22,713 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:00,630 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:21:00,630 DEBUG [pylons.configuration] Pushing process configuration
 
14:21:00,634 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:21:00,634 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:21:03,011 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:21:03,011 DEBUG [pylons.configuration] Pushing process configuration
 
14:21:03,014 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:21:03,014 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:21:04,710 DEBUG [pylons.templating] Initialized Buffet object
 
14:21:04,710 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:21:04,711 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:21:04,713 DEBUG [paste.httpserver.ThreadPool] Started new worker 139998556055824: Initial worker pool
 
14:21:04,713 DEBUG [paste.httpserver.ThreadPool] Started new worker 139998547663120: Initial worker pool
 
14:21:04,713 DEBUG [paste.httpserver.ThreadPool] Started new worker 139998539270416: Initial worker pool
 
14:21:04,713 DEBUG [paste.httpserver.ThreadPool] Started new worker 139998530877712: Initial worker pool
 
14:21:04,714 DEBUG [paste.httpserver.ThreadPool] Started new worker 139998522485008: Initial worker pool
 
14:21:04,714 DEBUG [paste.httpserver.ThreadPool] Started new worker 139998514092304: Initial worker pool
 
14:21:04,714 DEBUG [paste.httpserver.ThreadPool] Started new worker 139998505699600: Initial worker pool
 
14:21:04,715 DEBUG [paste.httpserver.ThreadPool] Started new worker 139998497306896: Initial worker pool
 
14:21:04,715 DEBUG [paste.httpserver.ThreadPool] Started new worker 139998488914192: Initial worker pool
 
14:21:04,715 DEBUG [paste.httpserver.ThreadPool] Started new worker 139998480521488: Initial worker pool
 
14:21:41,898 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:41,901 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:21:41,901 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:41,901 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:21:41,902 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:41,903 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:41,930 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:21:41,930 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:41,930 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:41,931 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:41,931 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2c3b710>, 'start_response': <function repl_start_response at 0x2c442a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c3ba50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2c3b710>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c3b510>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c3ba50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672101.931427, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c3b510>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2c3b050>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:21:43,643 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:43,644 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:43,668 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:43,669 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:43,670 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:43,670 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:43,670 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:43,671 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:43,671 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:43,671 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:43,671 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:43,671 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3000410>, 'start_response': <function repl_start_response at 0x3183848>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x30004d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3000410>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2f18c10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x30004d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672103.671942, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2f18c10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ff9990>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:43,675 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:43,676 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:47,065 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:47,066 DEBUG [routes.middleware] Matched GET /
 
14:21:47,066 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:47,066 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:47,067 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:47,067 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:47,067 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:47,067 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:47,067 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:47,068 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3164b50>, 'start_response': <function repl_start_response at 0x31892a8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31647d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3164b50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2b26e50>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31647d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672107.068311, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2b26e50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ff9b50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:21:47,071 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:47,072 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:47,116 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:47,117 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:47,118 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:47,118 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:47,118 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:47,118 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:47,118 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:47,119 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:47,119 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:47,119 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3171c50>, 'start_response': <function repl_start_response at 0x31897d0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3171750>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3171c50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3171a90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3171750>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf250 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672107.1194799, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3171a90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3171f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:47,122 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:47,123 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:48,847 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:48,850 DEBUG [routes.middleware] Matched GET /hg_app/
 
14:21:48,851 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:48,851 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/'}
 
14:21:48,853 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:48,855 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:48,855 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:48,855 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:48,856 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:48,856 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3171ed0>, 'start_response': <function repl_start_response at 0x3189de8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2c46210>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3171ed0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3171d10>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2c46210>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2fd2e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672108.857305, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3171d10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x31716d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'hg_app/', 'action': u'view'}
 
14:21:48,867 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:48,867 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:48,898 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:48,914 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:48,915 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:48,915 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:48,915 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:48,915 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:48,915 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:48,916 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:48,916 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:48,916 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3164a10>, 'start_response': <function repl_start_response at 0x3183ed8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31648d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3164a10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3171fd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31648d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672108.9166191, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3171fd0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3171d90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:48,920 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:48,920 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:50,638 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:50,641 DEBUG [routes.middleware] Matched GET /hg_app/summary
 
14:21:50,641 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:50,642 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/summary'}
 
14:21:50,643 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:50,644 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:50,645 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:50,645 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:50,646 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:50,646 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x317a950>, 'start_response': <function repl_start_response at 0x31965f0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x317a110>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x317a950>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x317af10>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x317a110>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018b50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672110.647115, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x317af10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x1be9790>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'hg_app/summary', 'action': u'view'}
 
14:21:50,657 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:50,657 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:50,681 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:50,682 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:50,683 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:50,683 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:50,683 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:50,683 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:50,683 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:50,684 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:50,684 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:50,684 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2f18610>, 'start_response': <function repl_start_response at 0x3183b18>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2b26e50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2f18610>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x317a150>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2b26e50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672110.6845579, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x317a150>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x317a450>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:50,688 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:50,688 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:51,758 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:51,760 DEBUG [routes.middleware] Matched GET /hg_app/log
 
14:21:51,761 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:51,761 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/log'}
 
14:21:51,763 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:51,764 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:51,764 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:51,765 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:51,765 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:51,765 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2ff9b50>, 'start_response': <function repl_start_response at 0x31896e0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/log'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app/log', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2ff9990>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ff9b50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x317a2d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/log'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2ff9990>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf250 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672111.766551, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x317a2d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x317a0d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'hg_app/log', 'action': u'view'}
 
14:21:51,776 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:51,777 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:51,799 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:51,800 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:51,800 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:51,801 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:51,801 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:51,801 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:51,801 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:51,801 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:51,802 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:51,802 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3199b10>, 'start_response': <function repl_start_response at 0x31a3398>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/log', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31999d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3199b10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3000290>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31999d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672111.802423, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3000290>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ff9f90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:51,806 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:51,806 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:52,303 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:52,311 DEBUG [routes.middleware] Matched GET /hg_app/graph
 
14:21:52,311 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:52,311 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/graph'}
 
14:21:52,311 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:52,312 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:52,312 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:52,312 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:52,312 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:52,312 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x31a7910>, 'start_response': <function repl_start_response at 0x31a3ed8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/log', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/graph'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app/graph', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31a7950>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31a7910>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3171e90>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/graph'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31a7950>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018c50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672112.3129711, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3171e90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2b26b10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'hg_app/graph', 'action': u'view'}
 
14:21:52,322 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:52,323 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:52,339 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:52,341 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:52,341 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:52,341 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:52,342 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:52,343 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:52,343 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:52,343 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:52,343 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:52,344 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x317a0d0>, 'start_response': <function repl_start_response at 0x3189a28>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/graph', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x317a310>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x317a0d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c3b650>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x317a310>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672112.344557, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c3b650>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3199bd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:52,351 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:52,351 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:52,351 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:52,352 DEBUG [routes.middleware] Matched GET /static/graph.js
 
14:21:52,352 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:52,352 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/graph.js'}
 
14:21:52,353 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:52,353 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:52,353 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:52,353 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:52,354 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:52,354 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x317af90>, 'start_response': <function repl_start_response at 0x3183848>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/graph', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/graph.js'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/graph.js', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3171990>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x317af90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x317a150>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/graph.js'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3171990>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x316b9d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672112.354321, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x317a150>, 'HTTP_ACCEPT': '*/*', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3199a50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/graph.js', 'action': u'view'}
 
14:21:52,357 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:52,357 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:52,791 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:52,792 DEBUG [routes.middleware] Matched GET /hg_app/tags
 
14:21:52,792 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:52,793 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/tags'}
 
14:21:52,793 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:52,793 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:52,793 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:52,794 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:52,794 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:52,794 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3171a10>, 'start_response': <function repl_start_response at 0x31a96e0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/graph', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/tags'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app/tags', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3171710>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3171a10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x317ae90>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/tags'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3171710>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x316b350 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672112.794512, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x317ae90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3000350>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'hg_app/tags', 'action': u'view'}
 
14:21:52,806 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:52,806 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:52,832 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:52,833 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:52,833 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:52,833 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:52,833 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:52,834 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:52,834 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:52,834 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:52,834 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:52,834 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x31b5610>, 'start_response': <function repl_start_response at 0x31a9398>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/tags', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31b50d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31b5610>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3171d90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31b50d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x316bbd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672112.8348651, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3171d90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3171f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:52,839 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:52,839 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:53,469 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:53,472 DEBUG [routes.middleware] Matched GET /hg_app/branches
 
14:21:53,472 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:53,472 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/branches'}
 
14:21:53,473 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:53,473 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:53,473 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:53,473 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:53,474 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:53,474 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x31a7dd0>, 'start_response': <function repl_start_response at 0x31a95f0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/tags', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/branches'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app/branches', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31a7550>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31a7dd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c3b650>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/branches'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31a7550>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x316be50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672113.4743869, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c3b650>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3171c90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'hg_app/branches', 'action': u'view'}
 
14:21:53,482 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:53,482 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:53,498 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:53,499 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:53,499 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:53,500 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:53,500 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:53,500 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:53,500 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:53,500 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:53,501 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:53,501 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3199ad0>, 'start_response': <function repl_start_response at 0x31a9140>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/branches', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3199b50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3199ad0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2c3b390>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3199b50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2fd2e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672113.5014579, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2c3b390>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x31a7310>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:53,507 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:53,507 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:54,140 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:54,141 DEBUG [routes.middleware] Matched GET /hg_app/file/058f63b6c2ff
 
14:21:54,141 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:54,141 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/file/058f63b6c2ff'}
 
14:21:54,142 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:54,142 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:54,142 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:54,142 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:54,143 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:54,143 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3199690>, 'start_response': <function repl_start_response at 0x31a3668>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/branches', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/file/058f63b6c2ff'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app/file/058f63b6c2ff', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3199c90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3199690>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3199e90>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/file/058f63b6c2ff'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3199c90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672114.143424, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3199e90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x31a7fd0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'hg_app/file/058f63b6c2ff', 'action': u'view'}
 
14:21:54,218 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:54,219 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:54,328 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:54,330 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:54,331 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:54,331 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:54,332 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:54,333 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:54,334 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:54,334 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:54,334 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:54,335 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x31aa8d0>, 'start_response': <function repl_start_response at 0x31897d0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/file/058f63b6c2ff', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31aa410>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31aa8d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x31995d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31aa410>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672114.335772, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x31995d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3199290>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:54,351 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:54,351 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:55,859 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:55,864 DEBUG [routes.middleware] Matched GET /hg_app/summary
 
14:21:55,865 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:55,865 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/summary'}
 
14:21:55,865 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:55,865 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:55,865 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:55,865 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:55,866 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:55,866 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x31aa950>, 'start_response': <function repl_start_response at 0x3183d70>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/file/058f63b6c2ff', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/hg_app/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31aaa90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31aa950>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x31aa490>, {'action': u'view', 'controller': u'hg', 'path_info': 'hg_app/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31aaa90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x316bd50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672115.866457, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x31aa490>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x317a190>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'hg_app/summary', 'action': u'view'}
 
14:21:55,874 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:55,874 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:55,895 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:55,903 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:55,903 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:55,903 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:55,903 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:55,904 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:55,904 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:55,904 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:55,904 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:55,904 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2ff10d0>, 'start_response': <function repl_start_response at 0x3189848>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/hg_app/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2ff1350>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ff10d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2ff96d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2ff1350>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2e82b50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672115.9050519, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2ff96d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2f18890>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:55,908 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:55,909 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:58,904 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:58,907 DEBUG [routes.middleware] Matched GET /
 
14:21:58,907 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:58,908 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:58,909 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:58,910 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:58,910 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:58,911 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:58,911 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:58,911 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2fe7750>, 'start_response': <function repl_start_response at 0x31969b0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2fe7c90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2fe7750>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2ff1290>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2fe7c90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672118.912482, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2ff1290>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2f18610>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:21:58,924 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:58,924 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:21:58,996 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:21:58,997 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:21:58,997 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:21:58,997 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:21:58,998 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:21:58,998 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:21:58,998 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:21:58,998 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:21:58,999 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:21:58,999 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3171e10>, 'start_response': <function repl_start_response at 0x3196b18>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3171910>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3171e10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fe7bd0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3171910>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf250 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672118.9993861, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fe7bd0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3171790>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:21:59,002 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:21:59,003 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:11,606 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:11,617 DEBUG [routes.middleware] Matched GET /mass_account_manager/
 
14:24:11,617 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:11,618 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}
 
14:24:11,618 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:11,618 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:11,619 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:11,619 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:11,619 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:11,619 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x31b5110>, 'start_response': <function repl_start_response at 0x31a35f0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31b57d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31b5110>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3171c50>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31b57d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018650 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672251.6196721, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3171c50>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3171b90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/', 'action': u'view'}
 
14:24:13,358 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:13,358 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:13,461 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:13,462 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:13,463 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:13,463 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:13,463 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:13,463 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:13,463 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:13,464 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:13,464 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:13,464 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3171cd0>, 'start_response': <function repl_start_response at 0x31a3758>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3171f10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3171cd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fe7c10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3171f10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf250 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672253.464591, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fe7c10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x317aa10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:13,468 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:13,468 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:16,859 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:16,860 DEBUG [routes.middleware] Matched GET /mass_account_manager/summary
 
14:24:16,860 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:16,860 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}
 
14:24:16,861 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:16,861 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:16,861 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:16,861 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:16,861 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:16,861 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3171610>, 'start_response': <function repl_start_response at 0x3196aa0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/mass_account_manager/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3171790>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3171610>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fe7710>, {'action': u'view', 'controller': u'hg', 'path_info': 'mass_account_manager/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3171790>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672256.8621931, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fe7710>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x317aa50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'mass_account_manager/summary', 'action': u'view'}
 
14:24:16,870 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:16,870 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:16,891 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:16,892 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:16,892 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:16,892 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:16,893 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:16,893 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:16,893 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:16,893 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:16,893 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:16,894 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2b26090>, 'start_response': <function repl_start_response at 0x31890c8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/mass_account_manager/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2b26190>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2b26090>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2f188d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2b26190>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2e82a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672256.894357, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2f188d0>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3171e90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:16,898 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:16,898 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:19,520 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:19,523 DEBUG [routes.middleware] Matched GET /
 
14:24:19,523 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:19,524 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:19,525 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:19,526 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:19,526 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:19,526 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:19,526 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:19,526 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3164ed0>, 'start_response': <function repl_start_response at 0x31a9f50>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3164510>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3164ed0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2b26690>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3164510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2e82bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672259.526967, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2b26690>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ff14d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:24:19,530 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:19,530 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:19,565 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:19,567 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:19,567 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:19,567 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:19,568 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:19,568 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:19,568 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:19,569 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:19,569 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:19,569 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3199750>, 'start_response': <function repl_start_response at 0x31a9398>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3199290>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3199750>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2b26750>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3199290>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2e82b50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672259.5698149, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2b26750>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3000410>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:19,575 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:19,575 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:21,047 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:21,050 DEBUG [routes.middleware] Matched GET /symfonia_invoice_export/
 
14:24:21,050 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:21,051 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'symfonia_invoice_export/'}
 
14:24:21,052 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:21,053 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:21,053 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:21,054 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:21,054 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:21,055 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3199950>, 'start_response': <function repl_start_response at 0x3183de8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'symfonia_invoice_export/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/symfonia_invoice_export/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3199a10>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3199950>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3199490>, {'action': u'view', 'controller': u'hg', 'path_info': 'symfonia_invoice_export/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3199a10>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x316b4d0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672261.0557489, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3199490>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2b262d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'symfonia_invoice_export/', 'action': u'view'}
 
14:24:21,074 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:21,113 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:21,208 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:21,209 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:21,210 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:21,210 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:21,210 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:21,210 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:21,211 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:21,211 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:21,211 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:21,211 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2ff18d0>, 'start_response': <function repl_start_response at 0x31a9c80>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/symfonia_invoice_export/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2ff1310>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ff18d0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3199090>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2ff1310>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2fd2e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672261.211683, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3199090>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3000b90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:21,215 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:21,215 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:22,296 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:22,299 DEBUG [routes.middleware] Matched GET /symfonia_invoice_export/tags
 
14:24:22,299 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:22,300 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'symfonia_invoice_export/tags'}
 
14:24:22,301 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:22,302 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:22,303 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:22,303 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:22,303 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:22,304 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2f18a10>, 'start_response': <function repl_start_response at 0x31897d0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/symfonia_invoice_export/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'symfonia_invoice_export/tags'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/symfonia_invoice_export/tags', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2f18990>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2f18a10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2ff10d0>, {'action': u'view', 'controller': u'hg', 'path_info': 'symfonia_invoice_export/tags'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2f18990>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2e82a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672262.3049009, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2ff10d0>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2f1e110>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'symfonia_invoice_export/tags', 'action': u'view'}
 
14:24:22,322 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:22,322 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:22,340 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:22,341 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:22,341 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:22,341 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:22,341 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:22,342 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:22,342 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:22,342 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:22,342 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:22,342 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2fe7b90>, 'start_response': <function repl_start_response at 0x3196320>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/symfonia_invoice_export/tags', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3164f50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2fe7b90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2f18b50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3164f50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018bd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672262.3431549, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2f18b50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ff9610>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:22,346 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:22,347 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:23,776 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:23,785 DEBUG [routes.middleware] Matched GET /symfonia_invoice_export/summary
 
14:24:23,786 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:23,786 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'symfonia_invoice_export/summary'}
 
14:24:23,788 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:23,789 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:23,789 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:23,790 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:23,790 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:23,790 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3164510>, 'start_response': <function repl_start_response at 0x31a3cf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/symfonia_invoice_export/tags', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'symfonia_invoice_export/summary'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/symfonia_invoice_export/summary', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31a7090>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3164510>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fe7590>, {'action': u'view', 'controller': u'hg', 'path_info': 'symfonia_invoice_export/summary'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31a7090>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf250 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672263.7915399, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fe7590>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ff1350>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'symfonia_invoice_export/summary', 'action': u'view'}
 
14:24:23,817 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:23,818 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:23,842 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:23,847 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:23,848 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:23,848 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:23,848 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:23,848 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:23,849 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:23,849 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:23,849 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:23,849 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3171e10>, 'start_response': <function repl_start_response at 0x3196410>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/symfonia_invoice_export/summary', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3171d50>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3171e10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2fe7c90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3171d50>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672263.8496089, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2fe7c90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ff9b50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:23,853 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:23,853 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:26,707 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:26,708 DEBUG [routes.middleware] Matched GET /
 
14:24:26,708 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:26,708 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:26,708 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:26,709 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:26,709 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:26,709 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:26,709 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:26,710 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3171e90>, 'start_response': <function repl_start_response at 0x3189e60>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3171f90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3171e90>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3171d90>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3171f90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2fd2e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672266.7107069, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3171d90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3164f50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:24:26,722 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:26,723 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:26,767 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:26,778 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:26,779 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:26,779 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:26,779 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:26,779 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:26,780 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:26,780 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:26,780 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:26,780 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2f18dd0>, 'start_response': <function repl_start_response at 0x2cd4230>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2f18ad0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2f18dd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3171690>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2f18ad0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2e82a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672266.780658, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3171690>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3000410>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:26,784 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:26,784 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:34,585 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:34,587 DEBUG [routes.middleware] Matched GET /
 
14:24:34,588 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:34,588 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:34,589 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:34,590 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:34,591 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:34,591 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:34,591 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:34,592 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2b26090>, 'start_response': <function repl_start_response at 0x31a9410>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2b26750>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2b26090>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2f18a90>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2b26750>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018b50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672274.5928249, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2f18a90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3171f10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:24:36,316 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:36,316 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:36,364 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:36,366 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:36,366 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:36,366 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:36,366 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:36,366 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:36,367 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:36,367 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:36,367 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:36,367 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x31aae50>, 'start_response': <function repl_start_response at 0x31ba398>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31aa150>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31aae50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3199650>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31aa150>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x3018a50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672276.367744, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3199650>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2ff1b90>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:36,371 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:36,371 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:38,280 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:38,283 DEBUG [routes.middleware] Matched GET /
 
14:24:38,283 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:38,284 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:38,284 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:38,285 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:38,286 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:38,286 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:38,287 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:38,287 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x31aa210>, 'start_response': <function repl_start_response at 0x31ba938>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31aa510>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31aa210>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x31aae10>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31aa510>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x316bbd0 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672278.2881579, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x31aae10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2f18610>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:24:38,292 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:38,292 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:38,325 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:38,326 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:38,327 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:38,327 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:38,327 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:38,327 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:38,328 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:38,328 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:38,328 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:38,328 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2b26210>, 'start_response': <function repl_start_response at 0x31bac08>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2b261d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2b26210>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3199c50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2b261d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x316b550 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672278.3286309, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3199c50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2c3b350>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:38,332 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:38,332 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:42,241 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:42,244 DEBUG [routes.middleware] Matched GET /
 
14:24:42,244 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:42,245 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:42,246 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:42,246 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:42,246 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:42,246 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:42,246 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:42,246 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2ff18d0>, 'start_response': <function repl_start_response at 0x31ba6e0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2ff1e90>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2ff18d0>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3199c10>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2ff1e90>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2fd2e50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672282.247246, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3199c10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x317af50>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:24:42,251 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:42,251 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:42,288 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:42,289 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:42,289 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:42,289 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:42,289 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:42,290 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:42,290 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:42,290 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:42,290 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:42,290 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x31aa790>, 'start_response': <function repl_start_response at 0x2cd4aa0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x31aa6d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x31aa790>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x31aae90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x31aa6d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x316b450 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672282.2910111, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x31aae90>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x31aa8d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:42,294 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:42,295 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:43,118 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:43,129 DEBUG [routes.middleware] Matched GET /
 
14:24:43,130 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:43,130 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:43,130 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:43,130 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:43,130 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:43,131 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:43,131 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:43,131 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2f18f10>, 'start_response': <function repl_start_response at 0x31a9c80>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2f18bd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2f18f10>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2b26650>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2f18bd0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2e82b50 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672283.1315539, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2b26650>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x317aed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:24:43,134 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:43,135 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:24:43,175 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:24:43,176 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:24:43,177 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:24:43,177 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:24:43,177 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:24:43,177 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:24:43,178 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:24:43,178 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:24:43,178 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:24:43,178 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3171d50>, 'start_response': <function repl_start_response at 0x31890c8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2ad8d90>, 'HTTP_REFERER': 'http://127.0.0.1:5000/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2b26050>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3171950>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3171d50>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2b26bd0>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x3171750>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '5000', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3171950>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x2b26c10>, 'wsgi.input': <socket._fileobject object at 0x2acf850 length=0>, 'HTTP_HOST': '127.0.0.1:5000', 'beaker.session': {'_accessed_time': 1266672283.178623, '_creation_time': 1266672101.931427}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x3171750>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x31aa5d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f53f992f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1bf2550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:24:43,182 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:24:43,182 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:26:32,339 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:26:32,339 DEBUG [pylons.configuration] Pushing process configuration
 
14:26:32,343 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:26:32,343 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:26:34,061 DEBUG [pylons.templating] Initialized Buffet object
 
14:26:34,061 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:26:34,062 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:26:34,064 DEBUG [paste.httpserver.ThreadPool] Started new worker 139846010796304: Initial worker pool
 
14:26:34,064 DEBUG [paste.httpserver.ThreadPool] Started new worker 139846002403600: Initial worker pool
 
14:26:34,064 DEBUG [paste.httpserver.ThreadPool] Started new worker 139845994010896: Initial worker pool
 
14:26:34,064 DEBUG [paste.httpserver.ThreadPool] Started new worker 139845985618192: Initial worker pool
 
14:26:34,065 DEBUG [paste.httpserver.ThreadPool] Started new worker 139845977225488: Initial worker pool
 
14:26:34,065 DEBUG [paste.httpserver.ThreadPool] Started new worker 139845968832784: Initial worker pool
 
14:26:34,066 DEBUG [paste.httpserver.ThreadPool] Started new worker 139845960440080: Initial worker pool
 
14:26:34,066 DEBUG [paste.httpserver.ThreadPool] Started new worker 139845952047376: Initial worker pool
 
14:26:34,066 DEBUG [paste.httpserver.ThreadPool] Started new worker 139845943654672: Initial worker pool
 
14:26:34,067 DEBUG [paste.httpserver.ThreadPool] Started new worker 139845935261968: Initial worker pool
 
14:27:02,453 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:27:02,453 DEBUG [pylons.configuration] Pushing process configuration
 
14:27:02,457 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:27:02,457 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:27:04,150 DEBUG [pylons.templating] Initialized Buffet object
 
14:27:04,150 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:27:04,151 DEBUG [paste.httpserver.ThreadPool] Started new worker 140543673231632: Initial worker pool
 
14:27:04,151 DEBUG [paste.httpserver.ThreadPool] Started new worker 140543664838928: Initial worker pool
 
14:27:04,151 DEBUG [paste.httpserver.ThreadPool] Started new worker 140543656446224: Initial worker pool
 
14:27:04,152 DEBUG [paste.httpserver.ThreadPool] Started new worker 140543648053520: Initial worker pool
 
14:27:04,152 DEBUG [paste.httpserver.ThreadPool] Started new worker 140543639660816: Initial worker pool
 
14:27:04,152 DEBUG [paste.httpserver.ThreadPool] Started new worker 140543631268112: Initial worker pool
 
14:27:04,152 DEBUG [paste.httpserver.ThreadPool] Started new worker 140543622875408: Initial worker pool
 
14:27:04,153 DEBUG [paste.httpserver.ThreadPool] Started new worker 140543614482704: Initial worker pool
 
14:27:04,153 DEBUG [paste.httpserver.ThreadPool] Started new worker 140543606090000: Initial worker pool
 
14:27:04,153 DEBUG [paste.httpserver.ThreadPool] Started new worker 140543597697296: Initial worker pool
 
14:27:12,346 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:27:12,348 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:27:12,349 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:27:12,379 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:27:12,379 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:27:12,379 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:27:12,380 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:27:12,380 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x2f1b290>, 'start_response': <function repl_start_response at 0x2f1e140>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf1c90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': u'/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d42610>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': u'/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x2f1b5d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2d42f10>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x2f1b290>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x2f1b110>, {'action': u'view', 'controller': u'hg', 'path_info': u'/'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x2f1b5d0>, 'wsgi.input': <socket._fileobject object at 0x2ce7650 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266672432.380492, '_creation_time': 1266672432.380492}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x2f1b110>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x2f19ed0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd2e516f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e12910>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': u'/', 'action': u'view'}
 
14:27:12,384 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:27:12,384 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:27:12,453 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:27:12,455 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:27:12,455 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:27:12,455 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:27:12,455 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:27:12,455 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:27:12,455 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x312dbd0>, 'start_response': <function repl_start_response at 0x312cde8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf1c90>, 'HTTP_REFERER': 'http://127.0.0.1:8001/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d42610>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x312d810>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x312dbd0>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2d42f10>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x312d710>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x312d810>, 'wsgi.input': <socket._fileobject object at 0x2ce76d0 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266672432.456079, '_creation_time': 1266672432.380492}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x312d710>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x312d6d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd2e516f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e12910>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:27:12,459 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:27:12,460 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:27:12,460 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:27:12,461 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:27:12,461 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:27:12,462 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:27:12,462 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:27:12,462 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:27:12,462 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x313c810>, 'start_response': <function repl_start_response at 0x3138500>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf1c90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d42610>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x313c690>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2d42f10>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x313c810>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x312df10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x313c690>, 'wsgi.input': <socket._fileobject object at 0x2ce75d0 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266672432.4625671, '_creation_time': 1266672432.380492}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x312df10>, 'HTTP_ACCEPT': 'image/png,image/*;q=0.8,*/*;q=0.5', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x312d650>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd2e516f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e12910>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/hgicon.png', 'action': u'view'}
 
14:27:12,466 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:27:12,466 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:27:14,016 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:27:14,017 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:27:14,018 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:27:14,018 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:27:14,018 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:27:14,018 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:27:14,018 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x313c490>, 'start_response': <function repl_start_response at 0x3138aa0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf1c90>, 'HTTP_REFERER': 'http://127.0.0.1:8001/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d42610>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/ftp_exchange/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x313c190>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x313c490>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2d42f10>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x313ce10>, {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x313c190>, 'wsgi.input': <socket._fileobject object at 0x3094cd0 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266672434.0187299, '_creation_time': 1266672432.380492}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x313ce10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x313c610>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd2e516f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e12910>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'ftp_exchange/', 'action': u'view'}
 
14:27:14,059 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:27:14,060 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:27:14,077 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:27:14,078 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:27:14,078 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:27:14,078 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:27:14,079 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:27:14,079 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:27:14,079 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3231f10>, 'start_response': <function repl_start_response at 0x339bcf8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf1c90>, 'HTTP_REFERER': 'http://127.0.0.1:8001/ftp_exchange/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d42610>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3231cd0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3231f10>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x2d42f10>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x313cb10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3231cd0>, 'wsgi.input': <socket._fileobject object at 0x3094ed0 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266672434.0794489, '_creation_time': 1266672432.380492}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x313cb10>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x312df10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd2e516f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e12910>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:27:14,083 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:27:14,083 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:27:15,468 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:27:15,470 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:27:15,471 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:27:15,471 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:27:15,472 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:27:15,472 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:27:15,472 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x339a690>, 'start_response': <function repl_start_response at 0x33af758>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf1c90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d42610>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x339a490>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2d42f10>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x339a690>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x338fa10>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x339a490>, 'wsgi.input': <socket._fileobject object at 0x3248cd0 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266672435.474297, '_creation_time': 1266672432.380492}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x338fa10>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x3231850>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd2e516f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e12910>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/hgicon.png', 'action': u'view'}
 
14:27:15,485 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:27:15,486 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:27:15,510 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:27:15,514 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:27:15,515 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:27:15,515 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:27:15,515 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:27:15,516 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:27:15,516 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x3231f50>, 'start_response': <function repl_start_response at 0x339b5f0>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x2cf1c90>, 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x2d42610>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/hgicon.png', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x32319d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'beaker.cache': <beaker.cache.CacheManager object at 0x2d42f10>, 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x3231f50>, 'wsgi.url_scheme': 'http', 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x313ca90>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/hgicon.png'}), 'SERVER_PORT': '8001', 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x32319d0>, 'wsgi.input': <socket._fileobject object at 0x320af50 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266672435.5170131, '_creation_time': 1266672432.380492}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x313ca90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x312d5d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fd2e516f1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x1e12910>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/hgicon.png', 'action': u'view'}
 
14:27:15,528 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:27:15,528 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:28:09,731 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:28:09,732 DEBUG [pylons.configuration] Pushing process configuration
 
14:28:09,735 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:28:09,735 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:28:36,064 DEBUG [pylons.configuration] Initializing configuration, package: 'pylons_app'
 
14:28:36,065 DEBUG [pylons.configuration] Pushing process configuration
 
14:28:36,068 DEBUG [pylons.configuration] Adding mako engine with alias None and {'myghty.data_dir': '/home/marcink/python_workspace/hg_app/data/templates', 'mako.directories': ['/home/marcink/python_workspace/hg_app/pylons_app/templates'], 'myghty.component_root': [{'templates': '/home/marcink/python_workspace/hg_app/pylons_app/templates'}], 'kid.encoding': 'utf-8', 'kid.assume_encoding': 'utf-8', 'mako.module_directory': '/home/marcink/python_workspace/hg_app/data/templates', 'myghty.allow_globals': ['c', 'config', 'g', 'h', 'render', 'request', 'session', 'translator', 'ungettext', '_', 'N_'], 'myghty.output_encoding': 'utf-8', 'myghty.raise_error': True, 'mako.output_encoding': 'utf-8', 'mako.filesystem_checks': True} options
 
14:28:36,068 DEBUG [pylons.configuration] Loaded mako template engine as the default template renderer
 
14:28:37,750 DEBUG [pylons.templating] Initialized Buffet object
 
14:28:37,750 DEBUG [pylons.templating] Adding mako template language for use with Buffet
 
14:28:37,750 DEBUG [routes.middleware] Initialized with method overriding = True, and path info altering = True
 
14:28:37,924 DEBUG [paste.httpserver.ThreadPool] Started new worker 139875953305872: Initial worker pool
 
14:28:37,936 DEBUG [paste.httpserver.ThreadPool] Started new worker 139875944913168: Initial worker pool
 
14:28:37,937 DEBUG [paste.httpserver.ThreadPool] Started new worker 139875936520464: Initial worker pool
 
14:28:37,938 DEBUG [paste.httpserver.ThreadPool] Started new worker 139875928127760: Initial worker pool
 
14:28:37,939 DEBUG [paste.httpserver.ThreadPool] Started new worker 139875919735056: Initial worker pool
 
14:28:37,955 DEBUG [paste.httpserver.ThreadPool] Started new worker 139875911342352: Initial worker pool
 
14:28:37,956 DEBUG [paste.httpserver.ThreadPool] Started new worker 139875902949648: Initial worker pool
 
14:28:37,956 DEBUG [paste.httpserver.ThreadPool] Started new worker 139875894556944: Initial worker pool
 
14:28:37,956 DEBUG [paste.httpserver.ThreadPool] Started new worker 139875886164240: Initial worker pool
 
14:28:37,956 DEBUG [paste.httpserver.ThreadPool] Started new worker 139875810539792: Initial worker pool
 
14:28:41,872 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:28:41,879 DEBUG [routes.middleware] Matched GET /ftp_exchange/
 
14:28:41,879 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:28:41,879 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/'}
 
14:28:41,880 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:28:41,881 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:28:41,912 DEBUG [pylons.wsgiapp] Found controller, module: 'pylons_app.controllers.hg', class: 'HgController'
 
14:28:41,912 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:28:41,912 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:28:41,912 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:28:41,912 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x392be90>, 'start_response': <function repl_start_response at 0x39391b8>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x38cae50>, 'HTTP_REFERER': 'http://127.0.0.1:8001/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x391a090>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/ftp_exchange/', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x3935210>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x392be90>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x391a890>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x392bc90>, {'action': u'view', 'controller': u'hg', 'path_info': 'ftp_exchange/'}), 'SERVER_PORT': '8001', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x391acd0>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x3935210>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x391acd0>, 'wsgi.input': <socket._fileobject object at 0x38c15d0 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266672521.9130261, '_creation_time': 1266672521.9130261}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x392bc90>, 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x392ba10>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f376e01c1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a87550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'ftp_exchange/', 'action': u'view'}
 
14:28:41,953 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:28:41,953 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
 
14:28:42,129 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued)
 
14:28:42,132 DEBUG [routes.middleware] Matched GET /static/style-gitweb.css
 
14:28:42,132 DEBUG [routes.middleware] Route path: '/{path_info:.*}', defaults: {'action': u'view', 'controller': u'hg', 'path_info': u'/'}
 
14:28:42,132 DEBUG [routes.middleware] Match dict: {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}
 
14:28:42,132 DEBUG [pylons.wsgiapp] Setting up Pylons stacked object globals
 
14:28:42,133 DEBUG [pylons.wsgiapp] Resolved URL to controller: u'hg'
 
14:28:42,133 DEBUG [pylons.wsgiapp] Controller appears to be a class, instantiating
 
14:28:42,133 DEBUG [pylons.wsgiapp] Calling controller class with WSGI interface
 
14:28:42,133 DEBUG [pylons.controllers.core] Looking for u'view' method to handle the request
 
14:28:42,133 DEBUG [pylons.controllers.core] Calling 'view' method with keyword args: **{'pylons': <pylons.util.PylonsContext object at 0x4035510>, 'start_response': <function repl_start_response at 0x4032b90>, 'controller': u'hg', 'environ': {'routes.route': <routes.route.Route object at 0x38cae50>, 'HTTP_REFERER': 'http://127.0.0.1:8001/ftp_exchange/', 'pylons.routes_dict': {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}, 'beaker.get_session': <bound method SessionMiddleware._get_session of <beaker.middleware.SessionMiddleware object at 0x391a090>>, 'SCRIPT_NAME': '', 'webob.adhoc_attrs': {'language': 'en-us'}, 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/static/style-gitweb.css', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'paste.throw_errors': True, 'pylons.action_method': <bound method HgController.view of <pylons_app.controllers.hg.HgController object at 0x40355d0>>, 'CONTENT_LENGTH': '0', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.2pre) Gecko/20100219 Ubuntu/9.10 (karmic) Namoroka/3.6.2pre', 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE': 'pylons_app=770cd9b88fbc14ed3746e026a4cb4519a36ed961e68a9cfa207d1188ddc7838bcb6e168a', 'SERVER_NAME': '127.0.0.1', 'REMOTE_ADDR': '127.0.0.1', 'pylons.environ_config': {'session': 'beaker.session', 'cache': 'beaker.cache'}, 'pylons.pylons': <pylons.util.PylonsContext object at 0x4035510>, 'wsgi.url_scheme': 'http', 'beaker.cache': <beaker.cache.CacheManager object at 0x391a890>, 'wsgiorg.routing_args': (<routes.util.URLGenerator object at 0x392bc50>, {'action': u'view', 'controller': u'hg', 'path_info': 'static/style-gitweb.css'}), 'SERVER_PORT': '8001', 'weberror.evalexception': <weberror.evalexception.EvalException object at 0x391acd0>, 'pylons.controller': <pylons_app.controllers.hg.HgController object at 0x40355d0>, 'paste.evalexception': <weberror.evalexception.EvalException object at 0x391acd0>, 'wsgi.input': <socket._fileobject object at 0x39272d0 length=0>, 'HTTP_HOST': '127.0.0.1:8001', 'beaker.session': {'_accessed_time': 1266672522.1343889, '_creation_time': 1266672521.9130261}, 'wsgi.multithread': True, 'routes.url': <routes.util.URLGenerator object at 0x392bc50>, 'HTTP_ACCEPT': 'text/css,*/*;q=0.1', 'wsgi.version': (1, 0), 'paste.registry': <paste.registry.Registry object at 0x40352d0>, 'wsgi.run_once': False, 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f376e01c1c8>, 'wsgi.multiprocess': False, 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'CONTENT_TYPE': '', 'paste.httpserver.thread_pool': <paste.httpserver.ThreadPool object at 0x2a87550>, 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_KEEP_ALIVE': '115'}, 'path_info': 'static/style-gitweb.css', 'action': u'view'}
 
14:28:42,139 DEBUG [pylons.controllers.core] Merging pylons.response headers into start_response call, status: 200 Script output follows
 
14:28:42,139 DEBUG [pylons.controllers.core] Response assumed to be WSGI content, returning un-touched
pylons_app/config/middleware.py
Show inline comments
 
"""Pylons middleware initialization"""
 
from beaker.middleware import CacheMiddleware, SessionMiddleware
 
from paste.cascade import Cascade
 
from paste.registry import RegistryManager
 
from paste.urlparser import StaticURLParser
 
from paste.deploy.converters import asbool
 
from pylons import config
 
from pylons.middleware import ErrorHandler, StatusCodeRedirect
 
from pylons.wsgiapp import PylonsApp
 
from routes.middleware import RoutesMiddleware
 

	
 
from pylons_app.config.environment import load_environment
 

	
 
def make_app(global_conf, full_stack = True, static_files = True, **app_conf):
 
    """Create a Pylons WSGI application and return it
 

	
 
    ``global_conf``
 
        The inherited configuration for this application. Normally from
 
        the [DEFAULT] section of the Paste ini file.
 

	
 
    ``full_stack``
 
        Whether this application provides a full WSGI stack (by default,
 
        meaning it handles its own exceptions and errors). Disable
 
        full_stack when this application is "managed" by another WSGI
 
        middleware.
 

	
 
    ``static_files``
 
        Whether this application serves its own static files; disable
 
        when another web server is responsible for serving them.
 

	
 
    ``app_conf``
 
        The application's local configuration. Normally specified in
 
        the [app:<name>] section of the Paste ini file (where <name>
 
        defaults to main).
 

	
 
    """
 
    # Configure the Pylons environment
 
    load_environment(global_conf, app_conf)
 

	
 
    # The Pylons WSGI app
 
    app = PylonsApp()
 

	
 
    # Routing/Session/Cache Middleware
 
    app = RoutesMiddleware(app, config['routes.map'])
 
    app = SessionMiddleware(app, config)
 
    app = CacheMiddleware(app, config)
 

	
 
    # CUSTOM MIDDLEWARE HERE (filtered by error handling middlewares)
 

	
 
    if asbool(full_stack):
 
        # Handle Python exceptions
 
        app = ErrorHandler(app, global_conf, **config['pylons.errorware'])
 

	
 
        # Display error documents for 401, 403, 404 status codes (and
 
        # 500 when debug is disabled)
 
        if asbool(config['debug']):
 
            app = StatusCodeRedirect(app)
 
        else:
 
            app = StatusCodeRedirect(app, [400, 401, 403, 404, 500])
 

	
 
    # Establish the Registry for this application
 
    app = RegistryManager(app)
 

	
 
    if asbool(static_files):
 
        # Serve static files
 
        static_app = StaticURLParser(config['pylons.paths']['static_files'])
 
        app = Cascade([static_app, app])
 

	
 
    #dozer debug
 
#    if asbool(config['debug']):
 
#        from dozer import Logview
 
#        app = Logview(app, config)
 
    if asbool(config['debug']):
 
        from dozer import Logview
 
        app = Logview(app, config)
 

	
 
    return app
pylons_app/controllers/hg.py
Show inline comments
 
#!/usr/bin/python
 
# -*- coding: utf-8 -*-
 
import logging
 
from pylons_app.lib.base import BaseController
 
from pylons import c, g, session, h, request
 
from mako.template import Template
 
from pprint import pprint
 
import os
 
#uncomment the following if you want to serve a single repo
 
#from mercurial.hgweb.hgweb_mod import hgweb
 
from mercurial.hgweb.hgwebdir_mod import hgwebdir
 
from mercurial.hgweb.request import wsgiapplication
 
log = logging.getLogger(__name__)
 

	
 
from mercurial import ui, hg
 
from mercurial.error import RepoError
 
from ConfigParser import ConfigParser
 

	
 
def make_web_app():
 
    repos = "hgwebdir.config"
 
    hgwebapp = hgwebdir(repos)
 
    return hgwebapp
 
log = logging.getLogger(__name__)
 

	
 
class HgController(BaseController):
 
    #based on
 
    #http://bel-epa.com/hg/
 
    def index(self):
 
        hgapp = wsgiapplication(make_web_app)
 
        return hgapp(request.environ, self.start_response)
 
        return g.hgapp(request.environ, self.start_response)
 

	
 
    def view(self, *args, **kwargs):
 
        hgapp = wsgiapplication(make_web_app)
 
        return hgapp(request.environ, self.start_response)
 
        return g.hgapp(request.environ, self.start_response)
 

	
 
    def add_repo(self, new_repo):
 
        tmpl = '''
 
                  <html>
 
                    <body>
 
                        %(msg)s%(new_repo)s!<br \>
 
                        <a href="/">repos</a>
 
                    </body>
 
                  </html>
 
                '''
 
        #extra check it can be add since it's the command
 
        if new_repo == 'add':
 
            return [tmpl % ({'new_repo':'', 'msg':'you basstard ! this repo is a command'})]
 

	
 
        new_repo = new_repo.replace(" ", "_")
 
        new_repo = new_repo.replace("-", "_")
 

	
 
        try:
 
            self._create_repo(new_repo)
 
        except Exception as e:
 
            return [tmpl % ({'new_repo':' Exception when adding: ' + new_repo, 'msg':str(e)})]
 

	
 
        return [tmpl % ({'new_repo':new_repo, 'msg':'added repo: '})]
 

	
 
    def _check_repo(self, repo_name):
 
        p = os.path.dirname(__file__)
 
        config_path = os.path.join(p, '../..', 'hgwebdir.config')
 
        print config_path
 

	
 
        cp = ConfigParser()
 

	
 
        cp.read(config_path)
 
        repos_path = cp.get('paths', '/').replace("**", '')
 

	
 
        if not repos_path:
 
            raise Exception('Could not read config !')
 

	
 
        self.repo_path = os.path.join(repos_path, repo_name)
 

	
 
        try:
 
            r = hg.repository(ui.ui(), self.repo_path)
 
            hg.verify(r)
 
            #here we hnow that repo exists it was verified
 
            log.info('%s repo is already created', repo_name)
 
            raise Exception('Repo exists')
 
        except RepoError:
 
            log.info('%s repo is free for creation', repo_name)
 
            #it means that there is no valid repo there...
 
            return True
 

	
 

	
 
    def _create_repo(self, repo_name):
 
        if repo_name in [None, '', 'add']:
 
            raise Exception('undefined repo_name of repo')
 

	
 
        if self._check_repo(repo_name):
 
            log.info('creating repo %s in %s', repo_name, self.repo_path)
 
            cmd = """mkdir %s && hg init %s""" \
 
                    % (self.repo_path, self.repo_path)
 
            os.popen(cmd)
 

	
 
#def _make_app():
 
#    #for single a repo
 
#    #return hgweb("/path/to/repo", "Name")
 
#    repos = "hgwebdir.config"
 
#    return  hgwebdir(repos)
 
#
 

	
 
#    def view(self, environ, start_response):
 
#        #the following is only needed when using hgwebdir
 
#        app = _make_app()
 
#        #return wsgi_app(environ, start_response)
 
#        response = app(request.environ, self.start_response)
 
#
 
#        if environ['PATH_INFO'].find("static") != -1:
 
#            return response
 
#        else:
 
#            #wrap the murcurial response in a mako template.
 
#            template = Template("".join(response),
 
#                                lookup = environ['pylons.pylons']\
 
#                                .config['pylons.g'].mako_lookup)
 
#
 
#            return template.render(g = g, c = c, session = session, h = h)
pylons_app/lib/app_globals.py
Show inline comments
 
"""The application's Globals object"""
 

	
 
#uncomment the following if you want to serve a single repo
 
#from mercurial.hgweb.hgweb_mod import hgweb
 
from mercurial.hgweb.hgwebdir_mod import hgwebdir
 
from mercurial.hgweb.request import wsgiapplication
 
class Globals(object):
 

	
 
    """Globals acts as a container for objects available throughout the
 
    life of the application
 

	
 
    """
 

	
 
    def __init__(self):
 
        """One instance of Globals is created during application
 
        initialization and is available during requests via the
 
        'app_globals' variable
 

	
 
        """
 
        #two ways of building the merc app i don't know 
 
        #the fastest one but belive the wsgiapp is better
 
        #self.hgapp = self.make_web_app()
 
        self.hgapp = wsgiapplication(self.make_web_app)
 

	
 
    def make_web_app(self):
 
        repos = "hgwebdir.config"
 
        hgwebapp = hgwebdir(repos)
 
        return hgwebapp
0 comments (0 inline, 0 general)