More:

No handler matched request to /backlog/Product Backlog


AttributeError: 'module' object has no attribute 'dumps'

#   File "/usr/lib/python2.5/site-packages/Trac-0.11.5-py2.5.egg/trac/
web/main.py", line 444, in  _dispatch_request
Code fragment:

 439. try:
 440. if not env and env_error:
 441. raise HTTPInternalError(env_error)
 442. try:
 443. dispatcher = RequestDispatcher(env)
 444. dispatcher.dispatch(req)
 445. except RequestDone:
 446. pass
 447. resp = req._response or []
 448.
 449. except HTTPException, e:

Local variables:
Name    Value
after   [u' except RequestDone:', u' pass', u' resp = ...
before  [u' try:', u' if not env and env_error:', u' raise ...
dispatcher      <trac.web.main.RequestDispatcher object at 0x440b350>
e       AttributeError("'module' object has no attribute 'dumps'",)
env     <trac.env.Environment object at 0x3e85950>
env_error       None
exc_info        (<type 'exceptions.AttributeError'>, AttributeError
("'module' object has ...
filename        '/usr/lib/python2.5/site-packages/Trac-0.11.5-py2.5.egg/trac/
web/main.py'
frames  [{'function': '_dispatch_request', 'lines_before': [u' try:',
u' ...
has_admin       True
line    u' dispatcher.dispatch(req)'
lineno  443
message         u"AttributeError: 'module' object has no attribute 'dumps'"
req     <Request "GET u'/backlog/Product Backlog'">
resp    []
tb      <traceback object at 0x511f8c0>
tb_hide         None
traceback       u'Traceback (most recent call last):\n File ...
# File "/usr/lib/python2.5/site-packages/Trac-0.11.5-py2.5.egg/trac/
web/main.py", line 205, in dispatch
Code fragment:

 200. req.args.get('__FORM_TOKEN') != req.form_token:
 201. raise HTTPBadRequest('Missing or invalid form token. '
 202. 'Do you have cookies enabled?')
 203.
 204. # Process the request and render the template
 205. resp = chosen_handler.process_request(req)
 206. if resp:
 207. if len(resp) == 2: # Clearsilver
 208. chrome.populate_hdf(req)
 209. template, content_type = \
 210. self._post_process_request(req, *resp)

Local variables:
Name    Value
chosen_handler  <agilo.scrum.backlog.web_ui.BacklogDetailView object
at 0x3e8af10>
chrome  <trac.web.chrome.Chrome object at 0x44198d0>
err     (<type 'exceptions.AttributeError'>, AttributeError("'module'
object has ...
handler         <agilo.scrum.backlog.web_ui.BacklogDetailView object at
0x3e8af10>
req     <Request "GET u'/backlog/Product Backlog'">
self    <trac.web.main.RequestDispatcher object at 0x440b350>
# File "/usr/lib/python2.5/site-packages/agilo-0.8.3_r1918_20090925-
py2.5.egg/agilo/api/view.py", line 155, in process_request
Code fragment:

 150. basically, than send a Command Request to a Controller. The
 151. response has to be rendered according to the view needs."""
 152. try:
 153. handler = self.get_handler(req)
 154. if handler is not None:
 155. return self._call_filters_and_handler(req, handler)
 156. else:
 157. raise TracError('No handler found for method %s' % req.method)
 158. except controller.ICommand.NotValidError, e:
 159. chrome.add_warning(req, unicode(e))
 160. # not that we update the data, so that the set value are

Local variables:
Name    Value
handler         <bound method BacklogDetailView.do_get of ...
req     <Request "GET u'/backlog/Product Backlog'">
self    <agilo.scrum.backlog.web_ui.BacklogDetailView object at
0x3e8af10>
# File "/usr/lib/python2.5/site-packages/agilo-0.8.3_r1918_20090925-
py2.5.egg/agilo/api/view.py", line 143, in _call_filters_and_handler
Code fragment:

 138. return True
 139.
 140. def _call_filters_and_handler(self, req, handler):
 141. for filter in self.filters:
 142. filter.pre_process_request(req)
 143. data = handler(req) or {}
 144. for filter in self.filters:
 145. filter.post_process_request(req)
 146. return self.respond(data)
 147.
 148. def process_request(self, req):

Local variables:
Name    Value
handler         <bound method BacklogDetailView.do_get of ...
req     <Request "GET u'/backlog/Product Backlog'">
self    <agilo.scrum.backlog.web_ui.BacklogDetailView object at
0x3e8af10>
# File "/usr/lib/python2.5/site-packages/agilo-0.8.3_r1918_20090925-
py2.5.egg/agilo/scrum/backlog/web_ui.py", line 826, in do_get
Code fragment:

 821. # This method will handle the request completely, will not
return
 822. mime.send_converted(req, BACKLOG_CONVERSION_KEY, backlog,
format,
 823. filename=backlog.scope)
 824.
 825. # Send data
 826. self._do_show(req, data, backlog)
 827. self._prepare_permissions(req, data, backlog)
 828. return data
 829.
 830. def do_post(self, req):
 831. # manage the POST request

Local variables:
Name    Value
backlog         <agilo.scrum.backlog.model.Backlog object at 0x4cc2250>
data    {'username': u'flavour', 'attribute_filter_options': None,
'headers': ...
format  None
req     <Request "GET u'/backlog/Product Backlog'">
self    <agilo.scrum.backlog.web_ui.BacklogDetailView object at
0x3e8af10>
# File "/usr/lib/python2.5/site-packages/agilo-0.8.3_r1918_20090925-
py2.5.egg/agilo/scrum/backlog/web_ui.py", line 487, in _do_show
Code fragment:

 482.
 483. data['headers'] = [h['label'] for h in columns]
 484. data['columns'] = columns
 485. data['backlog_totals'] = sums
 486. data['attribute_filter_options'] =
self._get_attribute_filter_options()
 487. data['child_type_mapping'] = self._configured_child_types(req)
 488. data['backlog_info'] = self._backlog_information(req, backlog)
 489.
 490. chart_widgets = self._load_chart_widgets(req, backlog)
 491. data['charts'] = chart_widgets
 492. self._add_conversion_links(req, backlog)

Local variables:
Name    Value
backlog         <agilo.scrum.backlog.model.Backlog object at 0x4cc2250>
col     {'name': 'rd_points', 'show': True, 'type': u'select',
'editable': True, ...
columns         [{'type': 'text', 'editable': False, 'name': 'id', 'label':
'ID'}, ...
conf_columns    [{'name': 'businessvalue', 'show': True, 'type':
u'select', 'editable': ...
data    {'username': u'flavour', 'attribute_filter_options': None,
'headers': ...
h       {'name': 'rd_points', 'show': True, 'type': u'select', 'editable':
True, ...
name    'rd_points'
req     <Request "GET u'/backlog/Product Backlog'">
self    <agilo.scrum.backlog.web_ui.BacklogDetailView object at
0x3e8af10>
sprint  None
sums    {}
# File "/usr/lib/python2.5/site-packages/agilo-0.8.3_r1918_20090925-
py2.5.egg/agilo/scrum/backlog/web_ui.py", line 383, in
_configured_child_types
Code fragment:

 378. return allowed_actions
 379.
 380. def _configured_child_types(self, req):
 381. view = ConfiguredChildTypesView(self.env)
 382. configured_child_types = view.do_get(req, req.args)
 383. return view.as_json(configured_child_types)
 384.
 385. def _backlog_information(self, req, backlog):
 386. backlog_info = dict(type=BacklogType.LABELS[backlog.b_type],
 387. name=backlog.name,
 388. sprint_or_release=backlog.scope)

Local variables:
Name    Value
configured_child_types  {u'requirement': {u'story': [u'owner']},
u'task': {}, u'story': {u'task': ...
req     <Request "GET u'/backlog/Product Backlog'">
self    <agilo.scrum.backlog.web_ui.BacklogDetailView object at
0x3e8af10>
view    <agilo.scrum.backlog.json_ui.ConfiguredChildTypesView object at
0x3e8a310>
# File "/usr/lib/python2.5/site-packages/agilo-0.8.3_r1918_20090925-
py2.5.egg/agilo/api/view.py", line 348, in as_json


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Agilo for Scrum" group. This group is moderated by agile42 GmbH 
http://www.agile42.com and is focused in supporting Agilo for Scrum users.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/agilo?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to