taskjuggler 3.6.0 → 3.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (415) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG +51 -0
  3. data/data/css/tjreport.css +4 -0
  4. data/data/tjp.vim +21 -15
  5. data/examples/ProjectTemplate/template.tjp +7 -7
  6. data/examples/Tutorial/tutorial.tjp +1 -1
  7. data/lib/taskjuggler/Allocation.rb +1 -1
  8. data/lib/taskjuggler/AttributeBase.rb +10 -4
  9. data/lib/taskjuggler/Attributes.rb +2 -2
  10. data/lib/taskjuggler/BatchProcessor.rb +1 -1
  11. data/lib/taskjuggler/Interval.rb +10 -12
  12. data/lib/taskjuggler/Journal.rb +2 -2
  13. data/lib/taskjuggler/LogicalFunction.rb +1 -1
  14. data/lib/taskjuggler/LogicalOperation.rb +7 -4
  15. data/lib/taskjuggler/MessageHandler.rb +1 -1
  16. data/lib/taskjuggler/PTNProxy.rb +1 -1
  17. data/lib/taskjuggler/Project.rb +27 -22
  18. data/lib/taskjuggler/PropertyList.rb +7 -1
  19. data/lib/taskjuggler/PropertySet.rb +1 -1
  20. data/lib/taskjuggler/PropertyTreeNode.rb +5 -3
  21. data/lib/taskjuggler/Query.rb +3 -3
  22. data/lib/taskjuggler/RealFormat.rb +1 -1
  23. data/lib/taskjuggler/Resource.rb +2 -2
  24. data/lib/taskjuggler/ResourceScenario.rb +37 -5
  25. data/lib/taskjuggler/RichText/Snip.rb +1 -1
  26. data/lib/taskjuggler/RuntimeConfig.rb +1 -1
  27. data/lib/taskjuggler/Scoreboard.rb +5 -2
  28. data/lib/taskjuggler/Shift.rb +2 -2
  29. data/lib/taskjuggler/ShiftAssignments.rb +1 -1
  30. data/lib/taskjuggler/TaskJuggler.rb +4 -4
  31. data/lib/taskjuggler/TextParser.rb +1 -1
  32. data/lib/taskjuggler/TextParser/Scanner.rb +3 -3
  33. data/lib/taskjuggler/TimeSheets.rb +2 -2
  34. data/lib/taskjuggler/Tj3AppBase.rb +23 -9
  35. data/lib/taskjuggler/Tj3Config.rb +5 -3
  36. data/lib/taskjuggler/TjpExample.rb +3 -1
  37. data/lib/taskjuggler/TjpSyntaxRules.rb +157 -130
  38. data/lib/taskjuggler/UTF8String.rb +3 -3
  39. data/lib/taskjuggler/WorkingHours.rb +3 -3
  40. data/lib/taskjuggler/XMLElement.rb +12 -1
  41. data/lib/taskjuggler/apps/Tj3.rb +3 -1
  42. data/lib/taskjuggler/apps/Tj3Client.rb +3 -2
  43. data/lib/taskjuggler/apps/Tj3Daemon.rb +3 -1
  44. data/lib/taskjuggler/apps/Tj3Man.rb +4 -2
  45. data/lib/taskjuggler/apps/Tj3SsReceiver.rb +3 -1
  46. data/lib/taskjuggler/apps/Tj3SsSender.rb +3 -1
  47. data/lib/taskjuggler/apps/Tj3TsReceiver.rb +3 -1
  48. data/lib/taskjuggler/apps/Tj3TsSender.rb +3 -1
  49. data/lib/taskjuggler/apps/Tj3TsSummary.rb +3 -1
  50. data/lib/taskjuggler/apps/Tj3WebD.rb +3 -1
  51. data/lib/taskjuggler/deep_copy.rb +1 -1
  52. data/lib/taskjuggler/reports/CSVFile.rb +3 -3
  53. data/lib/taskjuggler/reports/ChartPlotter.rb +1 -1
  54. data/lib/taskjuggler/reports/GanttChart.rb +8 -2
  55. data/lib/taskjuggler/reports/GanttHeader.rb +11 -1
  56. data/lib/taskjuggler/reports/GanttLine.rb +6 -0
  57. data/lib/taskjuggler/reports/ICalReport.rb +1 -1
  58. data/lib/taskjuggler/reports/Report.rb +1 -1
  59. data/lib/taskjuggler/reports/ReportTableCell.rb +1 -1
  60. data/lib/taskjuggler/reports/TableReport.rb +7 -12
  61. data/lib/taskjuggler/reports/TjpExportRE.rb +1 -5
  62. data/lib/taskjuggler/version.rb +1 -0
  63. data/man/tj3.1 +130 -0
  64. data/man/tj3client.1 +145 -0
  65. data/man/tj3d.1 +93 -0
  66. data/man/tj3man.1 +76 -0
  67. data/man/tj3ss_receiver.1 +86 -0
  68. data/man/tj3ss_sender.1 +100 -0
  69. data/man/tj3ts_receiver.1 +86 -0
  70. data/man/tj3ts_sender.1 +92 -0
  71. data/man/tj3ts_summary.1 +104 -0
  72. data/man/tj3webd.1 +86 -0
  73. data/manual/Day_To_Day_Juggling +8 -8
  74. data/manual/Installation +6 -6
  75. data/manual/List_Attributes +1 -1
  76. data/manual/Rich_Text_Attributes +6 -5
  77. data/manual/Software +6 -6
  78. data/manual/TaskJuggler_Internals +4 -4
  79. data/manual/The_TaskJuggler_Syntax +5 -5
  80. data/manual/Tutorial +13 -11
  81. data/manual/html/Day_To_Day_Juggling.html +9 -9
  82. data/manual/html/Getting_Started.html +2 -2
  83. data/manual/html/How_To_Contribute.html +2 -2
  84. data/manual/html/Installation.html +8 -8
  85. data/manual/html/Intro.html +2 -2
  86. data/manual/html/List_Attributes.html +3 -3
  87. data/manual/html/Reporting_Bugs.html +2 -2
  88. data/manual/html/Rich_Text_Attributes.html +5 -5
  89. data/manual/html/Software.html +7 -7
  90. data/manual/html/TaskJuggler_2x_Migration.html +2 -2
  91. data/manual/html/TaskJuggler_Internals.html +6 -6
  92. data/manual/html/The_TaskJuggler_Syntax.html +6 -6
  93. data/manual/html/Tutorial.html +17 -14
  94. data/manual/html/account.html +4 -4
  95. data/manual/html/account.task.html +2 -2
  96. data/manual/html/accountprefix.html +2 -2
  97. data/manual/html/accountreport.html +4 -4
  98. data/manual/html/accountroot.html +3 -3
  99. data/manual/html/active.html +3 -3
  100. data/manual/html/adopt.task.html +2 -2
  101. data/manual/html/aggregate.html +2 -2
  102. data/manual/html/alert.html +3 -3
  103. data/manual/html/alertlevels.html +2 -2
  104. data/manual/html/allocate.html +3 -3
  105. data/manual/html/alphabet.html +1 -1
  106. data/manual/html/alternative.html +2 -2
  107. data/manual/html/author.html +2 -2
  108. data/manual/html/auxdir.html +2 -2
  109. data/manual/html/auxdir.report.html +3 -3
  110. data/manual/html/balance.html +3 -3
  111. data/manual/html/booking.resource.html +4 -4
  112. data/manual/html/booking.task.html +4 -4
  113. data/manual/html/caption.html +3 -3
  114. data/manual/html/cellcolor.column.html +3 -3
  115. data/manual/html/celltext.column.html +3 -3
  116. data/manual/html/center.html +3 -3
  117. data/manual/html/charge.html +2 -2
  118. data/manual/html/chargeset.html +2 -2
  119. data/manual/html/columnid.html +17 -13
  120. data/manual/html/columns.html +3 -3
  121. data/manual/html/complete.html +2 -2
  122. data/manual/html/copyright.html +2 -2
  123. data/manual/html/credits.html +2 -2
  124. data/manual/html/css/tjreport.css +4 -0
  125. data/manual/html/currency.html +2 -2
  126. data/manual/html/currencyformat.html +4 -4
  127. data/manual/html/dailymax.html +2 -2
  128. data/manual/html/dailymin.html +3 -3
  129. data/manual/html/dailyworkinghours.html +2 -2
  130. data/manual/html/date.extend.html +2 -2
  131. data/manual/html/date.html +5 -5
  132. data/manual/html/definitions.html +4 -4
  133. data/manual/html/depends.html +4 -4
  134. data/manual/html/details.html +2 -2
  135. data/manual/html/disabled.html +2 -2
  136. data/manual/html/duration.html +2 -2
  137. data/manual/html/efficiency.html +3 -3
  138. data/manual/html/effort.html +2 -2
  139. data/manual/html/effortdone.html +2 -2
  140. data/manual/html/effortleft.html +2 -2
  141. data/manual/html/email.html +2 -2
  142. data/manual/html/enabled.html +2 -2
  143. data/manual/html/end.column.html +3 -3
  144. data/manual/html/end.html +4 -4
  145. data/manual/html/end.limit.html +2 -2
  146. data/manual/html/end.report.html +3 -3
  147. data/manual/html/end.timesheet.html +3 -3
  148. data/manual/html/endcredit.html +3 -3
  149. data/manual/html/epilog.html +3 -3
  150. data/manual/html/export.html +4 -4
  151. data/manual/html/extend.html +3 -3
  152. data/manual/html/fail.html +3 -3
  153. data/manual/html/fdl.html +2 -2
  154. data/manual/html/flags.account.html +2 -2
  155. data/manual/html/flags.html +2 -2
  156. data/manual/html/flags.journalentry.html +2 -2
  157. data/manual/html/flags.report.html +3 -3
  158. data/manual/html/flags.resource.html +2 -2
  159. data/manual/html/flags.statussheet.html +2 -2
  160. data/manual/html/flags.task.html +2 -2
  161. data/manual/html/flags.timesheet.html +2 -2
  162. data/manual/html/fontcolor.column.html +3 -3
  163. data/manual/html/footer.html +3 -3
  164. data/manual/html/formats.export.html +3 -3
  165. data/manual/html/formats.html +4 -4
  166. data/manual/html/functions.html +5 -5
  167. data/manual/html/gapduration.html +2 -2
  168. data/manual/html/gaplength.html +2 -2
  169. data/manual/html/halign.center.html +2 -2
  170. data/manual/html/halign.column.html +3 -3
  171. data/manual/html/halign.left.html +2 -2
  172. data/manual/html/halign.right.html +2 -2
  173. data/manual/html/hasalert.html +2 -2
  174. data/manual/html/header.html +3 -3
  175. data/manual/html/headline.html +3 -3
  176. data/manual/html/height.html +4 -4
  177. data/manual/html/hideaccount.html +4 -4
  178. data/manual/html/hidejournalentry.html +3 -3
  179. data/manual/html/hidereport.html +3 -3
  180. data/manual/html/hideresource.html +4 -4
  181. data/manual/html/hidetask.html +4 -4
  182. data/manual/html/icalreport.html +9 -3
  183. data/manual/html/include.macro.html +3 -3
  184. data/manual/html/include.project.html +3 -3
  185. data/manual/html/include.properties.html +3 -3
  186. data/manual/html/index.html +1 -1
  187. data/manual/html/inherit.extend.html +3 -3
  188. data/manual/html/interval1.html +3 -3
  189. data/manual/html/interval2.html +3 -3
  190. data/manual/html/interval3.html +2 -2
  191. data/manual/html/interval4.html +2 -2
  192. data/manual/html/isactive.html +2 -2
  193. data/manual/html/ischildof.html +2 -2
  194. data/manual/html/isdependencyof.html +2 -2
  195. data/manual/html/isdutyof.html +2 -2
  196. data/manual/html/isfeatureof.html +2 -2
  197. data/manual/html/isleaf.html +2 -2
  198. data/manual/html/ismilestone.html +2 -2
  199. data/manual/html/isongoing.html +3 -3
  200. data/manual/html/isresource.html +2 -2
  201. data/manual/html/isresponsibilityof.html +2 -2
  202. data/manual/html/istask.html +2 -2
  203. data/manual/html/isvalid.html +2 -2
  204. data/manual/html/journalattributes.html +3 -3
  205. data/manual/html/journalentry.html +3 -3
  206. data/manual/html/journalmode.html +4 -4
  207. data/manual/html/leaveallowance.html +3 -3
  208. data/manual/html/leaves.html +3 -3
  209. data/manual/html/left.html +3 -3
  210. data/manual/html/length.html +3 -3
  211. data/manual/html/limits.allocate.html +2 -2
  212. data/manual/html/limits.html +2 -2
  213. data/manual/html/limits.resource.html +2 -2
  214. data/manual/html/limits.task.html +2 -2
  215. data/manual/html/listitem.column.html +3 -3
  216. data/manual/html/listtype.column.html +2 -2
  217. data/manual/html/loadunit.html +3 -3
  218. data/manual/html/logicalexpression.html +4 -4
  219. data/manual/html/logicalflagexpression.html +4 -4
  220. data/manual/html/macro.html +4 -4
  221. data/manual/html/managers.html +2 -2
  222. data/manual/html/mandatory.html +4 -4
  223. data/manual/html/markdate.html +69 -0
  224. data/manual/html/maxend.html +4 -4
  225. data/manual/html/maximum.html +2 -2
  226. data/manual/html/maxstart.html +2 -2
  227. data/manual/html/milestone.html +3 -3
  228. data/manual/html/minend.html +2 -2
  229. data/manual/html/minimum.html +2 -2
  230. data/manual/html/minstart.html +2 -2
  231. data/manual/html/monthlymax.html +2 -2
  232. data/manual/html/monthlymin.html +3 -3
  233. data/manual/html/navbar.html +5 -1
  234. data/manual/html/navigator.html +2 -2
  235. data/manual/html/newtask.html +3 -3
  236. data/manual/html/nikureport.html +2 -2
  237. data/manual/html/note.task.html +4 -4
  238. data/manual/html/novevents.html +68 -0
  239. data/manual/html/now.html +4 -4
  240. data/manual/html/number.extend.html +2 -2
  241. data/manual/html/numberformat.html +3 -3
  242. data/manual/html/onend.html +2 -2
  243. data/manual/html/onstart.html +2 -2
  244. data/manual/html/opennodes.html +3 -3
  245. data/manual/html/outputdir.html +3 -3
  246. data/manual/html/overtime.booking.html +2 -2
  247. data/manual/html/period.column.html +2 -2
  248. data/manual/html/period.limit.html +2 -2
  249. data/manual/html/period.report.html +3 -3
  250. data/manual/html/period.task.html +2 -2
  251. data/manual/html/persistent.html +3 -3
  252. data/manual/html/precedes.html +5 -5
  253. data/manual/html/priority.html +4 -4
  254. data/manual/html/priority.timesheet.html +3 -3
  255. data/manual/html/project.html +4 -4
  256. data/manual/html/projectid.html +2 -2
  257. data/manual/html/projectid.task.html +3 -3
  258. data/manual/html/projectids.html +2 -2
  259. data/manual/html/projection.html +2 -2
  260. data/manual/html/prolog.html +3 -3
  261. data/manual/html/properties.html +3 -3
  262. data/manual/html/purge.html +3 -3
  263. data/manual/html/rate.html +2 -2
  264. data/manual/html/rate.resource.html +2 -2
  265. data/manual/html/rawhtmlhead.html +4 -4
  266. data/manual/html/reference.extend.html +2 -2
  267. data/manual/html/remaining.html +3 -3
  268. data/manual/html/replace.html +2 -2
  269. data/manual/html/reportprefix.html +2 -2
  270. data/manual/html/resource.html +3 -3
  271. data/manual/html/resourceattributes.html +2 -2
  272. data/manual/html/resourceprefix.html +2 -2
  273. data/manual/html/resourcereport.html +5 -5
  274. data/manual/html/resourceroot.html +4 -4
  275. data/manual/html/resources.limit.html +2 -2
  276. data/manual/html/responsible.html +2 -2
  277. data/manual/html/richtext.extend.html +2 -2
  278. data/manual/html/right.html +3 -3
  279. data/manual/html/rollupaccount.html +4 -4
  280. data/manual/html/rollupresource.html +4 -4
  281. data/manual/html/rolluptask.html +4 -4
  282. data/manual/html/scale.column.html +2 -2
  283. data/manual/html/scenario.html +3 -3
  284. data/manual/html/scenario.ical.html +3 -3
  285. data/manual/html/scenarios.export.html +2 -2
  286. data/manual/html/scenarios.html +3 -3
  287. data/manual/html/scenariospecific.extend.html +2 -2
  288. data/manual/html/scheduled.html +2 -2
  289. data/manual/html/scheduling.html +6 -6
  290. data/manual/html/schedulingmode.html +2 -2
  291. data/manual/html/select.html +4 -4
  292. data/manual/html/selfcontained.html +3 -3
  293. data/manual/html/shift.allocate.html +2 -2
  294. data/manual/html/shift.html +3 -3
  295. data/manual/html/shift.resource.html +4 -4
  296. data/manual/html/shift.task.html +2 -2
  297. data/manual/html/shift.timesheet.html +2 -2
  298. data/manual/html/shifts.allocate.html +2 -2
  299. data/manual/html/shifts.resource.html +2 -2
  300. data/manual/html/shifts.task.html +3 -3
  301. data/manual/html/shorttimeformat.html +3 -3
  302. data/manual/html/sloppy.booking.html +2 -2
  303. data/manual/html/sloppy.projection.html +2 -2
  304. data/manual/html/sortaccounts.html +3 -3
  305. data/manual/html/sortjournalentries.html +3 -3
  306. data/manual/html/sortresources.html +3 -3
  307. data/manual/html/sorttasks.html +3 -3
  308. data/manual/html/start.column.html +3 -3
  309. data/manual/html/start.html +4 -4
  310. data/manual/html/start.limit.html +2 -2
  311. data/manual/html/start.report.html +3 -3
  312. data/manual/html/startcredit.html +3 -3
  313. data/manual/html/status.statussheet.html +2 -2
  314. data/manual/html/status.timesheet.html +2 -2
  315. data/manual/html/statussheet.html +2 -2
  316. data/manual/html/statussheetreport.html +3 -3
  317. data/manual/html/strict.projection.html +2 -2
  318. data/manual/html/summary.html +2 -2
  319. data/manual/html/supplement.html +2 -2
  320. data/manual/html/supplement.resource.html +2 -2
  321. data/manual/html/supplement.task.html +2 -2
  322. data/manual/html/tagfile.html +3 -3
  323. data/manual/html/task.html +3 -3
  324. data/manual/html/task.statussheet.html +3 -3
  325. data/manual/html/task.timesheet.html +2 -2
  326. data/manual/html/taskattributes.html +2 -2
  327. data/manual/html/taskprefix.html +2 -2
  328. data/manual/html/taskreport.html +5 -5
  329. data/manual/html/taskroot.export.html +2 -2
  330. data/manual/html/taskroot.html +3 -3
  331. data/manual/html/text.extend.html +2 -2
  332. data/manual/html/textreport.html +5 -5
  333. data/manual/html/timeformat.html +4 -4
  334. data/manual/html/timeformat1.html +2 -2
  335. data/manual/html/timeformat2.html +2 -2
  336. data/manual/html/timeoff.nikureport.html +2 -2
  337. data/manual/html/timesheet.html +3 -3
  338. data/manual/html/timesheetreport.html +3 -3
  339. data/manual/html/timezone.export.html +2 -2
  340. data/manual/html/timezone.html +2 -2
  341. data/manual/html/timezone.report.html +3 -3
  342. data/manual/html/timezone.shift.html +2 -2
  343. data/manual/html/timingresolution.html +2 -2
  344. data/manual/html/title.column.html +2 -2
  345. data/manual/html/title.html +3 -3
  346. data/manual/html/toc.html +157 -143
  347. data/manual/html/tooltip.column.html +3 -3
  348. data/manual/html/tracereport.html +8 -8
  349. data/manual/html/trackingscenario.html +3 -3
  350. data/manual/html/treelevel.html +2 -2
  351. data/manual/html/vacation.html +2 -2
  352. data/manual/html/vacation.resource.html +2 -2
  353. data/manual/html/vacation.shift.html +2 -2
  354. data/manual/html/warn.html +4 -4
  355. data/manual/html/weeklymax.html +2 -2
  356. data/manual/html/weeklymin.html +3 -3
  357. data/manual/html/weekstartsmonday.html +2 -2
  358. data/manual/html/weekstartssunday.html +2 -2
  359. data/manual/html/width.column.html +2 -2
  360. data/manual/html/width.html +4 -4
  361. data/manual/html/work.html +3 -3
  362. data/manual/html/workinghours.project.html +3 -3
  363. data/manual/html/workinghours.resource.html +2 -2
  364. data/manual/html/workinghours.shift.html +2 -2
  365. data/manual/html/yearlyworkingdays.html +2 -2
  366. data/spec/ProjectBroker_spec.rb +6 -6
  367. data/spec/StatusSheets_spec.rb +1 -1
  368. data/spec/TimeSheets_spec.rb +1 -1
  369. data/taskjuggler.gemspec +7 -7
  370. data/tasks/changelog.rake +2 -0
  371. data/tasks/gem.rake +3 -0
  372. data/tasks/help2man.rake +18 -0
  373. data/tasks/kate.rake +2 -0
  374. data/tasks/manual.rake +2 -0
  375. data/tasks/test.rake +5 -0
  376. data/tasks/vim.rake +2 -0
  377. data/test/TestSuite/Export-Reports/refs/AccountReport.tjp +0 -1
  378. data/test/TestSuite/Export-Reports/refs/AdoptedTasks.tjp +0 -2
  379. data/test/TestSuite/Export-Reports/refs/AlertLevels.tjp +0 -1
  380. data/test/TestSuite/Export-Reports/refs/Allocate-1.tjp +0 -1
  381. data/test/TestSuite/Export-Reports/refs/AutoID.tjp +0 -1
  382. data/test/TestSuite/Export-Reports/refs/AutoMacros.tjp +0 -1
  383. data/test/TestSuite/Export-Reports/refs/Currencyformat.tjp +0 -1
  384. data/test/TestSuite/Export-Reports/refs/CustomAttributes.tjp +0 -2
  385. data/test/TestSuite/Export-Reports/refs/Depends1.tjp +0 -1
  386. data/test/TestSuite/Export-Reports/refs/Durations.tjp +0 -1
  387. data/test/TestSuite/Export-Reports/refs/Efficiency.tjp +0 -1
  388. data/test/TestSuite/Export-Reports/refs/Gap.tjp +0 -3
  389. data/test/TestSuite/Export-Reports/refs/Include.tjp +0 -1
  390. data/test/TestSuite/Export-Reports/refs/Journal.tjp +0 -1
  391. data/test/TestSuite/Export-Reports/refs/Macro-1.tjp +0 -1
  392. data/test/TestSuite/Export-Reports/refs/Macro-2.tjp +0 -2
  393. data/test/TestSuite/Export-Reports/refs/Macro-3.tjp +0 -1
  394. data/test/TestSuite/Export-Reports/refs/Manager.tjp +0 -1
  395. data/test/TestSuite/Export-Reports/refs/Milestone.tjp +0 -2
  396. data/test/TestSuite/Export-Reports/refs/Numberformat.tjp +0 -1
  397. data/test/TestSuite/Export-Reports/refs/Precedes1.tjp +0 -1
  398. data/test/TestSuite/Export-Reports/refs/Project.tjp +0 -1
  399. data/test/TestSuite/Export-Reports/refs/ProjectIDs.tjp +0 -3
  400. data/test/TestSuite/Export-Reports/refs/Reports.tjp +0 -1
  401. data/test/TestSuite/Export-Reports/refs/Resource.tjp +0 -1
  402. data/test/TestSuite/Export-Reports/refs/ResourceRoot.tjp +0 -1
  403. data/test/TestSuite/Export-Reports/refs/RollupResource.tjp +0 -1
  404. data/test/TestSuite/Export-Reports/refs/Scenario.tjp +0 -2
  405. data/test/TestSuite/Export-Reports/refs/Timezone.tjp +0 -1
  406. data/test/TestSuite/Export-Reports/refs/Vacation.tjp +0 -1
  407. data/test/TestSuite/Export-Reports/refs/navigator.tjp +0 -4
  408. data/test/TestSuite/Export-Reports/refs/template.tjp +0 -6
  409. data/test/TestSuite/Export-Reports/refs/textreport.tjp +0 -1
  410. data/test/TestSuite/Export-Reports/refs/tutorial.tjp +0 -8
  411. data/test/TestSuite/Syntax/Correct/Booking.tjp +1 -1
  412. data/test/TestSuite/Syntax/Correct/Currencyformat.tjp +1 -1
  413. data/test/TestSuite/Syntax/Correct/tutorial.tjp +5 -0
  414. data/test/test_ProjectFileScanner.rb +8 -8
  415. metadata +43 -10
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>isresource</title>
@@ -63,6 +63,6 @@
63
63
  </tr></table>
