Modify

Opened 10 years ago

Last modified 10 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 Ryan J Ollos)

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)

patsi.diff (7.5 KB) - added by anonymous 10 years ago.
Attachment to ticket #11739 - diff / patch file
estimationtools.diff (7.8 KB) - added by anonymous 10 years ago.
New diff / patch file

Download all attachments as: .zip

Change History (5)

Changed 10 years ago by anonymous

Attachment: patsi.diff added

Attachment to ticket #11739 - diff / patch file

comment:1 Changed 10 years ago by Ryan J Ollos

Description: modified (diff)

comment:2 Changed 10 years ago by osimons

The patch does not include the content of the new files:

  • SOURCES.txt

     
    88estimationtools/__init__.py
    99estimationtools/burndownchart.py
    1010estimationtools/hoursinplaceeditor.py
     11estimationtools/hoursplanned.py
    1112estimationtools/hoursremaining.py
     13estimationtools/plannedhours.py
     14estimationtools/totalhours.py
    1215estimationtools/utils.py
    1316estimationtools/workloadchart.py
Last edited 10 years ago by osimons (previous) (diff)

Changed 10 years ago by anonymous

Attachment: estimationtools.diff added

New diff / patch file

comment:3 Changed 10 years ago by anonymous

New diff / patch file (estimationtools.diff​) added that should contain the missing content.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as new The owner will remain Joachim Hoessler.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.