Opened 11 years ago
Last modified 11 years ago
#11739 new enhancement
EstimationTools plug-in for planned and total hours
Reported by: | anonymous | Owned by: | Joachim Hoessler |
---|---|---|---|
Priority: | normal | Component: | EstimationToolsPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: |
Description (last modified by )
Finnish Alfame Systems Oy has made some improvements to the EstimationToolsPlugin. The Alfame version of the plug-in counts planned (new PlannedHours macro) and total hours (new TotalHours macro) in the same way as the original version counts estimated hours (existing HoursRemaining macro).
However if the page to be included contains any non-ASCII characters, such as the common Finnish vowels ä or ö, the processing might stop with error. The fix to this is however a one-liner:
-return str(body)+(edit_link and link_tag or '') +return unicode(body)+(edit_link and link_tag or '')
Attached is the diff / patch for the improved version.
Attachments (2)
Change History (5)
Changed 11 years ago by
Attachment: | patsi.diff added |
---|
comment:1 Changed 11 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 11 years ago by
The patch does not include the content of the new files:
-
SOURCES.txt
8 8 estimationtools/__init__.py 9 9 estimationtools/burndownchart.py 10 10 estimationtools/hoursinplaceeditor.py 11 estimationtools/hoursplanned.py 11 12 estimationtools/hoursremaining.py 13 estimationtools/plannedhours.py 14 estimationtools/totalhours.py 12 15 estimationtools/utils.py 13 16 estimationtools/workloadchart.py
comment:3 Changed 11 years ago by
New diff / patch file (estimationtools.diff) added that should contain the missing content.
Attachment to ticket #11739 - diff / patch file