taskjuggler 3.1.0 → 3.2.0
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.
- data/CHANGELOG +44 -0
- data/bin/tj3webd +4 -0
- data/data/css/tjreport.css +14 -5
- data/data/tjp.vim +22 -7
- data/examples/Fedora-20/reports.tji +2 -4
- data/examples/Scrum/Product Burndown.csv +26 -0
- data/examples/Scrum/Sprint 1 Burndown.csv +26 -0
- data/examples/Scrum/Sprint 2 Burndown.csv +26 -0
- data/examples/Scrum/Sprint 3 Burndown.csv +26 -0
- data/examples/Scrum/scrum.tjp +141 -0
- data/examples/Tutorial/tutorial.tjp +13 -7
- data/lib/taskjuggler/Attributes.rb +2 -3
- data/lib/taskjuggler/HTMLDocument.rb +25 -18
- data/lib/taskjuggler/Journal.rb +85 -65
- data/lib/taskjuggler/KeywordDocumentation.rb +25 -13
- data/lib/taskjuggler/LeaveList.rb +1 -1
- data/lib/taskjuggler/Limits.rb +3 -5
- data/lib/taskjuggler/MessageHandler.rb +173 -19
- data/lib/taskjuggler/Painter.rb +75 -0
- data/lib/taskjuggler/Painter/BasicShapes.rb +76 -0
- data/lib/taskjuggler/Painter/Color.rb +273 -0
- data/lib/taskjuggler/Painter/Element.rb +56 -0
- data/lib/taskjuggler/Painter/FontData.rb +221 -0
- data/lib/taskjuggler/Painter/FontMetrics.rb +125 -0
- data/lib/taskjuggler/Painter/FontMetricsData.rb +151 -0
- data/lib/taskjuggler/Painter/Group.rb +77 -0
- data/lib/taskjuggler/Painter/Points.rb +47 -0
- data/lib/taskjuggler/Painter/Primitives.rb +100 -0
- data/lib/taskjuggler/Painter/SVGSupport.rb +36 -0
- data/lib/taskjuggler/Painter/Text.rb +36 -0
- data/lib/taskjuggler/Project.rb +46 -29
- data/lib/taskjuggler/ProjectFileParser.rb +24 -22
- data/lib/taskjuggler/ProjectFileScanner.rb +2 -2
- data/lib/taskjuggler/PropertyTreeNode.rb +26 -34
- data/lib/taskjuggler/Query.rb +8 -5
- data/lib/taskjuggler/RealFormat.rb +3 -0
- data/lib/taskjuggler/Resource.rb +3 -5
- data/lib/taskjuggler/ResourceScenario.rb +19 -7
- data/lib/taskjuggler/RichText.rb +4 -6
- data/lib/taskjuggler/RichText/FunctionExample.rb +1 -1
- data/lib/taskjuggler/RichText/FunctionHandler.rb +5 -6
- data/lib/taskjuggler/RichText/Parser.rb +4 -6
- data/lib/taskjuggler/RichText/RTFNavigator.rb +1 -1
- data/lib/taskjuggler/RichText/RTFQuery.rb +2 -3
- data/lib/taskjuggler/RichText/RTFReport.rb +1 -1
- data/lib/taskjuggler/RichText/RTFReportLink.rb +1 -2
- data/lib/taskjuggler/RichText/RTFWithQuerySupport.rb +1 -1
- data/lib/taskjuggler/RichText/Scanner.rb +6 -6
- data/lib/taskjuggler/RichText/Snip.rb +1 -2
- data/lib/taskjuggler/RuntimeConfig.rb +9 -6
- data/lib/taskjuggler/ScenarioData.rb +4 -3
- data/lib/taskjuggler/Scoreboard.rb +6 -0
- data/lib/taskjuggler/SheetHandlerBase.rb +25 -8
- data/lib/taskjuggler/SimpleQueryExpander.rb +14 -5
- data/lib/taskjuggler/SyntaxReference.rb +1 -2
- data/lib/taskjuggler/TableColumnSorter.rb +84 -0
- data/lib/taskjuggler/Task.rb +3 -5
- data/lib/taskjuggler/TaskJuggler.rb +36 -29
- data/lib/taskjuggler/TaskScenario.rb +154 -66
- data/lib/taskjuggler/TextParser.rb +24 -17
- data/lib/taskjuggler/TextParser/Scanner.rb +16 -11
- data/lib/taskjuggler/TextParser/SourceFileInfo.rb +20 -15
- data/lib/taskjuggler/TimeSheets.rb +6 -12
- data/lib/taskjuggler/Tj3AppBase.rb +35 -16
- data/lib/taskjuggler/Tj3Config.rb +1 -1
- data/lib/taskjuggler/TjpSyntaxRules.rb +239 -49
- data/lib/taskjuggler/XMLElement.rb +9 -2
- data/lib/taskjuggler/apps/Tj3.rb +43 -37
- data/lib/taskjuggler/apps/Tj3Client.rb +62 -112
- data/lib/taskjuggler/apps/Tj3Daemon.rb +66 -29
- data/lib/taskjuggler/apps/Tj3Man.rb +5 -5
- data/lib/taskjuggler/apps/Tj3SsReceiver.rb +10 -13
- data/lib/taskjuggler/apps/Tj3SsSender.rb +13 -16
- data/lib/taskjuggler/apps/Tj3TsReceiver.rb +10 -13
- data/lib/taskjuggler/apps/Tj3TsSender.rb +12 -15
- data/lib/taskjuggler/apps/Tj3TsSummary.rb +12 -15
- data/lib/taskjuggler/apps/Tj3WebD.rb +99 -0
- data/lib/taskjuggler/daemon/Daemon.rb +50 -10
- data/lib/taskjuggler/daemon/DaemonConnector.rb +127 -0
- data/lib/taskjuggler/daemon/ProcessIntercom.rb +36 -21
- data/lib/taskjuggler/daemon/ProjectBroker.rb +122 -112
- data/lib/taskjuggler/daemon/ProjectServer.rb +78 -46
- data/lib/taskjuggler/daemon/ReportServer.rb +52 -28
- data/lib/taskjuggler/daemon/ReportServlet.rb +92 -21
- data/lib/taskjuggler/daemon/WebServer.rb +75 -22
- data/lib/taskjuggler/daemon/WelcomePage.rb +1 -0
- data/lib/taskjuggler/reports/AccountListRE.rb +3 -3
- data/lib/taskjuggler/reports/CSVFile.rb +9 -2
- data/lib/taskjuggler/reports/ChartPlotter.rb +453 -0
- data/lib/taskjuggler/reports/Navigator.rb +1 -0
- data/lib/taskjuggler/reports/NikuReport.rb +4 -4
- data/lib/taskjuggler/reports/Report.rb +6 -18
- data/lib/taskjuggler/reports/ReportBase.rb +9 -9
- data/lib/taskjuggler/reports/ReportContext.rb +2 -2
- data/lib/taskjuggler/reports/StatusSheetReport.rb +6 -6
- data/lib/taskjuggler/reports/TableReport.rb +24 -15
- data/lib/taskjuggler/reports/TimeSheetReport.rb +5 -5
- data/lib/taskjuggler/reports/TraceReport.rb +251 -0
- data/lib/tj3webd.rb +17 -0
- data/manual/Day_To_Day_Juggling +10 -3
- data/manual/Installation +38 -19
- data/manual/Software +25 -19
- data/manual/Tutorial +119 -110
- data/manual/html/Day_To_Day_Juggling.html +7 -5
- data/manual/html/Getting_Started.html +4 -4
- data/manual/html/How_To_Contribute.html +4 -4
- data/manual/html/Installation.html +19 -11
- data/manual/html/Intro.html +4 -4
- data/manual/html/Reporting_Bugs.html +4 -4
- data/manual/html/Rich_Text_Attributes.html +4 -4
- data/manual/html/Software.html +15 -11
- data/manual/html/TaskJuggler_2x_Migration.html +4 -4
- data/manual/html/TaskJuggler_Internals.html +4 -4
- data/manual/html/The_TaskJuggler_Syntax.html +4 -4
- data/manual/html/Tutorial.html +41 -32
- data/manual/html/account.html +4 -4
- data/manual/html/account.task.html +4 -4
- data/manual/html/accountprefix.html +4 -4
- data/manual/html/accountreport.html +27 -9
- data/manual/html/accountroot.html +5 -5
- data/manual/html/active.html +4 -4
- data/manual/html/adopt.task.html +4 -4
- data/manual/html/aggregate.html +4 -4
- data/manual/html/alert.html +4 -4
- data/manual/html/alertlevels.html +4 -4
- data/manual/html/allocate.html +5 -5
- data/manual/html/alphabet.html +4 -4
- data/manual/html/alternative.html +4 -4
- data/manual/html/author.html +4 -4
- data/manual/html/balance.html +5 -5
- data/manual/html/booking.resource.html +4 -4
- data/manual/html/booking.task.html +4 -4
- data/manual/html/caption.html +5 -5
- data/manual/html/cellcolor.column.html +43 -8
- data/manual/html/celltext.column.html +4 -4
- data/manual/html/center.html +5 -5
- data/manual/html/charge.html +4 -4
- data/manual/html/chargeset.html +4 -4
- data/manual/html/columnid.html +27 -15
- data/manual/html/columns.html +5 -5
- data/manual/html/complete.html +4 -4
- data/manual/html/copyright.html +4 -4
- data/manual/html/credits.html +4 -4
- data/manual/html/css/tjreport.css +14 -5
- data/manual/html/currency.html +4 -4
- data/manual/html/currencyformat.html +5 -5
- data/manual/html/dailymax.html +5 -5
- data/manual/html/dailymin.html +5 -5
- data/manual/html/dailyworkinghours.html +4 -4
- data/manual/html/date.extend.html +4 -4
- 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 +4 -4
- data/manual/html/disabled.html +4 -4
- data/manual/html/duration.html +4 -4
- data/manual/html/efficiency.html +4 -4
- data/manual/html/effort.html +4 -4
- data/manual/html/email.html +4 -4
- data/manual/html/enabled.html +4 -4
- data/manual/html/end.column.html +4 -4
- data/manual/html/end.html +4 -4
- data/manual/html/end.limit.html +4 -4
- data/manual/html/end.report.html +5 -5
- data/manual/html/end.timesheet.html +4 -4
- data/manual/html/endcredit.html +4 -4
- data/manual/html/epilog.html +5 -5
- data/manual/html/export.html +4 -4
- data/manual/html/extend.html +4 -4
- data/manual/html/fail.html +43 -8
- data/manual/html/fdl.html +4 -4
- data/manual/html/flags.account.html +4 -4
- data/manual/html/flags.html +4 -4
- data/manual/html/flags.journalentry.html +4 -4
- data/manual/html/flags.report.html +5 -5
- data/manual/html/flags.resource.html +4 -4
- data/manual/html/flags.statussheet.html +4 -4
- data/manual/html/flags.task.html +4 -4
- data/manual/html/flags.timesheet.html +4 -4
- data/manual/html/fontcolor.column.html +43 -8
- data/manual/html/footer.html +5 -5
- data/manual/html/formats.html +5 -5
- data/manual/html/functions.html +4 -4
- data/manual/html/gapduration.html +4 -4
- data/manual/html/gaplength.html +4 -4
- data/manual/html/halign.center.html +4 -4
- data/manual/html/halign.column.html +43 -8
- data/manual/html/halign.left.html +4 -4
- data/manual/html/halign.right.html +4 -4
- data/manual/html/hasalert.html +4 -4
- data/manual/html/header.html +5 -5
- data/manual/html/headline.html +7 -7
- data/manual/html/height.html +72 -0
- data/manual/html/hideaccount.html +46 -11
- data/manual/html/hidejournalentry.html +5 -5
- data/manual/html/hidereport.html +43 -8
- data/manual/html/hideresource.html +44 -9
- data/manual/html/hidetask.html +44 -9
- data/manual/html/icalreport.html +4 -4
- data/manual/html/include.macro.html +4 -4
- data/manual/html/include.project.html +4 -4
- data/manual/html/include.properties.html +4 -4
- data/manual/html/index.html +2 -1
- data/manual/html/inherit.extend.html +4 -4
- data/manual/html/interval1.html +4 -4
- data/manual/html/interval2.html +4 -4
- data/manual/html/interval3.html +4 -4
- data/manual/html/interval4.html +4 -4
- data/manual/html/isactive.html +4 -4
- data/manual/html/ischildof.html +4 -4
- data/manual/html/isdependencyof.html +4 -4
- data/manual/html/isdutyof.html +4 -4
- data/manual/html/isfeatureof.html +4 -4
- data/manual/html/isleaf.html +4 -4
- data/manual/html/ismilestone.html +4 -4
- data/manual/html/isongoing.html +4 -4
- data/manual/html/isresource.html +4 -4
- data/manual/html/isresponsibilityof.html +4 -4
- data/manual/html/istask.html +4 -4
- data/manual/html/journalattributes.html +11 -7
- data/manual/html/journalentry.html +4 -4
- data/manual/html/journalmode.html +5 -5
- data/manual/html/leaveallowance.html +5 -5
- data/manual/html/leaves.html +5 -6
- data/manual/html/left.html +5 -5
- data/manual/html/length.html +4 -4
- data/manual/html/limits.allocate.html +4 -4
- data/manual/html/limits.html +4 -4
- data/manual/html/limits.resource.html +4 -4
- data/manual/html/limits.task.html +4 -4
- data/manual/html/listitem.column.html +4 -4
- data/manual/html/listtype.column.html +4 -4
- data/manual/html/loadunit.html +5 -5
- data/manual/html/logicalexpression.html +8 -44
- data/manual/html/logicalflagexpression.html +4 -4
- data/manual/html/macro.html +4 -4
- data/manual/html/managers.html +4 -4
- data/manual/html/mandatory.html +4 -4
- data/manual/html/maxend.html +4 -4
- data/manual/html/maximum.html +5 -5
- data/manual/html/maxstart.html +4 -4
- data/manual/html/milestone.html +4 -4
- data/manual/html/minend.html +4 -4
- data/manual/html/minimum.html +5 -5
- data/manual/html/minstart.html +4 -4
- data/manual/html/monthlymax.html +5 -5
- data/manual/html/monthlymin.html +5 -5
- data/manual/html/navbar.html +10 -4
- data/manual/html/navigator.html +4 -4
- data/manual/html/newtask.html +4 -4
- data/manual/html/nikureport.html +4 -4
- data/manual/html/note.task.html +4 -4
- data/manual/html/now.html +4 -4
- data/manual/html/numberformat.html +5 -5
- data/manual/html/onend.html +4 -4
- data/manual/html/onstart.html +4 -4
- data/manual/html/opennodes.html +5 -5
- data/manual/html/overtime.booking.html +4 -4
- data/manual/html/period.column.html +4 -4
- data/manual/html/period.limit.html +4 -4
- data/manual/html/period.report.html +5 -5
- data/manual/html/period.task.html +4 -4
- data/manual/html/persistent.html +4 -4
- data/manual/html/precedes.html +4 -4
- data/manual/html/priority.html +4 -4
- data/manual/html/priority.timesheet.html +4 -4
- data/manual/html/project.html +4 -4
- data/manual/html/projectid.html +4 -4
- data/manual/html/projectid.task.html +4 -4
- data/manual/html/projectids.html +4 -4
- data/manual/html/projection.html +5 -7
- data/manual/html/prolog.html +5 -5
- data/manual/html/properties.html +11 -5
- data/manual/html/purge.html +5 -5
- data/manual/html/rate.html +4 -4
- data/manual/html/rate.resource.html +4 -4
- data/manual/html/reference.extend.html +4 -4
- data/manual/html/remaining.html +4 -4
- data/manual/html/replace.html +4 -4
- data/manual/html/reportprefix.html +4 -4
- data/manual/html/resource.html +4 -10
- data/manual/html/resourceattributes.html +4 -4
- data/manual/html/resourceprefix.html +4 -4
- data/manual/html/resourcereport.html +28 -10
- data/manual/html/resourceroot.html +5 -5
- data/manual/html/resources.limit.html +4 -4
- data/manual/html/responsible.html +4 -4
- data/manual/html/richtext.extend.html +4 -4
- data/manual/html/right.html +5 -5
- data/manual/html/rollupaccount.html +44 -9
- data/manual/html/rollupresource.html +44 -9
- data/manual/html/rolluptask.html +44 -9
- data/manual/html/scale.column.html +4 -4
- data/manual/html/scenario.html +4 -22
- data/manual/html/scenario.ical.html +4 -4
- data/manual/html/scenarios.export.html +4 -4
- data/manual/html/scenarios.html +5 -5
- data/manual/html/scenariospecific.extend.html +4 -4
- data/manual/html/scheduled.html +4 -4
- data/manual/html/scheduling.html +4 -4
- data/manual/html/select.html +4 -4
- data/manual/html/selfcontained.html +5 -5
- data/manual/html/shift.allocate.html +4 -4
- data/manual/html/shift.html +4 -4
- data/manual/html/shift.resource.html +5 -5
- data/manual/html/shift.task.html +4 -4
- data/manual/html/shift.timesheet.html +4 -4
- data/manual/html/shifts.allocate.html +4 -4
- data/manual/html/shifts.resource.html +4 -4
- data/manual/html/shifts.task.html +4 -4
- data/manual/html/shorttimeformat.html +4 -4
- data/manual/html/sloppy.booking.html +4 -4
- data/manual/html/sloppy.projection.html +5 -5
- data/manual/html/sortaccounts.html +5 -5
- data/manual/html/sortjournalentries.html +5 -5
- data/manual/html/sortresources.html +5 -5
- data/manual/html/sorttasks.html +5 -5
- data/manual/html/start.column.html +4 -4
- data/manual/html/start.html +4 -4
- data/manual/html/start.limit.html +4 -4
- data/manual/html/start.report.html +5 -5
- data/manual/html/startcredit.html +4 -4
- data/manual/html/status.statussheet.html +4 -4
- data/manual/html/status.timesheet.html +4 -4
- data/manual/html/statussheet.html +4 -4
- data/manual/html/statussheetreport.html +4 -4
- data/manual/html/strict.projection.html +5 -5
- data/manual/html/summary.html +4 -4
- data/manual/html/supplement.html +4 -4
- data/manual/html/supplement.resource.html +4 -10
- data/manual/html/supplement.task.html +4 -28
- data/manual/html/tagfile.html +4 -4
- data/manual/html/task.html +4 -28
- data/manual/html/task.statussheet.html +4 -4
- data/manual/html/task.timesheet.html +4 -4
- data/manual/html/taskattributes.html +4 -4
- data/manual/html/taskprefix.html +4 -4
- data/manual/html/taskreport.html +28 -10
- data/manual/html/taskroot.html +5 -5
- data/manual/html/text.extend.html +4 -4
- data/manual/html/textreport.html +27 -9
- data/manual/html/timeformat.html +5 -5
- data/manual/html/timeoff.nikureport.html +4 -4
- data/manual/html/timesheet.html +4 -4
- data/manual/html/timesheetreport.html +23 -5
- data/manual/html/timezone.export.html +4 -4
- data/manual/html/timezone.html +4 -4
- data/manual/html/timezone.report.html +5 -5
- data/manual/html/timezone.shift.html +4 -4
- data/manual/html/timingresolution.html +4 -4
- data/manual/html/title.column.html +4 -4
- data/manual/html/title.html +5 -5
- data/manual/html/toc.html +207 -179
- data/manual/html/tooltip.column.html +45 -10
- data/manual/html/tracereport.html +405 -0
- data/manual/html/trackingscenario.html +6 -6
- data/manual/html/treelevel.html +4 -4
- data/manual/html/vacation.html +4 -4
- data/manual/html/vacation.resource.html +4 -4
- data/manual/html/vacation.shift.html +4 -4
- data/manual/html/warn.html +43 -8
- data/manual/html/weeklymax.html +5 -5
- data/manual/html/weeklymin.html +5 -5
- data/manual/html/weekstartsmonday.html +4 -4
- data/manual/html/weekstartssunday.html +6 -6
- data/manual/html/width.column.html +6 -6
- data/manual/html/width.html +72 -0
- data/manual/html/work.html +4 -4
- data/manual/html/workinghours.project.html +4 -4
- data/manual/html/workinghours.resource.html +4 -4
- data/manual/html/workinghours.shift.html +4 -4
- data/manual/html/yearlyworkingdays.html +4 -4
- data/spec/Color_spec.rb +60 -0
- data/spec/ProjectBroker_spec.rb +3 -2
- data/spec/StatusSheets_spec.rb +5 -4
- data/spec/TableColumnSorter_spec.rb +78 -0
- data/spec/TimeSheets_spec.rb +6 -2
- data/spec/Tj3Daemon_spec.rb +2 -2
- data/spec/TraceReport_spec.rb +117 -0
- data/taskjuggler.gemspec +1 -1
- data/test/MessageChecker.rb +3 -1
- data/test/ReferenceGenerator.rb +1 -1
- data/test/TestSuite/CSV-Reports/Leave.tjp +1 -1
- data/test/TestSuite/CSV-Reports/refs/resourcereport_with_tasks.csv +3 -0
- data/test/TestSuite/CSV-Reports/refs/taskcounter.csv +9 -0
- data/test/TestSuite/CSV-Reports/refs/taskreport_with_resources.csv +19 -16
- data/test/TestSuite/CSV-Reports/refs/weekly.csv +1 -0
- data/test/TestSuite/Export-Reports/refs/LogicalExpression.tjp +14 -2
- data/test/TestSuite/Export-Reports/refs/tutorial.tjp +98 -86
- data/test/TestSuite/Scheduler/Correct/Leaves.tjp +25 -0
- data/test/TestSuite/Syntax/Correct/Leave.tjp +1 -1
- data/test/TestSuite/Syntax/Correct/LogicalExpression.tjp +9 -1
- data/test/TestSuite/Syntax/Correct/TraceReport.tjp +10 -0
- data/test/TestSuite/Syntax/Correct/tutorial.tjp +10 -4
- data/test/test_CSV-Reports.rb +3 -3
- data/test/test_Export-Reports.rb +91 -86
- data/test/test_Journal.rb +15 -12
- data/test/test_Limits.rb +3 -3
- data/test/test_Project.rb +1 -2
- data/test/test_ProjectFileScanner.rb +1 -1
- data/test/test_PropertySet.rb +1 -1
- data/test/test_Query.rb +5 -6
- data/test/test_ReportGenerator.rb +15 -7
- data/test/test_RichText.rb +4 -3
- data/test/test_Scheduler.rb +19 -7
- data/test/test_ShiftAssignments.rb +2 -2
- data/test/test_SimpleQueryExpander.rb +29 -2
- data/test/test_Syntax.rb +14 -5
- metadata +49 -10
- data/lib/taskjuggler/LogFile.rb +0 -73
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>hideaccount</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
<br/>
|
|
18
18
|
<hr/>
|
|
19
19
|
<table style="width:90%; margin-left:5%; margin-right:5%"><tr>
|
|
20
|
-
<td style="text-align:left; width:35%;"><< <a href="
|
|
20
|
+
<td style="text-align:left; width:35%;"><< <a href="height.html">height</a> <<</td>
|
|
21
21
|
<td style="text-align:center; width:30%;"><a href="toc.html">Table Of Contents</a></td>
|
|
22
22
|
<td style="text-align:right; width:35%;">>> <a href="hidejournalentry.html">hidejournalentry</a> >></td>
|
|
23
23
|
</tr></table>
|
|
@@ -40,17 +40,52 @@
|
|
|
40
40
|
</tr>
|
|
41
41
|
<tr align="left">
|
|
42
42
|
<td class="tag">Syntax</td>
|
|
43
|
-
<td class="descr" colspan="2"><code>hideaccount <
|
|
43
|
+
<td class="descr" colspan="2"><code>hideaccount (<operand> [(| | & | > | < | = | >= | <= | !=) <operand>...] | @ (all | none))</code></td>
|
|
44
44
|
</tr>
|
|
45
45
|
<tr align="left">
|
|
46
|
-
<td class="tag" rowspan="
|
|
47
|
-
<td class="descr">
|
|
48
|
-
<td class="descr"><div>
|
|
46
|
+
<td class="tag" rowspan="9">Arguments</td>
|
|
47
|
+
<td class="descr">operand</td>
|
|
48
|
+
<td class="descr"><div>
|
|
49
|
+
<p>An operand can consist of a date, a text string, a <a href="functions.html">function</a>, a property attribute or a numerical value. It can also be the name of a declared flag. Use the <code>scenario_id.attribute</code> notation to use an attribute of the currently evaluated property. The scenario ID always has to be specified, also for non-scenario specific attributes. This is necessary to distinguish them from flags. See <a href="columnid.html">columnid</a> for a list of available attributes. The use of list attributes is not recommended. User defined attributes are available as well.</p>
|
|
50
|
+
<p>An operand can be a negated operand by prefixing a ~ charater or it can be another logical expression enclosed in braces.</p>
|
|
51
|
+
</div></td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr align="left">
|
|
54
|
+
<td class="descr">|</td>
|
|
55
|
+
<td class="descr"><div>The 'or' operator</div></td>
|
|
56
|
+
</tr>
|
|
57
|
+
<tr align="left">
|
|
58
|
+
<td class="descr">&</td>
|
|
59
|
+
<td class="descr"><div>The 'and' operator</div></td>
|
|
60
|
+
</tr>
|
|
61
|
+
<tr align="left">
|
|
62
|
+
<td class="descr">></td>
|
|
63
|
+
<td class="descr"><div>The 'greater than' operator</div></td>
|
|
64
|
+
</tr>
|
|
65
|
+
<tr align="left">
|
|
66
|
+
<td class="descr"><</td>
|
|
67
|
+
<td class="descr"><div>The 'smaller than' operator</div></td>
|
|
68
|
+
</tr>
|
|
69
|
+
<tr align="left">
|
|
70
|
+
<td class="descr">=</td>
|
|
71
|
+
<td class="descr"><div>The 'equal' operator</div></td>
|
|
72
|
+
</tr>
|
|
73
|
+
<tr align="left">
|
|
74
|
+
<td class="descr">>=</td>
|
|
75
|
+
<td class="descr"><div>The 'greater-or-equal' operator</div></td>
|
|
76
|
+
</tr>
|
|
77
|
+
<tr align="left">
|
|
78
|
+
<td class="descr"><=</td>
|
|
79
|
+
<td class="descr"><div>The 'smaller-or-equal' operator</div></td>
|
|
80
|
+
</tr>
|
|
81
|
+
<tr align="left">
|
|
82
|
+
<td class="descr">!=</td>
|
|
83
|
+
<td class="descr"><div>The 'not-equal' operator</div></td>
|
|
49
84
|
</tr>
|
|
50
85
|
<tr align="left">
|
|
51
86
|
<td class="tag">Context</td>
|
|
52
87
|
<td class="descr" colspan="2">
|
|
53
|
-
<a href="accountreport.html">accountreport</a>, <a href="resourcereport.html">resourcereport</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>
|
|
88
|
+
<a href="accountreport.html">accountreport</a>, <a href="resourcereport.html">resourcereport</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>, <a href="tracereport.html">tracereport</a>
|
|
54
89
|
</td>
|
|
55
90
|
</tr>
|
|
56
91
|
<tr align="left">
|
|
@@ -62,7 +97,7 @@
|
|
|
62
97
|
<br/>
|
|
63
98
|
<hr/>
|
|
64
99
|
<table style="width:90%; margin-left:5%; margin-right:5%"><tr>
|
|
65
|
-
<td style="text-align:left; width:35%;"><< <a href="
|
|
100
|
+
<td style="text-align:left; width:35%;"><< <a href="height.html">height</a> <<</td>
|
|
66
101
|
<td style="text-align:center; width:30%;"><a href="toc.html">Table Of Contents</a></td>
|
|
67
102
|
<td style="text-align:right; width:35%;">>> <a href="hidejournalentry.html">hidejournalentry</a> >></td>
|
|
68
103
|
</tr></table>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>hidejournalentry</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<tr align="left">
|
|
51
51
|
<td class="tag">Context</td>
|
|
52
52
|
<td class="descr" colspan="2">
|
|
53
|
-
<a href="accountreport.html">accountreport</a>, <a href="icalreport.html">icalreport</a>, <a href="resourcereport.html">resourcereport</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>
|
|
53
|
+
<a href="accountreport.html">accountreport</a>, <a href="icalreport.html">icalreport</a>, <a href="resourcereport.html">resourcereport</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>, <a href="tracereport.html">tracereport</a>
|
|
54
54
|
</td>
|
|
55
55
|
</tr>
|
|
56
56
|
</table></p>
|
data/manual/html/hidereport.html
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>hidereport</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
|
@@ -40,12 +40,47 @@
|
|
|
40
40
|
</tr>
|
|
41
41
|
<tr align="left">
|
|
42
42
|
<td class="tag">Syntax</td>
|
|
43
|
-
<td class="descr" colspan="2"><code>hidereport <
|
|
43
|
+
<td class="descr" colspan="2"><code>hidereport (<operand> [(| | & | > | < | = | >= | <= | !=) <operand>...] | @ (all | none))</code></td>
|
|
44
44
|
</tr>
|
|
45
45
|
<tr align="left">
|
|
46
|
-
<td class="tag" rowspan="
|
|
47
|
-
<td class="descr">
|
|
48
|
-
<td class="descr"><div>
|
|
46
|
+
<td class="tag" rowspan="9">Arguments</td>
|
|
47
|
+
<td class="descr">operand</td>
|
|
48
|
+
<td class="descr"><div>
|
|
49
|
+
<p>An operand can consist of a date, a text string, a <a href="functions.html">function</a>, a property attribute or a numerical value. It can also be the name of a declared flag. Use the <code>scenario_id.attribute</code> notation to use an attribute of the currently evaluated property. The scenario ID always has to be specified, also for non-scenario specific attributes. This is necessary to distinguish them from flags. See <a href="columnid.html">columnid</a> for a list of available attributes. The use of list attributes is not recommended. User defined attributes are available as well.</p>
|
|
50
|
+
<p>An operand can be a negated operand by prefixing a ~ charater or it can be another logical expression enclosed in braces.</p>
|
|
51
|
+
</div></td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr align="left">
|
|
54
|
+
<td class="descr">|</td>
|
|
55
|
+
<td class="descr"><div>The 'or' operator</div></td>
|
|
56
|
+
</tr>
|
|
57
|
+
<tr align="left">
|
|
58
|
+
<td class="descr">&</td>
|
|
59
|
+
<td class="descr"><div>The 'and' operator</div></td>
|
|
60
|
+
</tr>
|
|
61
|
+
<tr align="left">
|
|
62
|
+
<td class="descr">></td>
|
|
63
|
+
<td class="descr"><div>The 'greater than' operator</div></td>
|
|
64
|
+
</tr>
|
|
65
|
+
<tr align="left">
|
|
66
|
+
<td class="descr"><</td>
|
|
67
|
+
<td class="descr"><div>The 'smaller than' operator</div></td>
|
|
68
|
+
</tr>
|
|
69
|
+
<tr align="left">
|
|
70
|
+
<td class="descr">=</td>
|
|
71
|
+
<td class="descr"><div>The 'equal' operator</div></td>
|
|
72
|
+
</tr>
|
|
73
|
+
<tr align="left">
|
|
74
|
+
<td class="descr">>=</td>
|
|
75
|
+
<td class="descr"><div>The 'greater-or-equal' operator</div></td>
|
|
76
|
+
</tr>
|
|
77
|
+
<tr align="left">
|
|
78
|
+
<td class="descr"><=</td>
|
|
79
|
+
<td class="descr"><div>The 'smaller-or-equal' operator</div></td>
|
|
80
|
+
</tr>
|
|
81
|
+
<tr align="left">
|
|
82
|
+
<td class="descr">!=</td>
|
|
83
|
+
<td class="descr"><div>The 'not-equal' operator</div></td>
|
|
49
84
|
</tr>
|
|
50
85
|
<tr align="left">
|
|
51
86
|
<td class="tag">Context</td>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>hideresource</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
|
@@ -40,17 +40,52 @@
|
|
|
40
40
|
</tr>
|
|
41
41
|
<tr align="left">
|
|
42
42
|
<td class="tag">Syntax</td>
|
|
43
|
-
<td class="descr" colspan="2"><code>hideresource <
|
|
43
|
+
<td class="descr" colspan="2"><code>hideresource (<operand> [(| | & | > | < | = | >= | <= | !=) <operand>...] | @ (all | none))</code></td>
|
|
44
44
|
</tr>
|
|
45
45
|
<tr align="left">
|
|
46
|
-
<td class="tag" rowspan="
|
|
47
|
-
<td class="descr">
|
|
48
|
-
<td class="descr"><div>
|
|
46
|
+
<td class="tag" rowspan="9">Arguments</td>
|
|
47
|
+
<td class="descr">operand</td>
|
|
48
|
+
<td class="descr"><div>
|
|
49
|
+
<p>An operand can consist of a date, a text string, a <a href="functions.html">function</a>, a property attribute or a numerical value. It can also be the name of a declared flag. Use the <code>scenario_id.attribute</code> notation to use an attribute of the currently evaluated property. The scenario ID always has to be specified, also for non-scenario specific attributes. This is necessary to distinguish them from flags. See <a href="columnid.html">columnid</a> for a list of available attributes. The use of list attributes is not recommended. User defined attributes are available as well.</p>
|
|
50
|
+
<p>An operand can be a negated operand by prefixing a ~ charater or it can be another logical expression enclosed in braces.</p>
|
|
51
|
+
</div></td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr align="left">
|
|
54
|
+
<td class="descr">|</td>
|
|
55
|
+
<td class="descr"><div>The 'or' operator</div></td>
|
|
56
|
+
</tr>
|
|
57
|
+
<tr align="left">
|
|
58
|
+
<td class="descr">&</td>
|
|
59
|
+
<td class="descr"><div>The 'and' operator</div></td>
|
|
60
|
+
</tr>
|
|
61
|
+
<tr align="left">
|
|
62
|
+
<td class="descr">></td>
|
|
63
|
+
<td class="descr"><div>The 'greater than' operator</div></td>
|
|
64
|
+
</tr>
|
|
65
|
+
<tr align="left">
|
|
66
|
+
<td class="descr"><</td>
|
|
67
|
+
<td class="descr"><div>The 'smaller than' operator</div></td>
|
|
68
|
+
</tr>
|
|
69
|
+
<tr align="left">
|
|
70
|
+
<td class="descr">=</td>
|
|
71
|
+
<td class="descr"><div>The 'equal' operator</div></td>
|
|
72
|
+
</tr>
|
|
73
|
+
<tr align="left">
|
|
74
|
+
<td class="descr">>=</td>
|
|
75
|
+
<td class="descr"><div>The 'greater-or-equal' operator</div></td>
|
|
76
|
+
</tr>
|
|
77
|
+
<tr align="left">
|
|
78
|
+
<td class="descr"><=</td>
|
|
79
|
+
<td class="descr"><div>The 'smaller-or-equal' operator</div></td>
|
|
80
|
+
</tr>
|
|
81
|
+
<tr align="left">
|
|
82
|
+
<td class="descr">!=</td>
|
|
83
|
+
<td class="descr"><div>The 'not-equal' operator</div></td>
|
|
49
84
|
</tr>
|
|
50
85
|
<tr align="left">
|
|
51
86
|
<td class="tag">Context</td>
|
|
52
87
|
<td class="descr" colspan="2">
|
|
53
|
-
<a href="accountreport.html">accountreport</a>, <a href="export.html">export</a>, <a href="icalreport.html">icalreport</a>, <a href="nikureport.html">nikureport</a>, <a href="resourcereport.html">resourcereport</a>, <a href="statussheetreport.html">statussheetreport</a>, <a href="tagfile.html">tagfile</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>, <a href="timesheetreport.html">timesheetreport</a>
|
|
88
|
+
<a href="accountreport.html">accountreport</a>, <a href="export.html">export</a>, <a href="icalreport.html">icalreport</a>, <a href="nikureport.html">nikureport</a>, <a href="resourcereport.html">resourcereport</a>, <a href="statussheetreport.html">statussheetreport</a>, <a href="tagfile.html">tagfile</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>, <a href="timesheetreport.html">timesheetreport</a>, <a href="tracereport.html">tracereport</a>
|
|
54
89
|
</td>
|
|
55
90
|
</tr>
|
|
56
91
|
<tr align="left">
|
data/manual/html/hidetask.html
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>hidetask</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
|
@@ -40,17 +40,52 @@
|
|
|
40
40
|
</tr>
|
|
41
41
|
<tr align="left">
|
|
42
42
|
<td class="tag">Syntax</td>
|
|
43
|
-
<td class="descr" colspan="2"><code>hidetask <
|
|
43
|
+
<td class="descr" colspan="2"><code>hidetask (<operand> [(| | & | > | < | = | >= | <= | !=) <operand>...] | @ (all | none))</code></td>
|
|
44
44
|
</tr>
|
|
45
45
|
<tr align="left">
|
|
46
|
-
<td class="tag" rowspan="
|
|
47
|
-
<td class="descr">
|
|
48
|
-
<td class="descr"><div>
|
|
46
|
+
<td class="tag" rowspan="9">Arguments</td>
|
|
47
|
+
<td class="descr">operand</td>
|
|
48
|
+
<td class="descr"><div>
|
|
49
|
+
<p>An operand can consist of a date, a text string, a <a href="functions.html">function</a>, a property attribute or a numerical value. It can also be the name of a declared flag. Use the <code>scenario_id.attribute</code> notation to use an attribute of the currently evaluated property. The scenario ID always has to be specified, also for non-scenario specific attributes. This is necessary to distinguish them from flags. See <a href="columnid.html">columnid</a> for a list of available attributes. The use of list attributes is not recommended. User defined attributes are available as well.</p>
|
|
50
|
+
<p>An operand can be a negated operand by prefixing a ~ charater or it can be another logical expression enclosed in braces.</p>
|
|
51
|
+
</div></td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr align="left">
|
|
54
|
+
<td class="descr">|</td>
|
|
55
|
+
<td class="descr"><div>The 'or' operator</div></td>
|
|
56
|
+
</tr>
|
|
57
|
+
<tr align="left">
|
|
58
|
+
<td class="descr">&</td>
|
|
59
|
+
<td class="descr"><div>The 'and' operator</div></td>
|
|
60
|
+
</tr>
|
|
61
|
+
<tr align="left">
|
|
62
|
+
<td class="descr">></td>
|
|
63
|
+
<td class="descr"><div>The 'greater than' operator</div></td>
|
|
64
|
+
</tr>
|
|
65
|
+
<tr align="left">
|
|
66
|
+
<td class="descr"><</td>
|
|
67
|
+
<td class="descr"><div>The 'smaller than' operator</div></td>
|
|
68
|
+
</tr>
|
|
69
|
+
<tr align="left">
|
|
70
|
+
<td class="descr">=</td>
|
|
71
|
+
<td class="descr"><div>The 'equal' operator</div></td>
|
|
72
|
+
</tr>
|
|
73
|
+
<tr align="left">
|
|
74
|
+
<td class="descr">>=</td>
|
|
75
|
+
<td class="descr"><div>The 'greater-or-equal' operator</div></td>
|
|
76
|
+
</tr>
|
|
77
|
+
<tr align="left">
|
|
78
|
+
<td class="descr"><=</td>
|
|
79
|
+
<td class="descr"><div>The 'smaller-or-equal' operator</div></td>
|
|
80
|
+
</tr>
|
|
81
|
+
<tr align="left">
|
|
82
|
+
<td class="descr">!=</td>
|
|
83
|
+
<td class="descr"><div>The 'not-equal' operator</div></td>
|
|
49
84
|
</tr>
|
|
50
85
|
<tr align="left">
|
|
51
86
|
<td class="tag">Context</td>
|
|
52
87
|
<td class="descr" colspan="2">
|
|
53
|
-
<a href="accountreport.html">accountreport</a>, <a href="export.html">export</a>, <a href="icalreport.html">icalreport</a>, <a href="nikureport.html">nikureport</a>, <a href="resourcereport.html">resourcereport</a>, <a href="statussheetreport.html">statussheetreport</a>, <a href="tagfile.html">tagfile</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>
|
|
88
|
+
<a href="accountreport.html">accountreport</a>, <a href="export.html">export</a>, <a href="icalreport.html">icalreport</a>, <a href="nikureport.html">nikureport</a>, <a href="resourcereport.html">resourcereport</a>, <a href="statussheetreport.html">statussheetreport</a>, <a href="tagfile.html">tagfile</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>, <a href="timesheetreport.html">timesheetreport</a>, <a href="tracereport.html">tracereport</a>
|
|
54
89
|
</td>
|
|
55
90
|
</tr>
|
|
56
91
|
<tr align="left">
|
data/manual/html/icalreport.html
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>icalreport</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>include.macro</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>include.project</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>include.properties</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
data/manual/html/index.html
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
|
3
|
-
<!-- This file has been generated by tj3man v3.
|
|
3
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
4
4
|
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
5
5
|
<head>
|
|
6
6
|
<title>The TaskJuggler User Manual</title>
|
|
7
7
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
8
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
9
|
<meta content="A reference and user manual for the TaskJuggler project management software." name="description"/>
|
|
9
10
|
<meta content="taskjuggler, manual, reference" name="keywords"/>
|
|
10
11
|
</head>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>inherit.extend</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
data/manual/html/interval1.html
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>interval1</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|
data/manual/html/interval2.html
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE>
|
|
2
|
+
<!-- This file has been generated by tj3man v3.2.0 -->
|
|
3
|
+
<html lang="en" xml:lang="en">
|
|
5
4
|
<head>
|
|
6
5
|
<title>interval2</title>
|
|
7
6
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
|
7
|
+
<meta content="IE=9" http-equiv="X-UA-Compatible"/>
|
|
8
8
|
<meta content="The TaskJuggler Manual" name="description"/>
|
|
9
9
|
<meta content="taskjuggler, project, management" name="keywords"/>
|
|
10
10
|
</head>
|