The error logging is
2011-04-06 16:54:02,874 Trac[formatter] ERROR: Macro TracJSGanttChart(milestone=Test 3) failed:
Traceback (most recent call last):
File "build\bdist.win32\egg\trac\wiki\formatter.py", line 717, in _macro_formatter
return macro.process(args, in_paragraph=True)
File "build\bdist.win32\egg\trac\wiki\formatter.py", line 304, in process
text = self.processor(text)
File "build\bdist.win32\egg\trac\wiki\formatter.py", line 291, in _macro_processor
text)
File "build\bdist.win32\egg\tracjsgantt\tracjsgantt.py", line 720, in expand_macro
tasks = self._add_tasks(options)
File "build\bdist.win32\egg\tracjsgantt\tracjsgantt.py", line 693, in _add_tasks
self._schedule_tasks()
File "build\bdist.win32\egg\tracjsgantt\tracjsgantt.py", line 417, in _schedule_tasks
t['calc_start'] = _start(t)
File "build\bdist.win32\egg\tracjsgantt\tracjsgantt.py", line 377, in _start
finish = datetime.strptime(_finish(ticket), self.pyDateFormat)
File "build\bdist.win32\egg\tracjsgantt\tracjsgantt.py", line 397, in _finish
elif ticket[self.fields['succ']] != []:
KeyError: None
2011-04-06 16:54:04,013 Trac[main] ERROR: Internal Server Error:
Traceback (most recent call last):
File "build\bdist.win32\egg\trac\web\main.py", line 511, in _dispatch_request
dispatcher.dispatch(req)
File "build\bdist.win32\egg\trac\web\main.py", line 237, in dispatch
resp = chosen_handler.process_request(req)
File "build\bdist.win32\egg\estimationtools\utils.py", line 74, in process_request
chart = opener.open(url.encode('utf-8'))
File "D:\BITNAM~1.2\apache2\bin\lib\urllib2.py", line 387, in open
response = meth(req, response)
File "D:\BITNAM~1.2\apache2\bin\lib\urllib2.py", line 498, in http_response
'http', request, response, code, msg, hdrs)
File "D:\BITNAM~1.2\apache2\bin\lib\urllib2.py", line 425, in error
return self._call_chain(*args)
File "D:\BITNAM~1.2\apache2\bin\lib\urllib2.py", line 360, in _call_chain
result = func(*args)
File "D:\BITNAM~1.2\apache2\bin\lib\urllib2.py", line 506, in http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 414: Request-URI Too Large
1. my configuration is:
[trac-jsgantt]
# To work with Timing and Estimation for percent complete
fields.estimate = estimatedhours
fields.worked = totalhours
# Each unit in estimate is 1/8 of a day
days_per_estimate = 0.125
# To work with Master Tickets for dependencies
#fields.pred = blockedby
#fields.succ = blocking
# To work with Subtickets for parent/child relationships
#fields.parent = parents
# Custom fields for start and due dates
#fields.start = startime
#fields.finish = finishtime
#
date_format = %Y-%m-%d
milestone_type = milestone
I just use the Plugin Timing And Estimation. Master Tickets and Subtickets are not desired currently.
My milestone has about 150 tickets.
My system is Bitnami Trac Stack 0.12.2 via Apache on Windows2003 Server.