64
64
  <hr/>
65
65
  <br/>
66
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
66
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
67
67
  </body>
68
68
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>isresponsibilityof</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 &lt;cs@taskjuggler.org&gt;.<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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
72
72
  </body>
73
73
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>istask</title>
@@ -63,6 +63,6 @@
63
63
  </tr></table>
64
64
  <hr/>
65
65
  <br/>
66
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
66
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
67
67
  </body>
68
68
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>isvalid</title>
@@ -63,6 +63,6 @@
63
63
  </tr></table>
64
64
  <hr/>
65
65
  <br/>
66
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
66
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
67
67
  </body>
68
68
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>journalattributes</title>
@@ -96,7 +96,7 @@
96
96
  <tr align="left">
97
97
  <td class="tag">Context</td>
98
98
  <td class="descr" colspan="2">
99
- <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>
99
+ <a href="resourcereport.html">resourcereport</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>, <a href="tracereport.html">tracereport</a>, <a href="accountreport.html">accountreport</a>
100
100
  </td>
101
101
  </tr>
102
102
  </table></p>
@@ -110,6 +110,6 @@
110
110
  </tr></table>
111
111
  <hr/>
112
112
  <br/>
113
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
113
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
114
114
  </body>
115
115
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>journalentry</title>
@@ -40,7 +40,7 @@
40
40
  <td class="tag">Purpose</td>
