taskjuggler 3.6.0 → 3.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG +69 -0
- data/Rakefile +4 -1
- data/data/css/tjreport.css +4 -0
- data/data/tjp.vim +9 -3
- data/examples/ProjectTemplate/template.tjp +10 -10
- data/examples/Tutorial/tutorial.tjp +4 -4
- data/lib/taskjuggler/Allocation.rb +1 -1
- data/lib/taskjuggler/AppConfig.rb +1 -1
- data/lib/taskjuggler/AttributeBase.rb +10 -4
- data/lib/taskjuggler/Attributes.rb +2 -2
- data/lib/taskjuggler/BatchProcessor.rb +69 -58
- data/lib/taskjuggler/FileList.rb +1 -1
- data/lib/taskjuggler/Interval.rb +10 -12
- data/lib/taskjuggler/Journal.rb +2 -2
- data/lib/taskjuggler/LogicalFunction.rb +1 -1
- data/lib/taskjuggler/LogicalOperation.rb +7 -4
- data/lib/taskjuggler/MessageHandler.rb +1 -2
- data/lib/taskjuggler/PTNProxy.rb +1 -1
- data/lib/taskjuggler/Project.rb +27 -22
- data/lib/taskjuggler/PropertyList.rb +7 -1
- data/lib/taskjuggler/PropertySet.rb +1 -1
- data/lib/taskjuggler/PropertyTreeNode.rb +5 -3
- data/lib/taskjuggler/Query.rb +3 -3
- data/lib/taskjuggler/RealFormat.rb +1 -1
- data/lib/taskjuggler/Resource.rb +2 -2
- data/lib/taskjuggler/ResourceScenario.rb +66 -6
- data/lib/taskjuggler/RichText/Snip.rb +1 -1
- data/lib/taskjuggler/RuntimeConfig.rb +2 -2
- data/lib/taskjuggler/Scoreboard.rb +5 -2
- data/lib/taskjuggler/SheetHandlerBase.rb +5 -4
- data/lib/taskjuggler/Shift.rb +2 -2
- data/lib/taskjuggler/ShiftAssignments.rb +1 -1
- data/lib/taskjuggler/StatusSheetReceiver.rb +2 -2
- data/lib/taskjuggler/StatusSheetSender.rb +1 -1
- data/lib/taskjuggler/TaskJuggler.rb +4 -4
- data/lib/taskjuggler/TaskScenario.rb +7 -2
- data/lib/taskjuggler/TextParser/Scanner.rb +4 -4
- data/lib/taskjuggler/TextParser.rb +1 -1
- data/lib/taskjuggler/TimeSheetReceiver.rb +2 -2
- data/lib/taskjuggler/TimeSheetSender.rb +1 -1
- data/lib/taskjuggler/TimeSheets.rb +5 -4
- data/lib/taskjuggler/Tj3AppBase.rb +23 -9
- data/lib/taskjuggler/Tj3Config.rb +5 -3
- data/lib/taskjuggler/TjpExample.rb +3 -1
- data/lib/taskjuggler/TjpSyntaxRules.rb +166 -133
- data/lib/taskjuggler/UTF8String.rb +3 -3
- data/lib/taskjuggler/WorkingHours.rb +3 -3
- data/lib/taskjuggler/XMLDocument.rb +1 -1
- data/lib/taskjuggler/XMLElement.rb +12 -1
- data/lib/taskjuggler/apps/Tj3.rb +3 -1
- data/lib/taskjuggler/apps/Tj3Client.rb +3 -2
- data/lib/taskjuggler/apps/Tj3Daemon.rb +5 -3
- data/lib/taskjuggler/apps/Tj3Man.rb +4 -2
- data/lib/taskjuggler/apps/Tj3SsReceiver.rb +3 -1
- data/lib/taskjuggler/apps/Tj3SsSender.rb +3 -1
- data/lib/taskjuggler/apps/Tj3TsReceiver.rb +3 -1
- data/lib/taskjuggler/apps/Tj3TsSender.rb +3 -1
- data/lib/taskjuggler/apps/Tj3TsSummary.rb +3 -1
- data/lib/taskjuggler/apps/Tj3WebD.rb +4 -2
- data/lib/taskjuggler/daemon/ProjectServer.rb +2 -2
- data/lib/taskjuggler/deep_copy.rb +1 -1
- data/lib/taskjuggler/reports/CSVFile.rb +4 -4
- data/lib/taskjuggler/reports/ChartPlotter.rb +1 -1
- data/lib/taskjuggler/reports/GanttChart.rb +8 -2
- data/lib/taskjuggler/reports/GanttHeader.rb +11 -1
- data/lib/taskjuggler/reports/GanttLine.rb +6 -0
- data/lib/taskjuggler/reports/ICalReport.rb +1 -1
- data/lib/taskjuggler/reports/MspXmlRE.rb +5 -3
- data/lib/taskjuggler/reports/Report.rb +6 -6
- data/lib/taskjuggler/reports/ReportTableCell.rb +1 -1
- data/lib/taskjuggler/reports/TableReport.rb +7 -12
- data/lib/taskjuggler/reports/TjpExportRE.rb +1 -5
- data/lib/taskjuggler/reports/TraceReport.rb +2 -2
- data/lib/taskjuggler/version.rb +1 -0
- data/man/tj3.1 +130 -0
- data/man/tj3client.1 +145 -0
- data/man/tj3d.1 +93 -0
- data/man/tj3man.1 +76 -0
- data/man/tj3ss_receiver.1 +86 -0
- data/man/tj3ss_sender.1 +100 -0
- data/man/tj3ts_receiver.1 +86 -0
- data/man/tj3ts_sender.1 +92 -0
- data/man/tj3ts_summary.1 +104 -0
- data/man/tj3webd.1 +86 -0
- data/manual/Day_To_Day_Juggling +8 -8
- data/manual/Installation +6 -6
- data/manual/List_Attributes +1 -1
- data/manual/Rich_Text_Attributes +6 -5
- data/manual/Software +6 -6
- data/manual/TaskJuggler_Internals +4 -4
- data/manual/The_TaskJuggler_Syntax +5 -5
- data/manual/Tutorial +13 -11
- data/manual/html/Day_To_Day_Juggling.html +9 -9
- data/manual/html/Getting_Started.html +2 -2
- data/manual/html/How_To_Contribute.html +2 -2
- data/manual/html/Installation.html +8 -8
- data/manual/html/Intro.html +2 -2
- data/manual/html/List_Attributes.html +3 -3
- data/manual/html/Reporting_Bugs.html +2 -2
- data/manual/html/Rich_Text_Attributes.html +5 -5
- data/manual/html/Software.html +7 -7
- data/manual/html/TaskJuggler_2x_Migration.html +2 -2
- data/manual/html/TaskJuggler_Internals.html +6 -6
- data/manual/html/The_TaskJuggler_Syntax.html +6 -6
- data/manual/html/Tutorial.html +17 -14
- data/manual/html/account.html +3 -3
- data/manual/html/account.task.html +2 -2
- data/manual/html/accountprefix.html +2 -2
- data/manual/html/accountreport.html +3 -3
- data/manual/html/accountroot.html +2 -2
- data/manual/html/active.html +3 -3
- data/manual/html/adopt.task.html +2 -2
- data/manual/html/aggregate.html +2 -2
- data/manual/html/alert.html +3 -3
- data/manual/html/alertlevels.html +2 -2
- data/manual/html/allocate.html +3 -3
- data/manual/html/alphabet.html +1 -1
- data/manual/html/alternative.html +2 -2
- data/manual/html/author.html +2 -2
- data/manual/html/auxdir.html +2 -2
- data/manual/html/auxdir.report.html +2 -2
- data/manual/html/balance.html +2 -2
- data/manual/html/booking.resource.html +4 -4
- data/manual/html/booking.task.html +4 -4
- data/manual/html/caption.html +2 -2
- data/manual/html/cellcolor.column.html +3 -3
- data/manual/html/celltext.column.html +3 -3
- data/manual/html/center.html +2 -2
- data/manual/html/charge.html +2 -2
- data/manual/html/chargeset.html +2 -2
- data/manual/html/columnid.html +21 -14
- data/manual/html/columns.html +2 -2
- data/manual/html/complete.html +2 -2
- data/manual/html/copyright.html +2 -2
- data/manual/html/credits.html +2 -2
- data/manual/html/css/tjreport.css +4 -0
- data/manual/html/currency.html +2 -2
- data/manual/html/currencyformat.html +3 -3
- data/manual/html/dailymax.html +2 -2
- data/manual/html/dailymin.html +3 -3
- data/manual/html/dailyworkinghours.html +2 -2
- data/manual/html/date.extend.html +2 -2
- data/manual/html/date.html +5 -5
- data/manual/html/definitions.html +4 -4
- data/manual/html/depends.html +4 -4
- data/manual/html/details.html +2 -2
- data/manual/html/disabled.html +2 -2
- data/manual/html/duration.html +2 -2
- data/manual/html/efficiency.html +3 -3
- data/manual/html/effort.html +2 -2
- data/manual/html/effortdone.html +2 -2
- data/manual/html/effortleft.html +2 -2
- data/manual/html/email.html +2 -2
- data/manual/html/enabled.html +2 -2
- data/manual/html/end.column.html +3 -3
- data/manual/html/end.html +4 -4
- data/manual/html/end.limit.html +2 -2
- data/manual/html/end.report.html +2 -2
- data/manual/html/end.timesheet.html +3 -3
- data/manual/html/endcredit.html +3 -3
- data/manual/html/epilog.html +2 -2
- data/manual/html/export.html +3 -3
- data/manual/html/extend.html +3 -3
- data/manual/html/fail.html +3 -3
- data/manual/html/fdl.html +2 -2
- data/manual/html/flags.account.html +2 -2
- data/manual/html/flags.html +2 -2
- data/manual/html/flags.journalentry.html +2 -2
- data/manual/html/flags.report.html +2 -2
- data/manual/html/flags.resource.html +2 -2
- data/manual/html/flags.statussheet.html +2 -2
- data/manual/html/flags.task.html +2 -2
- data/manual/html/flags.timesheet.html +2 -2
- data/manual/html/fontcolor.column.html +3 -3
- data/manual/html/footer.html +2 -2
- data/manual/html/formats.export.html +3 -3
- data/manual/html/formats.html +3 -3
- data/manual/html/functions.html +5 -5
- data/manual/html/gapduration.html +2 -2
- data/manual/html/gaplength.html +2 -2
- data/manual/html/halign.center.html +2 -2
- data/manual/html/halign.column.html +3 -3
- data/manual/html/halign.left.html +2 -2
- data/manual/html/halign.right.html +2 -2
- data/manual/html/hasalert.html +2 -2
- data/manual/html/header.html +2 -2
- data/manual/html/headline.html +2 -2
- data/manual/html/height.html +3 -3
- data/manual/html/hideaccount.html +3 -3
- data/manual/html/hidejournalentry.html +2 -2
- data/manual/html/hidereport.html +3 -3
- data/manual/html/hideresource.html +3 -3
- data/manual/html/hidetask.html +3 -3
- data/manual/html/icalreport.html +9 -3
- data/manual/html/include.macro.html +3 -3
- data/manual/html/include.project.html +3 -3
- data/manual/html/include.properties.html +3 -3
- data/manual/html/index.html +1 -1
- data/manual/html/inherit.extend.html +3 -3
- data/manual/html/interval1.html +3 -3
- data/manual/html/interval2.html +3 -3
- data/manual/html/interval3.html +2 -2
- data/manual/html/interval4.html +2 -2
- data/manual/html/isactive.html +2 -2
- data/manual/html/ischildof.html +2 -2
- data/manual/html/isdependencyof.html +2 -2
- data/manual/html/isdutyof.html +2 -2
- data/manual/html/isfeatureof.html +2 -2
- data/manual/html/isleaf.html +2 -2
- data/manual/html/ismilestone.html +2 -2
- data/manual/html/isongoing.html +3 -3
- data/manual/html/isresource.html +2 -2
- data/manual/html/isresponsibilityof.html +2 -2
- data/manual/html/istask.html +2 -2
- data/manual/html/isvalid.html +2 -2
- data/manual/html/journalattributes.html +2 -2
- data/manual/html/journalentry.html +3 -3
- data/manual/html/journalmode.html +3 -3
- data/manual/html/leaveallowance.html +3 -3
- data/manual/html/leaves.html +3 -3
- data/manual/html/left.html +2 -2
- data/manual/html/length.html +3 -3
- data/manual/html/limits.allocate.html +2 -2
- data/manual/html/limits.html +2 -2
- data/manual/html/limits.resource.html +2 -2
- data/manual/html/limits.task.html +2 -2
- data/manual/html/listitem.column.html +3 -3
- data/manual/html/listtype.column.html +2 -2
- data/manual/html/loadunit.html +2 -2
- data/manual/html/logicalexpression.html +4 -4
- data/manual/html/logicalflagexpression.html +4 -4
- data/manual/html/macro.html +4 -4
- data/manual/html/managers.html +2 -2
- data/manual/html/mandatory.html +4 -4
- data/manual/html/markdate.html +69 -0
- data/manual/html/maxend.html +4 -4
- data/manual/html/maximum.html +2 -2
- data/manual/html/maxstart.html +2 -2
- data/manual/html/milestone.html +3 -3
- data/manual/html/minend.html +2 -2
- data/manual/html/minimum.html +2 -2
- data/manual/html/minstart.html +2 -2
- data/manual/html/monthlymax.html +2 -2
- data/manual/html/monthlymin.html +3 -3
- data/manual/html/navbar.html +5 -1
- data/manual/html/navigator.html +2 -2
- data/manual/html/newtask.html +3 -3
- data/manual/html/nikureport.html +2 -2
- data/manual/html/note.task.html +4 -4
- data/manual/html/novevents.html +68 -0
- data/manual/html/now.html +4 -4
- data/manual/html/number.extend.html +2 -2
- data/manual/html/numberformat.html +2 -2
- data/manual/html/onend.html +2 -2
- data/manual/html/onstart.html +2 -2
- data/manual/html/opennodes.html +2 -2
- data/manual/html/outputdir.html +3 -3
- data/manual/html/overtime.booking.html +2 -2
- data/manual/html/period.column.html +2 -2
- data/manual/html/period.limit.html +2 -2
- data/manual/html/period.report.html +2 -2
- data/manual/html/period.task.html +2 -2
- data/manual/html/persistent.html +3 -3
- data/manual/html/precedes.html +5 -5
- data/manual/html/priority.html +4 -4
- data/manual/html/priority.timesheet.html +3 -3
- data/manual/html/project.html +4 -4
- data/manual/html/projectid.html +2 -2
- data/manual/html/projectid.task.html +3 -3
- data/manual/html/projectids.html +2 -2
- data/manual/html/projection.html +2 -2
- data/manual/html/prolog.html +2 -2
- data/manual/html/properties.html +3 -3
- data/manual/html/purge.html +2 -2
- data/manual/html/rate.html +2 -2
- data/manual/html/rate.resource.html +2 -2
- data/manual/html/rawhtmlhead.html +3 -3
- data/manual/html/reference.extend.html +2 -2
- data/manual/html/remaining.html +3 -3
- data/manual/html/replace.html +2 -2
- data/manual/html/reportprefix.html +2 -2
- data/manual/html/resource.html +3 -3
- data/manual/html/resourceattributes.html +2 -2
- data/manual/html/resourceprefix.html +2 -2
- data/manual/html/resourcereport.html +4 -4
- data/manual/html/resourceroot.html +3 -3
- data/manual/html/resources.limit.html +2 -2
- data/manual/html/responsible.html +2 -2
- data/manual/html/richtext.extend.html +2 -2
- data/manual/html/right.html +2 -2
- data/manual/html/rollupaccount.html +3 -3
- data/manual/html/rollupresource.html +3 -3
- data/manual/html/rolluptask.html +3 -3
- data/manual/html/scale.column.html +2 -2
- data/manual/html/scenario.html +3 -3
- data/manual/html/scenario.ical.html +3 -3
- data/manual/html/scenarios.export.html +2 -2
- data/manual/html/scenarios.html +2 -2
- data/manual/html/scenariospecific.extend.html +2 -2
- data/manual/html/scheduled.html +2 -2
- data/manual/html/scheduling.html +6 -6
- data/manual/html/schedulingmode.html +2 -2
- data/manual/html/select.html +4 -4
- data/manual/html/selfcontained.html +2 -2
- data/manual/html/shift.allocate.html +2 -2
- data/manual/html/shift.html +3 -3
- data/manual/html/shift.resource.html +4 -4
- data/manual/html/shift.task.html +2 -2
- data/manual/html/shift.timesheet.html +2 -2
- data/manual/html/shifts.allocate.html +2 -2
- data/manual/html/shifts.resource.html +2 -2
- data/manual/html/shifts.task.html +3 -3
- data/manual/html/shorttimeformat.html +3 -3
- data/manual/html/sloppy.booking.html +2 -2
- data/manual/html/sloppy.projection.html +2 -2
- data/manual/html/sortaccounts.html +2 -2
- data/manual/html/sortjournalentries.html +2 -2
- data/manual/html/sortresources.html +2 -2
- data/manual/html/sorttasks.html +2 -2
- data/manual/html/start.column.html +3 -3
- data/manual/html/start.html +4 -4
- data/manual/html/start.limit.html +2 -2
- data/manual/html/start.report.html +2 -2
- data/manual/html/startcredit.html +3 -3
- data/manual/html/status.statussheet.html +2 -2
- data/manual/html/status.timesheet.html +2 -2
- data/manual/html/statussheet.html +2 -2
- data/manual/html/statussheetreport.html +3 -3
- data/manual/html/strict.projection.html +2 -2
- data/manual/html/summary.html +2 -2
- data/manual/html/supplement.html +2 -2
- data/manual/html/supplement.resource.html +2 -2
- data/manual/html/supplement.task.html +2 -2
- data/manual/html/tagfile.html +3 -3
- data/manual/html/task.html +3 -3
- data/manual/html/task.statussheet.html +3 -3
- data/manual/html/task.timesheet.html +2 -2
- data/manual/html/taskattributes.html +2 -2
- data/manual/html/taskprefix.html +2 -2
- data/manual/html/taskreport.html +4 -4
- data/manual/html/taskroot.export.html +2 -2
- data/manual/html/taskroot.html +2 -2
- data/manual/html/text.extend.html +2 -2
- data/manual/html/textreport.html +4 -4
- data/manual/html/timeformat.html +3 -3
- data/manual/html/timeformat1.html +2 -2
- data/manual/html/timeformat2.html +2 -2
- data/manual/html/timeoff.nikureport.html +2 -2
- data/manual/html/timesheet.html +3 -3
- data/manual/html/timesheetreport.html +3 -3
- data/manual/html/timezone.export.html +2 -2
- data/manual/html/timezone.html +2 -2
- data/manual/html/timezone.report.html +2 -2
- data/manual/html/timezone.shift.html +2 -2
- data/manual/html/timingresolution.html +2 -2
- data/manual/html/title.column.html +2 -2
- data/manual/html/title.html +2 -2
- data/manual/html/toc.html +157 -143
- data/manual/html/tooltip.column.html +3 -3
- data/manual/html/tracereport.html +7 -7
- data/manual/html/trackingscenario.html +3 -3
- data/manual/html/treelevel.html +2 -2
- data/manual/html/vacation.html +2 -2
- data/manual/html/vacation.resource.html +2 -2
- data/manual/html/vacation.shift.html +2 -2
- data/manual/html/warn.html +4 -4
- data/manual/html/weeklymax.html +2 -2
- data/manual/html/weeklymin.html +3 -3
- data/manual/html/weekstartsmonday.html +2 -2
- data/manual/html/weekstartssunday.html +2 -2
- data/manual/html/width.column.html +2 -2
- data/manual/html/width.html +3 -3
- data/manual/html/work.html +3 -3
- data/manual/html/workinghours.project.html +3 -3
- data/manual/html/workinghours.resource.html +2 -2
- data/manual/html/workinghours.shift.html +2 -2
- data/manual/html/yearlyworkingdays.html +2 -2
- data/spec/ProjectBroker_spec.rb +6 -6
- data/spec/StatusSheets_spec.rb +1 -1
- data/spec/TimeSheets_spec.rb +1 -1
- data/spec/TraceReport_spec.rb +1 -1
- data/spec/support/DaemonControl.rb +2 -3
- data/taskjuggler.gemspec +7 -10
- data/tasks/changelog.rake +2 -0
- data/tasks/gem.rake +3 -1
- data/tasks/help2man.rake +18 -0
- data/tasks/kate.rake +2 -0
- data/tasks/manual.rake +3 -1
- data/tasks/test.rake +5 -0
- data/tasks/vim.rake +2 -0
- data/test/TestSuite/CSV-Reports/quotes.tjp +20 -0
- data/test/TestSuite/CSV-Reports/refs/quotes.csv +5 -0
- data/test/TestSuite/Export-Reports/refs/AccountReport.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/AdoptedTasks.tjp +0 -2
- data/test/TestSuite/Export-Reports/refs/AlertLevels.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Allocate-1.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/AutoID.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/AutoMacros.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Currencyformat.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/CustomAttributes.tjp +0 -2
- data/test/TestSuite/Export-Reports/refs/Depends1.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Durations.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Efficiency.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Gap.tjp +0 -3
- data/test/TestSuite/Export-Reports/refs/Include.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Journal.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Macro-1.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Macro-2.tjp +0 -2
- data/test/TestSuite/Export-Reports/refs/Macro-3.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Manager.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Milestone.tjp +0 -2
- data/test/TestSuite/Export-Reports/refs/Numberformat.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Precedes1.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Project.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/ProjectIDs.tjp +0 -3
- data/test/TestSuite/Export-Reports/refs/Reports.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Resource.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/ResourceRoot.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/RollupResource.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Scenario.tjp +0 -2
- data/test/TestSuite/Export-Reports/refs/Timezone.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/Vacation.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/navigator.tjp +0 -4
- data/test/TestSuite/Export-Reports/refs/template.tjp +0 -6
- data/test/TestSuite/Export-Reports/refs/textreport.tjp +0 -1
- data/test/TestSuite/Export-Reports/refs/tutorial.tjp +0 -8
- data/test/TestSuite/Syntax/Correct/Booking.tjp +1 -1
- data/test/TestSuite/Syntax/Correct/Currencyformat.tjp +1 -1
- data/test/TestSuite/Syntax/Correct/template.tjp +3 -3
- data/test/TestSuite/Syntax/Correct/tutorial.tjp +8 -3
- data/test/test_BatchProcessor.rb +6 -3
- data/test/test_ProjectFileScanner.rb +8 -8
- metadata +47 -11
data/manual/html/start.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>start</title>
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
<tr align="left">
|
|
40
40
|
<td class="tag">Purpose</td>
|
|
41
41
|
<td class="descr" colspan="2"><div>
|
|
42
|
-
<p>The start attribute provides a guideline to the scheduler when the task should start. It will never start earlier, but it may start later when allocated resources are not available immediately. When a start date is provided for a container task, it will be passed down to ASAP
|
|
43
|
-
<p>Setting a start date will
|
|
42
|
+
<p>The start attribute provides a guideline to the scheduler when the task should start. It will never start earlier, but it may start later when allocated resources are not available immediately. When a start date is provided for a container task, it will be passed down to ASAP tasks that don't have a well defined start criteria.</p>
|
|
43
|
+
<p>Setting a start date will implicitly set the scheduling policy for this task to ASAP.</p>
|
|
44
44
|
</div></td>
|
|
45
45
|
</tr>
|
|
46
46
|
<tr align="left">
|
|
@@ -75,6 +75,6 @@
|
|
|
75
75
|
</tr></table>
|
|
76
76
|
<hr/>
|
|
77
77
|
<br/>
|
|
78
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
78
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
79
79
|
</body>
|
|
80
80
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>start.limit</title>
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
</tr></table>
|
|
67
67
|
<hr/>
|
|
68
68
|
<br/>
|
|
69
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
69
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
70
70
|
</body>
|
|
71
71
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>start.report</title>
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
</tr></table>
|
|
67
67
|
<hr/>
|
|
68
68
|
<br/>
|
|
69
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
69
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
70
70
|
</body>
|
|
71
71
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>startcredit</title>
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
</colgroup>
|
|
41
41
|
<tr align="left">
|
|
42
42
|
<td class="tag">Purpose</td>
|
|
43
|
-
<td class="descr" colspan="2"><div>Specifies an amount that is credited to the account specified by the <a href="chargeset.html">chargeset</a> attributes at the moment the
|
|
43
|
+
<td class="descr" colspan="2"><div>Specifies an amount that is credited to the account specified by the <a href="chargeset.html">chargeset</a> attributes at the moment the task starts.</div></td>
|
|
44
44
|
</tr>
|
|
45
45
|
<tr align="left">
|
|
46
46
|
<td class="tag">Syntax</td>
|
|
@@ -71,6 +71,6 @@
|
|
|
71
71
|
</tr></table>
|
|
72
72
|
<hr/>
|
|
73
73
|
<br/>
|
|
74
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
74
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
75
75
|
</body>
|
|
76
76
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>status.statussheet</title>
|
|
@@ -70,6 +70,6 @@
|
|
|
70
70
|
</tr></table>
|
|
71
71
|
<hr/>
|
|
72
72
|
<br/>
|
|
73
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
73
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
74
74
|
</body>
|
|
75
75
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>status.timesheet</title>
|
|
@@ -88,6 +88,6 @@
|
|
|
88
88
|
</tr></table>
|
|
89
89
|
<hr/>
|
|
90
90
|
<br/>
|
|
91
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
91
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
92
92
|
</body>
|
|
93
93
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>statussheet</title>
|
|
@@ -121,6 +121,6 @@ statussheet r3 2009-12-04 {
|
|
|
121
121
|
</tr></table>
|
|
122
122
|
<hr/>
|
|
123
123
|
<br/>
|
|
124
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
124
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
125
125
|
</body>
|
|
126
126
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>statussheetreport</title>
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
<tr align="left">
|
|
48
48
|
<td class="tag" rowspan="2">Arguments</td>
|
|
49
49
|
<td class="descr">id [<a href="The_TaskJuggler_Syntax.html#ID">ID</a>]</td>
|
|
50
|
-
<td class="descr"><div>An optional ID. If you ever want to reference this property, you must specify your own unique ID. If no ID is specified one will be automatically generated. These IDs may become visible in reports, but may change at any time. You may never rely on automatically generated IDs.</div></td>
|
|
50
|
+
<td class="descr"><div>An optional ID. If you ever want to reference this property, you must specify your own unique ID. If no ID is specified, one will be automatically generated. These IDs may become visible in reports, but may change at any time. You may never rely on automatically generated IDs.</div></td>
|
|
51
51
|
</tr>
|
|
52
52
|
<tr align="left">
|
|
53
53
|
<td class="descr">file name [<a href="The_TaskJuggler_Syntax.html#STRING">STRING</a>]</td>
|
|
@@ -126,6 +126,6 @@
|
|
|
126
126
|
</tr></table>
|
|
127
127
|
<hr/>
|
|
128
128
|
<br/>
|
|
129
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
129
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
130
130
|
</body>
|
|
131
131
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>strict.projection</title>
|
|
@@ -69,6 +69,6 @@
|
|
|
69
69
|
</tr></table>
|
|
70
70
|
<hr/>
|
|
71
71
|
<br/>
|
|
72
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
72
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
73
73
|
</body>
|
|
74
74
|
</html>
|
data/manual/html/summary.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>summary</title>
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
</tr></table>
|
|
67
67
|
<hr/>
|
|
68
68
|
<br/>
|
|
69
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
69
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
70
70
|
</body>
|
|
71
71
|
</html>
|
data/manual/html/supplement.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>supplement</title>
|
|
@@ -105,6 +105,6 @@ supplement task top {
|
|
|
105
105
|
</tr></table>
|
|
106
106
|
<hr/>
|
|
107
107
|
<br/>
|
|
108
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
108
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
109
109
|
</body>
|
|
110
110
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>supplement.resource</title>
|
|
@@ -204,6 +204,6 @@ supplement resource joe {
|
|
|
204
204
|
</tr></table>
|
|
205
205
|
<hr/>
|
|
206
206
|
<br/>
|
|
207
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
207
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
208
208
|
</body>
|
|
209
209
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>supplement.task</title>
|
|
@@ -320,6 +320,6 @@ supplement task top {
|
|
|
320
320
|
</tr></table>
|
|
321
321
|
<hr/>
|
|
322
322
|
<br/>
|
|
323
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
323
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
324
324
|
</body>
|
|
325
325
|
</html>
|
data/manual/html/tagfile.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>tagfile</title>
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
<tr align="left">
|
|
48
48
|
<td class="tag" rowspan="2">Arguments</td>
|
|
49
49
|
<td class="descr">id [<a href="The_TaskJuggler_Syntax.html#ID">ID</a>]</td>
|
|
50
|
-
<td class="descr"><div>An optional ID. If you ever want to reference this property, you must specify your own unique ID. If no ID is specified one will be automatically generated. These IDs may become visible in reports, but may change at any time. You may never rely on automatically generated IDs.</div></td>
|
|
50
|
+
<td class="descr"><div>An optional ID. If you ever want to reference this property, you must specify your own unique ID. If no ID is specified, one will be automatically generated. These IDs may become visible in reports, but may change at any time. You may never rely on automatically generated IDs.</div></td>
|
|
51
51
|
</tr>
|
|
52
52
|
<tr align="left">
|
|
53
53
|
<td class="descr">file name [<a href="The_TaskJuggler_Syntax.html#STRING">STRING</a>]</td>
|
|
@@ -74,6 +74,6 @@
|
|
|
74
74
|
</tr></table>
|
|
75
75
|
<hr/>
|
|
76
76
|
<br/>
|
|
77
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
77
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
78
78
|
</body>
|
|
79
79
|
</html>
|
data/manual/html/task.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>task</title>
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<tr align="left">
|
|
51
51
|
<td class="tag" rowspan="2">Arguments</td>
|
|
52
52
|
<td class="descr">id [<a href="The_TaskJuggler_Syntax.html#ID">ID</a>]</td>
|
|
53
|
-
<td class="descr"><div>An optional ID. If you ever want to reference this property, you must specify your own unique ID. If no ID is specified one will be automatically generated. These IDs may become visible in reports, but may change at any time. You may never rely on automatically generated IDs.</div></td>
|
|
53
|
+
<td class="descr"><div>An optional ID. If you ever want to reference this property, you must specify your own unique ID. If no ID is specified, one will be automatically generated. These IDs may become visible in reports, but may change at any time. You may never rely on automatically generated IDs.</div></td>
|
|
54
54
|
</tr>
|
|
55
55
|
<tr align="left">
|
|
56
56
|
<td class="descr">name [<a href="The_TaskJuggler_Syntax.html#STRING">STRING</a>]</td>
|
|
@@ -311,6 +311,6 @@
|
|
|
311
311
|
</tr></table>
|
|
312
312
|
<hr/>
|
|
313
313
|
<br/>
|
|
314
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
314
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
315
315
|
</body>
|
|
316
316
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>task.statussheet</title>
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
</colgroup>
|
|
39
39
|
<tr align="left">
|
|
40
40
|
<td class="tag">Purpose</td>
|
|
41
|
-
<td class="descr" colspan="2"><div>Opens the task with the specified ID to add a status report. Child
|
|
41
|
+
<td class="descr" colspan="2"><div>Opens the task with the specified ID to add a status report. Child tasks can be opened inside this context by specifying their relative ID to this parent.</div></td>
|
|
42
42
|
</tr>
|
|
43
43
|
<tr align="left">
|
|
44
44
|
<td class="tag">Syntax</td>
|
|
@@ -71,6 +71,6 @@
|
|
|
71
71
|
</tr></table>
|
|
72
72
|
<hr/>
|
|
73
73
|
<br/>
|
|
74
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
74
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
75
75
|
</body>
|
|
76
76
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>task.timesheet</title>
|
|
@@ -86,6 +86,6 @@
|
|
|
86
86
|
</tr></table>
|
|
87
87
|
<hr/>
|
|
88
88
|
<br/>
|
|
89
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
89
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
90
90
|
</body>
|
|
91
91
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>taskattributes</title>
|
|
@@ -112,6 +112,6 @@
|
|
|
112
112
|
</tr></table>
|
|
113
113
|
<hr/>
|
|
114
114
|
<br/>
|
|
115
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
115
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
116
116
|
</body>
|
|
117
117
|
</html>
|
data/manual/html/taskprefix.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>taskprefix</title>
|
|
@@ -64,6 +64,6 @@
|
|
|
64
64
|
</tr></table>
|
|
65
65
|
<hr/>
|
|
66
66
|
<br/>
|
|
67
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
67
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
68
68
|
</body>
|
|
69
69
|
</html>
|
data/manual/html/taskreport.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>taskreport</title>
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
<tr align="left">
|
|
40
40
|
<td class="tag">Purpose</td>
|
|
41
41
|
<td class="descr" colspan="2"><div>
|
|
42
|
-
<p>The report lists tasks and their respective values in a table. To reduce the list of included tasks, you can use the <a href="hidetask.html">hidetask</a>, <a href="rolluptask.html">rolluptask</a> or <a href="taskroot.html">taskroot</a> attributes. The order of the
|
|
42
|
+
<p>The report lists tasks and their respective values in a table. To reduce the list of included tasks, you can use the <a href="hidetask.html">hidetask</a>, <a href="rolluptask.html">rolluptask</a> or <a href="taskroot.html">taskroot</a> attributes. The order of the tasks can be controlled with <a href="sorttasks.html">sorttasks</a>. If the first sorting criteria is tree sorting, the parent tasks will always be included to form the tree. Tree sorting is the default. You need to change it if you do not want certain parent tasks to be included in the report.</p>
|
|
43
43
|
<p>By default, all the resources that are allocated to each task are hidden, but they can be listed as well. Use the <a href="hideresource.html">hideresource</a> attribute to select which resources should be included.</p>
|
|
44
44
|
</div></td>
|
|
45
45
|
</tr>
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<tr align="left">
|
|
51
51
|
<td class="tag" rowspan="2">Arguments</td>
|
|
52
52
|
<td class="descr">id [<a href="The_TaskJuggler_Syntax.html#ID">ID</a>]</td>
|
|
53
|
-
<td class="descr"><div>An optional ID. If you ever want to reference this property, you must specify your own unique ID. If no ID is specified one will be automatically generated. These IDs may become visible in reports, but may change at any time. You may never rely on automatically generated IDs.</div></td>
|
|
53
|
+
<td class="descr"><div>An optional ID. If you ever want to reference this property, you must specify your own unique ID. If no ID is specified, one will be automatically generated. These IDs may become visible in reports, but may change at any time. You may never rely on automatically generated IDs.</div></td>
|
|
54
54
|
</tr>
|
|
55
55
|
<tr align="left">
|
|
56
56
|
<td class="descr">name [<a href="The_TaskJuggler_Syntax.html#STRING">STRING</a>]</td>
|
|
@@ -441,6 +441,6 @@ taskreport breakdown "ProjectBreakdown.html" {
|
|
|
441
441
|
</tr></table>
|
|
442
442
|
<hr/>
|
|
443
443
|
<br/>
|
|
444
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
444
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
445
445
|
</body>
|
|
446
446
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>taskroot.export</title>
|
|
@@ -101,6 +101,6 @@ taskreport tasks "My Tasks" {
|
|
|
101
101
|
</tr></table>
|
|
102
102
|
<hr/>
|
|
103
103
|
<br/>
|
|
104
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
104
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
105
105
|
</body>
|
|
106
106
|
</html>
|
data/manual/html/taskroot.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>taskroot</title>
|
|
@@ -102,6 +102,6 @@ taskreport tasks "My Tasks" {
|
|
|
102
102
|
</tr></table>
|
|
103
103
|
<hr/>
|
|
104
104
|
<br/>
|
|
105
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
105
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
106
106
|
</body>
|
|
107
107
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>text.extend</title>
|
|
@@ -74,6 +74,6 @@
|
|
|
74
74
|
</tr></table>
|
|
75
75
|
<hr/>
|
|
76
76
|
<br/>
|
|
77
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
77
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
78
78
|
</body>
|
|
79
79
|
</html>
|
data/manual/html/textreport.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>textreport</title>
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
</colgroup>
|
|
39
39
|
<tr align="left">
|
|
40
40
|
<td class="tag">Purpose</td>
|
|
41
|
-
<td class="descr" colspan="2"><div>This report consists of 5
|
|
41
|
+
<td class="descr" colspan="2"><div>This report consists of 5 <a href="Rich_Text_Attributes.html">Rich Text</a> sections, a header, a center section with a left and right margin and a footer. The sections may contain the output of other defined reports.</div></td>
|
|
42
42
|
</tr>
|
|
43
43
|
<tr align="left">
|
|
44
44
|
<td class="tag">Syntax</td>
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
<tr align="left">
|
|
48
48
|
<td class="tag" rowspan="2">Arguments</td>
|
|
49
49
|
<td class="descr">id [<a href="The_TaskJuggler_Syntax.html#ID">ID</a>]</td>
|
|
50
|
-
<td class="descr"><div>An optional ID. If you ever want to reference this property, you must specify your own unique ID. If no ID is specified one will be automatically generated. These IDs may become visible in reports, but may change at any time. You may never rely on automatically generated IDs.</div></td>
|
|
50
|
+
<td class="descr"><div>An optional ID. If you ever want to reference this property, you must specify your own unique ID. If no ID is specified, one will be automatically generated. These IDs may become visible in reports, but may change at any time. You may never rely on automatically generated IDs.</div></td>
|
|
51
51
|
</tr>
|
|
52
52
|
<tr align="left">
|
|
53
53
|
<td class="descr">name [<a href="The_TaskJuggler_Syntax.html#STRING">STRING</a>]</td>
|
|
@@ -424,6 +424,6 @@ textreport frame "textreport" {
|
|
|
424
424
|
</tr></table>
|
|
425
425
|
<hr/>
|
|
426
426
|
<br/>
|
|
427
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
427
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
428
428
|
</body>
|
|
429
429
|
</html>
|
data/manual/html/timeformat.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>timeformat</title>
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
<td class="tag" rowspan="1">Arguments</td>
|
|
49
49
|
<td class="descr">format [<a href="The_TaskJuggler_Syntax.html#STRING">STRING</a>]</td>
|
|
50
50
|
<td class="descr"><div>
|
|
51
|
-
<p>Ordinary characters placed in the format string are copied without conversion. Conversion specifiers are introduced by a `%' character, and are replaced
|
|
51
|
+
<p>Ordinary characters placed in the format string are copied without conversion. Conversion specifiers are introduced by a `%' character, and are replaced as follows:</p>
|
|
52
52
|
<ul><li>
|
|
53
53
|
<code>%a</code> The abbreviated weekday name according to the current locale.</li></ul>
|
|
54
54
|
<ul><li>
|
|
@@ -157,6 +157,6 @@
|
|
|
157
157
|
</tr></table>
|
|
158
158
|
<hr/>
|
|
159
159
|
<br/>
|
|
160
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
160
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
161
161
|
</body>
|
|
162
162
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>timeformat1</title>
|
|
@@ -64,6 +64,6 @@
|
|
|
64
64
|
</tr></table>
|
|
65
65
|
<hr/>
|
|
66
66
|
<br/>
|
|
67
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
67
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
68
68
|
</body>
|
|
69
69
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>timeformat2</title>
|
|
@@ -64,6 +64,6 @@
|
|
|
64
64
|
</tr></table>
|
|
65
65
|
<hr/>
|
|
66
66
|
<br/>
|
|
67
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
67
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
68
68
|
</body>
|
|
69
69
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>timeoff.nikureport</title>
|
|
@@ -68,6 +68,6 @@
|
|
|
68
68
|
</tr></table>
|
|
69
69
|
<hr/>
|
|
70
70
|
<br/>
|
|
71
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
71
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
72
72
|
</body>
|
|
73
73
|
</html>
|
data/manual/html/timesheet.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<!-- This file has been generated by tj3man v3.
|
|
2
|
+
<!-- This file has been generated by tj3man v3.7.2 -->
|
|
3
3
|
<html lang="en" xml:lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<title>timesheet</title>
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
<td class="tag">Purpose</td>
|
|
41
41
|
<td class="descr" colspan="2"><div>
|
|
42
42
|
<p>A time sheet record can be used to capture the current status of the tasks assigned to a specific resource and the achieved progress for a given period of time. The status is assumed to be for the end of this time period. There must be a separate time sheet record for each resource per period. Different resources can use different reporting periods and reports for the same resource may have different reporting periods as long as they don't overlap. For the time after the last time sheet, TaskJuggler will project the result based on the plan data. For periods without a time sheet record prior to the last record for this resource, TaskJuggler assumes that no work has been done. The work is booked for the scenario specified by <a href="trackingscenario.html">trackingscenario</a>.</p>
|
|
43
|
-
<p>The intended use for time sheets is to have all resources report a time sheet every day, week or month. All time sheets can be added to the project plan. The status information is always used to
|
|
43
|
+
<p>The intended use for time sheets is to have all resources report a time sheet every day, week or month. All time sheets can be added to the project plan. The status information is always used to determine the current status of the project. The <a href="work.html">work</a>, <a href="remaining.html">remaining</a> and <a href="end.timesheet.html">end</a> attributes are ignored if there are also <a href="booking.task.html">bookings</a> for the resource in the time sheet period. The non-ignored attributes of the time sheets will be converted into <a href="booking.task.html">booking</a> statements internally. These bookings can then be <a href="export.html">exported</a> into a file which can then be added to the project again. This way, you can use time sheets to incrementally record progress of your project. There is a possibility that time sheets conflict with other data in the plan. In case TaskJuggler cannot automatically resolve them, these conflicts have to be manually resolved by either changing the plan or the time sheet.</p>
|
|
44
44
|
<p>The status messages are interpreted as <a href="journalentry.html">journal entries</a>. The alert level will be evaluated and the current state of the project can be put into a dashboard using the <code>alert</code> and <code>alertmessage</code> <a href="columnid.html">
|
|
45
45
|
columns</a>.</p>
|
|
46
46
|
<p>Currently, the provided effort values and dates are not yet used to automatically update the plan data. This feature will be added in future versions.</p>
|
|
@@ -126,6 +126,6 @@ timesheet r2 2009-11-30 +1w {
|
|
|
126
126
|
</tr></table>
|
|
127
127
|
<hr/>
|
|
128
128
|
<br/>
|
|
129
|
-
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
129
|
+
<div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggler.org>.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
|
|
130
130
|
</body>
|
|
131
131
|
</html>
|