Changes between Initial Version and Version 1 of Ticket #11739
- Timestamp:
- May 8, 2014, 7:10:54 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11739 – Description
initial v1 1 Finnish Alfame Systems Oy has made some improvements to the EstimationTools -plug-in (http://trac-hacks.org/wiki/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).1 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). 2 2 3 3 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: 4 4 5 {{{#!diff 5 6 -return str(body)+(edit_link and link_tag or '') 6 7 +return unicode(body)+(edit_link and link_tag or '') 8 }}} 7 9 8 10 Attached is the diff / patch for the improved version.