41
41
  <td class="descr" colspan="2"><div>
42
42
  <p>This attribute adds an entry to the journal of the project. A journal can be used to record events, decisions or news that happened at a particular moment during the project. Depending on the context, a journal entry may or may not be associated with a specific property or author.</p>
43
- <p>A journal entry can consists of up to three parts. The headline is mandatory and should be only 5 to 10 words long. The introduction is optional and should be only one or two sentences long. All other details should be put into the third part.</p>
43
+ <p>A journal entry can consist of up to three parts. The headline is mandatory and should be only 5 to 10 words long. The introduction is optional and should be only one or two sentences long. All other details should be put into the third part.</p>
44
44
  <p>Depending on the context, journal entries are listed with headlines only, as headlines plus introduction or in full.</p>
45
45
  </div></td>
46
46
  </tr>
@@ -80,6 +80,6 @@
80
80
  </tr></table>
81
81
  <hr/>
82
82
  <br/>
83
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
83
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
84
84
  </body>
85
85
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>journalmode</title>
@@ -67,7 +67,7 @@
67
67
  </tr>
68
68
  <tr align="left">
69
69
  <td class="descr">alerts_dep</td>
70
- <td class="descr"><div>In this mode only the last entries before the report end date for the context property and all its sub-properties and their dependencies is included. If there are multiple entries at the exact same date, then all these entries are included. In contrast to the <code>status_down</code> mode, only entries with an alert level above the default level, and only those with the highest overall alert level are included.</div></td>
70
+ <td class="descr"><div>In this mode only the last entries before the report end date for the context property and all its sub-properties and their dependencies are included. If there are multiple entries at the exact same date, then all these entries are included. In contrast to the <code>status_down</code> mode, only entries with an alert level above the default level, and only those with the highest overall alert level are included.</div></td>
71
71
  </tr>
