Changes between Initial Version and Version 1 of Ticket #11739


Ignore:
Timestamp:
May 8, 2014, 7:10:54 PM (10 years ago)
Author:
Ryan J Ollos
Comment:

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).
     1Finnish 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).
    22
    33However 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:
    44
     5{{{#!diff
    56-return str(body)+(edit_link and link_tag or '')
    67+return unicode(body)+(edit_link and link_tag or '')
     8}}}
    79
    810Attached is the diff / patch for the improved version.