wafaBelHadjAmmar / taskblocks

Automatically exported from code.google.com/p/taskblocks
GNU General Public License v3.0
0 stars 0 forks source link

support for end time in data file format #20

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Current data file format specifies task start and effort, the end time is 
counted by the application.
For purposes of conversion from other data formats to taskblocks, it would be 
useful to specify "start" and "end" of the task in the xml data file, 
taskblocks application will count the effort.
It is sometime difficult to mimic taskblocks and count the effort from to the 
start/end time for the converting applications (sove weekends, man's workload 
etc.)

Original issue reported on code.google.com by jakub.ne...@gmail.com on 26 Oct 2011 at 9:18

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r72.

Original comment by jakub.ne...@gmail.com on 26 Oct 2011 at 9:19

GoogleCodeExporter commented 8 years ago
Example of input file, now supported. The 'end' time is inclusive (the 
specified day counts too).

<?xml version="1.0"?>
<taskman>
  <mans>
    <man id="1" name="Johny" workload="100" />
  </mans>
  <tasks>
    <task id="1" man="1" name="Test" start="2011-09-01T10:00:00" end="2011-09-15T10:00:00"/>
  </tasks>
</taskman>

Original comment by jakub.ne...@gmail.com on 26 Oct 2011 at 9:28