72
72
  <tr align="left">
73
73
  <td class="descr">alerts_down</td>
@@ -76,7 +76,7 @@
76
76
  <tr align="left">
77
77
  <td class="tag">Context</td>
78
78
  <td class="descr" colspan="2">
79
- <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>
79
+ <a href="resourcereport.html">resourcereport</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>, <a href="tracereport.html">tracereport</a>, <a href="accountreport.html">accountreport</a>
80
80
  </td>
81
81
  </tr>
82
82
  </table></p>
@@ -90,6 +90,6 @@
90
90
  </tr></table>
91
91
  <hr/>
92
92
  <br/>
93
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
93
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
94
94
  </body>
95
95
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>leaveallowance</title>
@@ -41,7 +41,7 @@
41
41
  <td class="tag">Purpose</td>
42
42
  <td class="descr" colspan="2"><div>
43
43
  <p>Add or subtract leave allowances. Currently, only allowances for the annual leaves are supported. Allowances can be negative to deal with expired allowances. The <code>leaveallowancebalance</code> report <a href="columns.html">column</a> can be used to report the current annual leave balance.</p>
44
- <p>Leaves outside of the project period are silently ignored and will not be considered in the leave balance calculation. Therefor, leave allowances are only allowed within the project period.</p>
44
+ <p>Leaves outside of the project period are silently ignored and will not be considered in the leave balance calculation. Therefore, leave allowances are only allowed within the project period.</p>
45
45
  </div></td>
46
46
  </tr>
47
47
  <tr align="left">
@@ -136,6 +136,6 @@ resourcereport "." {
136
136
  </tr></table>
137
137
  <hr/>
138
138
  <br/>
139
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
139
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
140
140
  </body>
141
141
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>leaves</title>
@@ -41,7 +41,7 @@
41
41
  <td class="tag">Purpose</td>
42
42
  <td class="descr" colspan="2"><div>
43
43
  <p>Describe a list of leave periods. A leave can be due to a public holiday, personal or sick leave. At global scope, the leaves determine which day is considered a working day. Subsequent resource definitions will inherit the leave list.</p>
44
- <p>Leaves can be defined at global level, at resource level and at shift level and intervals may overlap. The leave types have different priorities. A higher priority leave type can overwrite a lower priority type. This means that resource level leaves can overwrite global leaves when they have a higher priority. A sub resource can overwrite a leave of a enclosing resource.</p>
44
+ <p>Leaves can be defined at global level, at resource level and at shift level and intervals may overlap. The leave types have different priorities. A higher priority leave type can overwrite a lower priority type. This means that resource level leaves can overwrite global leaves when they have a higher priority. A sub resource can overwrite a leave of an enclosing resource.</p>
45
45
  <p>Leave periods outside of the project interval are silently ignored. For leave periods that are partially outside of the project period only the part inside the project period will be considered.</p>
46
46
  </div></td>
47
47
  </tr>
@@ -141,6 +141,6 @@ resourcereport "." {
141
141
  </tr></table>
142
142
  <hr/>
143
143
  <br/>
144
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
144
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
145
145
  </body>
146
146
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>left</title>
@@ -51,7 +51,7 @@
51
51
  <tr align="left">
52
52
  <td class="tag">Context</td>
53
53
  <td class="descr" colspan="2">
54
- <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
+ <a href="resourcereport.html">resourcereport</a>, <a href="taskreport.html">taskreport</a>, <a href="textreport.html">textreport</a>, <a href="tracereport.html">tracereport</a>, <a href="accountreport.html">accountreport</a>
55
55
  </td>
56
56
  </tr>
57
57
  </table></p>
@@ -87,6 +87,6 @@ textreport frame "textreport" {
87
87
  </tr></table>
88
88
  <hr/>
89
89
  <br/>
90
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
90
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
91
91
  </body>
92
92
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>length</title>
@@ -41,7 +41,7 @@
41
41
  <td class="descr" colspan="2"><div>
42
42
  <p>Specifies the duration of this task as working time, not calendar time. 7d means 7 working days, or 7 times 8 hours (assuming default settings), not one week.</p>
43
43
  <p>A task with a length specification may have resource allocations. Resources are allocated when they are available. There is no guarantee that the task will get any resources allocated. The availability of resources has no impact on the duration of the task. A time slot where none of the specified resources is available is still considered working time, if there is no global vacation and global working hours are defined accordingly.</p>
44
- <p>For the length calculation, the global working hours and the global leaves matter unless the task has <a href="shifts.task.html">shifts</a> assigned. In the latter case the working hours and leaves of the shift apply for the specified period to determine if a slot is working time or not. If a resource has additinal working hours defined, it's quite possible that a task with a length of 5d will have an allocated effort larger than 40 hours. Resource working hours only have an impact on whether an allocation is made or not for a particular time slot. They don't effect the resulting duration of the task.</p>
44
+ <p>For the length calculation, the global working hours and the global leaves matter unless the task has <a href="shifts.task.html">shifts</a> assigned. In the latter case the working hours and leaves of the shift apply for the specified period to determine if a slot is working time or not. If a resource has additional working hours defined, it's quite possible that a task with a length of 5d will have an allocated effort larger than 40 hours. Resource working hours only have an impact on whether an allocation is made or not for a particular time slot. They don't effect the resulting duration of the task.</p>
45
45
  <p>Tasks may not have subtasks if this attribute is used. Setting this attribute will reset the <a href="duration.html">duration</a>, <a href="effort.html">effort</a> and <a href="milestone.html">milestone</a> attributes.</p>
46
46
  </div></td>
47
47
  </tr>
@@ -101,6 +101,6 @@
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 &lt;cs@taskjuggler.org&gt;.<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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
105
105
  </body>
106
106
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>limits.allocate</title>
@@ -42,6 +42,6 @@
42
42
  </tr></table>
43
43
  <hr/>
44
44
  <br/>
45
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
45
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
46
46
  </body>
47
47
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>limits</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 &lt;cs@taskjuggler.org&gt;.<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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
73
73
  </body>
74
74
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>limits.resource</title>
@@ -77,6 +77,6 @@
77
77
  </tr></table>
78
78
  <hr/>
79
79
  <br/>
80
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
80
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
81
81
  </body>
82
82
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>limits.task</title>
@@ -110,6 +110,6 @@ task t7 "Task 7" {
110
110
  </tr></table>
111
111
  <hr/>
112
112
  <br/>
113
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
113
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
114
114
  </body>
115
115
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>listitem.column</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>Specifies a RichText pattern that is used to generate the text for the list items. The pattern should contain at least one <code>&lt;-query attribute='XXX'-&gt;</code> element that will be replaced with the value of attribute XXX. For the replacement, the property of the query will be the list item.</div></td>
41
+ <td class="descr" colspan="2"><div>Specifies a <a href="Rich_Text_Attributes.html">Rich Text</a> pattern that is used to generate the text for the list items. The pattern should contain at least one <code>&lt;-query attribute='XXX'-&gt;</code> element that will be replaced with the value of attribute XXX. For the replacement, the property of the query will be the list item.</div></td>
42
42
  </tr>
43
43
  <tr align="left">
44
44
  <td class="tag">Syntax</td>
@@ -63,6 +63,6 @@
63
63
  </tr></table>
64
64
  <hr/>
65
65
  <br/>
66
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
66
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
67
67
  </body>
68
68
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>listtype.column</title>
@@ -76,6 +76,6 @@
76
76
  </tr></table>
77
77
  <hr/>
78
78
  <br/>
79
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
79
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
80
80
  </body>
81
81
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>loadunit</title>
@@ -84,7 +84,7 @@
84
84
  <tr align="left">
85
85
  <td class="tag">Context</td>
86
86
  <td class="descr" colspan="2">
87
- <a href="accountreport.html">accountreport</a>, <a href="export.html">export</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>
87
+ <a href="export.html">export</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>, <a href="accountreport.html">accountreport</a>
88
88
  </td>
89
89
  </tr>
90
90
  </table></p>
@@ -98,6 +98,6 @@
98
98
  </tr></table>
99
99
  <hr/>
100
100
  <br/>
101
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
101
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
102
102
  </body>
103
103
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>logicalexpression</title>
@@ -39,10 +39,10 @@
39
39
  <tr align="left">
40
40
  <td class="tag">Purpose</td>
41
41
  <td class="descr" colspan="2"><div>
42
- <p>A logical expression is a combination of operands and mathematical operations. The final result of a logical expression is always true or false. Logical expressions are used the reduce the properties in a report to a certain subset or to select alternatives for the cell content of a table. When used with attributes like <a href="hidetask.html">hidetask</a> or <a href="hideresource.html">hideresource</a> the logical expression evaluates to true for a certain property, this property is hidden or rolled-up in the report.</p>
42
+ <p>A logical expression is a combination of operands and mathematical operations. The final result of a logical expression is always true or false. Logical expressions are used the reduce the properties in a report to a certain subset or to select alternatives for the cell content of a table. When the logical expression is used with attributes like <a href="hidetask.html">hidetask</a> or <a href="hideresource.html">hideresource</a> and evaluates to true for a certain property, this property is hidden or rolled-up in the report.</p>
43
43
  <p>Operands can be previously declared flags, built-in <a href="functions.html">functions</a>, property attributes (specified as scenario.attribute) or another logical expression. When you combine logical operations to a more complex expression, the operators are evaluated from left to right. <code>a | b &amp; c</code> is identical to <code>(a | b) &amp; c</code>. It's highly recommended that you always use brackets to control the evaluation sequence. Currently, TaskJuggler does not support the concept of operator precedence or right-left associativity. This may change in the future.</p>
44
44
  <p>An operand can also be just a number. 0 evaluates to false, all other numbers to true. The logical expression can also be the special constants <code>@all</code> or <code>@none</code>. The first always evaluates to true, the latter to false.</p>
45
- <p>Date attributes needs special attention. Attributes like <a href="maxend.html">maxend</a> can be undefined. To use such an attribute in a comparison, you need to test for the validity first. E. g. to compare the end date of the <code>plan</code> scenario with the <code>maxend</code> value use <code>isvalid(plan.maxend) &amp; (plan.end &gt; plan.maxend)</code>. The <code>&amp;</code> and <code>|</code> operators are lazy. If the result is already known after evaluation the first operand, the second operand will not be evaluated any more.</p>
45
+ <p>Date attributes needs special attention. Attributes like <a href="maxend.html">maxend</a> can be undefined. To use such an attribute in a comparison, you need to test for the validity first. E. g. to compare the end date of the <code>plan</code> scenario with the <code>maxend</code> value use <code>isvalid(plan.maxend) &amp; (plan.end &gt; plan.maxend)</code>. The <code>&amp;</code> and <code>|</code> operators are lazy. If the result is already known after evaluation of the first operand, the second operand will not be evaluated any more.</p>
46
46
  </div></td>
47
47
  </tr>
48
48
  <tr align="left">
@@ -81,6 +81,6 @@ taskreport "Overruns" {
81
81
  </tr></table>
82
82
  <hr/>
83
83
  <br/>
84
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
84
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
85
85
  </body>
86
86
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>logicalflagexpression</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>A logical flag expression is a combination of operands and mathematical operations. The final result of a logical expression is always true or false. Logical expressions are used the reduce the properties in a report to a certain subset or to select alternatives for the cell content of a table. When used with attributes like <a href="hidejournalentry.html">hidejournalentry</a> the logical expression evaluates to true for a certain property, this property is hidden or rolled-up in the report.</p>
42
+ <p>A logical flag expression is a combination of operands and mathematical operations. The final result of a logical expression is always true or false. Logical expressions are used the reduce the properties in a report to a certain subset or to select alternatives for the cell content of a table. When the logical expression is used with attributes like <a href="hidejournalentry.html">hidejournalentry</a> and evaluates to true for a certain property, this property is hidden or rolled-up in the report.</p>
43
43
  <p>Operands must be previously declared flags or another logical expression. When you combine logical operations to a more complex expression, the operators are evaluated from left to right. <b>a | b &amp; c</b> is identical to <b>(a | b) &amp; c</b>. It's highly recommended that you always use brackets to control the evaluation sequence. Currently, TaskJuggler does not support the concept of operator precedence or right-left associativity. This may change in the future.</p>
44
44
  </div></td>
45
45
  </tr>
@@ -50,7 +50,7 @@
50
50
  <tr align="left">
51
51
  <td class="tag" rowspan="3">Arguments</td>
52
52
  <td class="descr">operand</td>
53
- <td class="descr"><div>An operand is a declared flag. An operand can be a negated operand by prefixing a ~ charater or it can be another logical expression enclosed in braces.</div></td>
53
+ <td class="descr"><div>An operand is a declared flag. An operand can be a negated operand by prefixing a ~ character or it can be another logical expression enclosed in braces.</div></td>
54
54
  </tr>
55
55
  <tr align="left">
56
56
  <td class="descr">|</td>
@@ -79,6 +79,6 @@
79
79
  </tr></table>
80
80
  <hr/>
81
81
  <br/>
82
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
82
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
83
83
  </body>
84
84
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>macro</title>
@@ -46,8 +46,8 @@
46
46
  <p>Macros may have arguments. Arguments are accessed with special macros with numbers as names. The number specifies the index of the argument.</p>
47
47
  <div codesection="1"><pre codesection="1">macro FOO [ This ${1} text ]
48
48
  </pre></div>
49
- <p>will expand to <code>This stupid text</code> if called as <code>${FOO "stupid"}</code>. Macros may call other macros. All macro arguments must be enclosed by double quotes. In case the argument contains a double quote, it must be escaped by a slash (<code>/</code>).</p>
50
- <p>User defined macro IDs must have at least one uppercase letter as all lowercase letter IDs are reserved for built-in macros.</p>
49
+ <p>will expand to <code>This stupid text</code> if called as <code>${FOO "stupid"}</code>. Macros may call other macros. All macro arguments must be enclosed by double quotes. In case the argument contains a double quote, it must be escaped by a backslash (<code>\</code>).</p>
50
+ <p>User defined macro IDs should start with one uppercase letter as all lowercase letter IDs are reserved for built-in macros.</p>
51
51
  <p>To terminate the macro definition, the <code>]</code> must be the last character in the line. If there are any other characters trailing it (even spaces or comments) the <code>]</code> will not be considered the end of the macro definition.</p>
52
52
  <p>In macro calls the macro names can be prefixed by a question mark. In this case the macro will expand to nothing if the macro is not defined. Otherwise the undefined macro would be flagged with an error message.</p>
53
53
  <p>The macro call</p>
@@ -100,6 +100,6 @@ task t2 "Task2" {
100
100
  </tr></table>
101
101
  <hr/>
102
102
  <br/>
103
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
103
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
104
104
  </body>
105
105
  </html>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <!-- This file has been generated by tj3man v3.6.0 -->
2
+ <!-- This file has been generated by tj3man v3.7.1 -->
3
3
  <html lang="en" xml:lang="en">
4
4
  <head>
5
5
  <title>managers</title>
@@ -107,6 +107,6 @@ resourcereport "Managers" {
107
107
  </tr></table>
108
108
  <hr/>
109
109
  <br/>
110
- <div align="center" style="font-size:10px;">Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 by Chris Schlaeger &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
110
+ <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 &lt;cs@taskjuggler.org&gt;.<a href="http://www.taskjuggler.org">TaskJuggler</a> is a trademark of Chris Schlaeger.</div>
111
111
  </body>
112
112
  </html>