timr 0.3.0 → 0.4.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.
Files changed (106) hide show
  1. checksums.yaml +4 -4
  2. data/.ackrc +9 -0
  3. data/.editorconfig +1 -0
  4. data/.env.example +7 -0
  5. data/.github/CONTRIBUTING.md +32 -0
  6. data/.github/ISSUE_TEMPLATE.md +13 -0
  7. data/.gitignore +8 -2
  8. data/.rdoc_options +21 -0
  9. data/.travis.yml +10 -7
  10. data/Gemfile +8 -0
  11. data/README.md +216 -3
  12. data/bin/.gitignore +2 -0
  13. data/bin/README.md +17 -0
  14. data/bin/build.sh +14 -0
  15. data/bin/build_api.sh +14 -0
  16. data/bin/build_coverage.sh +23 -0
  17. data/bin/build_info.sh +27 -0
  18. data/bin/build_man.sh +41 -0
  19. data/bin/clean.sh +14 -0
  20. data/bin/dev_setup.sh +19 -0
  21. data/bin/install.sh +49 -0
  22. data/bin/publish +38 -0
  23. data/bin/release.sh +35 -0
  24. data/bin/test.sh +19 -0
  25. data/bin/timr +20 -40
  26. data/bin/timr_bash_completion.sh +337 -0
  27. data/bin/uninstall.sh +24 -0
  28. data/lib/timr.rb +36 -8
  29. data/lib/timr/command/basic_command.rb +170 -0
  30. data/lib/timr/command/continue_command.rb +86 -0
  31. data/lib/timr/command/help_command.rb +137 -0
  32. data/lib/timr/command/log_command.rb +297 -0
  33. data/lib/timr/command/pause_command.rb +89 -0
  34. data/lib/timr/command/pop_command.rb +176 -0
  35. data/lib/timr/command/push_command.rb +141 -0
  36. data/lib/timr/command/report_command.rb +689 -0
  37. data/lib/timr/command/start_command.rb +172 -0
  38. data/lib/timr/command/status_command.rb +198 -0
  39. data/lib/timr/command/stop_command.rb +127 -0
  40. data/lib/timr/command/task_command.rb +318 -0
  41. data/lib/timr/command/track_command.rb +381 -0
  42. data/lib/timr/command/version_command.rb +18 -0
  43. data/lib/timr/duration.rb +159 -0
  44. data/lib/timr/exception/timr_error.rb +113 -0
  45. data/lib/timr/ext/time.rb +12 -0
  46. data/lib/timr/helper/datetime_helper.rb +128 -0
  47. data/lib/timr/helper/terminal_helper.rb +58 -0
  48. data/lib/timr/helper/translation_helper.rb +45 -0
  49. data/lib/timr/model/basic_model.rb +287 -0
  50. data/lib/timr/model/config.rb +48 -0
  51. data/lib/timr/model/foreign_id_db.rb +84 -0
  52. data/lib/timr/model/stack.rb +161 -0
  53. data/lib/timr/model/task.rb +1039 -0
  54. data/lib/timr/model/track.rb +589 -0
  55. data/lib/timr/progressbar.rb +41 -0
  56. data/lib/timr/simple_opt_parser.rb +230 -0
  57. data/lib/timr/status.rb +70 -0
  58. data/lib/timr/table.rb +88 -0
  59. data/lib/timr/timr.rb +500 -558
  60. data/lib/timr/version.rb +4 -15
  61. data/man/.gitignore +2 -0
  62. data/man/_footer +3 -0
  63. data/man/timr-continue.1 +48 -0
  64. data/man/timr-continue.1.ronn +39 -0
  65. data/man/timr-ftime.7 +77 -0
  66. data/man/timr-ftime.7.ronn +57 -0
  67. data/man/timr-log.1 +109 -0
  68. data/man/timr-log.1.ronn +87 -0
  69. data/man/timr-pause.1 +56 -0
  70. data/man/timr-pause.1.ronn +45 -0
  71. data/man/timr-pop.1 +66 -0
  72. data/man/timr-pop.1.ronn +53 -0
  73. data/man/timr-push.1 +25 -0
  74. data/man/timr-push.1.ronn +20 -0
  75. data/man/timr-report.1 +228 -0
  76. data/man/timr-report.1.ronn +193 -0
  77. data/man/timr-start.1 +100 -0
  78. data/man/timr-start.1.ronn +82 -0
  79. data/man/timr-status.1 +53 -0
  80. data/man/timr-status.1.ronn +42 -0
  81. data/man/timr-stop.1 +75 -0
  82. data/man/timr-stop.1.ronn +60 -0
  83. data/man/timr-task.1 +147 -0
  84. data/man/timr-task.1.ronn +115 -0
  85. data/man/timr-track.1 +109 -0
  86. data/man/timr-track.1.ronn +89 -0
  87. data/man/timr.1 +119 -0
  88. data/man/timr.1.ronn +68 -0
  89. data/timr.gemspec +18 -3
  90. data/timr.sublime-project +20 -1
  91. metadata +142 -23
  92. data/Makefile +0 -12
  93. data/Makefile.common +0 -56
  94. data/lib/timr/stack.rb +0 -81
  95. data/lib/timr/task.rb +0 -258
  96. data/lib/timr/track.rb +0 -167
  97. data/lib/timr/window.rb +0 -259
  98. data/lib/timr/window_help.rb +0 -41
  99. data/lib/timr/window_tasks.rb +0 -30
  100. data/lib/timr/window_test.rb +0 -20
  101. data/lib/timr/window_timeline.rb +0 -33
  102. data/tests/tc_stack.rb +0 -121
  103. data/tests/tc_task.rb +0 -190
  104. data/tests/tc_track.rb +0 -144
  105. data/tests/tc_window.rb +0 -428
  106. data/tests/ts_all.rb +0 -6
data/man/timr-pause.1 ADDED
@@ -0,0 +1,56 @@
1
+ .\" generated with Ronn/v0.7.3
2
+ .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
+ .
4
+ .TH "TIMR\-PAUSE" "1" "April 2017" "FOX21.at" "Timr Manual"
5
+ .
6
+ .SH "NAME"
7
+ \fBtimr\-pause\fR \- Pause the current running Track\.
8
+ .
9
+ .SH "SYNOPSIS"
10
+ timr pause [\fIoptions\fR]
11
+ .
12
+ .SH "DESCRIPTION"
13
+ Pause the current running Track\. To continue the current Track (Top Track) run \fBtimr continue\fR\. See also timr\-continue(1)\.
14
+ .
15
+ .SH "TRACK OPTIONS"
16
+ .
17
+ .TP
18
+ \-\-ed, \-\-end\-date \fIdate\fR
19
+ End Date\. See timr\-ftime(7)\.
20
+ .
21
+ .TP
22
+ \-\-et, \-\-end\-time \fItime\fR
23
+ End Time\. See timr\-ftime(7)\.
24
+ .
25
+ .TP
26
+ \-d, \-\-date \fIdate\fR
27
+ \-\-end\-date alias\.
28
+ .
29
+ .TP
30
+ \-t, \-\-time \fItime\fR
31
+ \-\-end\-time alias\.
32
+ .
33
+ .SH "GENERAL OPTIONS"
34
+ .
35
+ .TP
36
+ \-h, \-\-help
37
+ Displays the help page\.
38
+ .
39
+ .SH "EXAMPLES"
40
+ .
41
+ .nf
42
+
43
+ timr pause
44
+ timr pause \-\-time 10:30
45
+ timr pause \-\-date 2017\-01\-02 \-\-time 10:30
46
+ .
47
+ .fi
48
+ .
49
+ .SH "API REFERENCE"
50
+ \fIhttps://timr\.fox21\.at/api/TheFox/Timr/Command/PauseCommand\.html\fR
51
+ .
52
+ .SH "SEE ALSO"
53
+ timr\-continue(1), timr\-ftime(7)
54
+ .
55
+ .SH "TIMR"
56
+ This is part of timr(1)\.
@@ -0,0 +1,45 @@
1
+ timr-pause(1) -- Pause the current running Track.
2
+ ===
3
+
4
+ ## SYNOPSIS
5
+
6
+ timr pause [<options>]
7
+
8
+ ## DESCRIPTION
9
+
10
+ Pause the current running Track. To continue the current Track (Top Track) run `timr continue`. See also timr-continue(1).
11
+
12
+ ## TRACK OPTIONS
13
+
14
+ * --ed, --end-date <date>:
15
+ End Date. See timr-ftime(7).
16
+
17
+ * --et, --end-time <time>:
18
+ End Time. See timr-ftime(7).
19
+
20
+ * -d, --date <date>:
21
+ --end-date alias.
22
+
23
+ * -t, --time <time>:
24
+ --end-time alias.
25
+
26
+ ## GENERAL OPTIONS
27
+
28
+ * -h, --help:
29
+ Displays the help page.
30
+
31
+ ## EXAMPLES
32
+
33
+ ```
34
+ timr pause
35
+ timr pause --time 10:30
36
+ timr pause --date 2017-01-02 --time 10:30
37
+ ```
38
+
39
+ ## API REFERENCE
40
+
41
+ <https://timr.fox21.at/api/TheFox/Timr/Command/PauseCommand.html>
42
+
43
+ ## SEE ALSO
44
+
45
+ timr-continue(1), timr-ftime(7)
data/man/timr-pop.1 ADDED
@@ -0,0 +1,66 @@
1
+ .\" generated with Ronn/v0.7.3
2
+ .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
+ .
4
+ .TH "TIMR\-POP" "1" "April 2017" "FOX21.at" "Timr Manual"
5
+ .
6
+ .SH "NAME"
7
+ \fBtimr\-pop\fR \- Pop current Track from the Stack\.
8
+ .
9
+ .SH "SYNOPSIS"
10
+ timr pop [\fIoptions\fR]
11
+ .
12
+ .SH "DESCRIPTION"
13
+ Stop and pop the current running Track from the Stack\. Also \fBtimr stop\fR removes the current Track from the Stack\.
14
+ .
15
+ .SH "TRACK OPTIONS"
16
+ .
17
+ .TP
18
+ \-\-sd, \-\-start\-date \fIdate\fR
19
+ Start Date for the next underlying Track (continue)\. See timr\-ftime(7)\.
20
+ .
21
+ .TP
22
+ \-\-st, \-\-start\-time \fItime\fR
23
+ Start Time for the next underlying Track (continue)\. See timr\-ftime(7)\.
24
+ .
25
+ .TP
26
+ \-\-ed, \-\-end\-date \fIdate\fR
27
+ End Date for the current running Track (pop)\. See timr\-ftime(7)\.
28
+ .
29
+ .TP
30
+ \-\-et, \-\-end\-time \fItime\fR
31
+ End Time for the current running Track (pop)\. See timr\-ftime(7)\.
32
+ .
33
+ .TP
34
+ \-d, \-\-date \fIdate\fR
35
+ Alias for \fB\-\-end\-date <date> \-\-start\-date <date>\fR\.
36
+ .
37
+ .TP
38
+ \-t, \-\-time \fItime\fR
39
+ Alias for \fB\-\-end\-time <time> \-\-start\-time <time>\fR\.
40
+ .
41
+ .SH "GENERAL OPTIONS"
42
+ .
43
+ .TP
44
+ \-h, \-\-help
45
+ Displays the help page\.
46
+ .
47
+ .SH "EXAMPLES"
48
+ .
49
+ .nf
50
+
51
+ timr pop
52
+ timr pop \-\-time 11:00
53
+ timr pop \-\-date 2017\-01\-02 \-\-time 11:00
54
+ timr pop \-\-end\-date 2017\-01\-02 \-\-end\-time 17:00 \e
55
+ \-\-start\-date 2017\-01\-03 \-\-start\-time 10:00
56
+ .
57
+ .fi
58
+ .
59
+ .SH "API REFERENCE"
60
+ \fIhttps://timr\.fox21\.at/api/TheFox/Timr/Command/PopCommand\.html\fR
61
+ .
62
+ .SH "SEE ALSO"
63
+ timr\-push(1), timr\-stop(1), timr\-ftime(7)
64
+ .
65
+ .SH "TIMR"
66
+ This is part of timr(1)\.
@@ -0,0 +1,53 @@
1
+ timr-pop(1) -- Pop current Track from the Stack.
2
+ ===
3
+
4
+ ## SYNOPSIS
5
+
6
+ timr pop [<options>]
7
+
8
+ ## DESCRIPTION
9
+
10
+ Stop and pop the current running Track from the Stack. Also `timr stop` removes the current Track from the Stack.
11
+
12
+ ## TRACK OPTIONS
13
+
14
+ * --sd, --start-date <date>:
15
+ Start Date for the next underlying Track (continue). See timr-ftime(7).
16
+
17
+ * --st, --start-time <time>:
18
+ Start Time for the next underlying Track (continue). See timr-ftime(7).
19
+
20
+ * --ed, --end-date <date>:
21
+ End Date for the current running Track (pop). See timr-ftime(7).
22
+
23
+ * --et, --end-time <time>:
24
+ End Time for the current running Track (pop). See timr-ftime(7).
25
+
26
+ * -d, --date <date>:
27
+ Alias for `--end-date <date> --start-date <date>`.
28
+
29
+ * -t, --time <time>:
30
+ Alias for `--end-time <time> --start-time <time>`.
31
+
32
+ ## GENERAL OPTIONS
33
+
34
+ * -h, --help:
35
+ Displays the help page.
36
+
37
+ ## EXAMPLES
38
+
39
+ ```
40
+ timr pop
41
+ timr pop --time 11:00
42
+ timr pop --date 2017-01-02 --time 11:00
43
+ timr pop --end-date 2017-01-02 --end-time 17:00 \
44
+ --start-date 2017-01-03 --start-time 10:00
45
+ ```
46
+
47
+ ## API REFERENCE
48
+
49
+ <https://timr.fox21.at/api/TheFox/Timr/Command/PopCommand.html>
50
+
51
+ ## SEE ALSO
52
+
53
+ timr-push(1), timr-stop(1), timr-ftime(7)
data/man/timr-push.1 ADDED
@@ -0,0 +1,25 @@
1
+ .\" generated with Ronn/v0.7.3
2
+ .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
+ .
4
+ .TH "TIMR\-PUSH" "1" "April 2017" "FOX21.at" "Timr Manual"
5
+ .
6
+ .SH "NAME"
7
+ \fBtimr\-push\fR \- Push new Track to the Stack\.
8
+ .
9
+ .SH "SYNOPSIS"
10
+ timr push [\fIoptions\fR] [\fIid\fR|\fItask_id\fR [\fItrack_id\fR]]
11
+ .
12
+ .SH "DESCRIPTION"
13
+ Sometimes you need to work on a Task only temporary\. You want to track the time for this as well\. For example fixing a bug\. When you fixed the bug you want to continue your actual work\. Here comes \fBtimr push\fR and timr\-pop(1) into the game\. It modifies the Stack\. When you push a new Track the below Track will be paused and hold on the Stack\. On pop the current Track (Top Track) will be stopped and the next below will continue\.
14
+ .
15
+ .P
16
+ Options and Arguments are the same as for timr\-start(1)\.
17
+ .
18
+ .SH "API REFERENCE"
19
+ \fIhttps://timr\.fox21\.at/api/TheFox/Timr/Command/PushCommand\.html\fR
20
+ .
21
+ .SH "SEE ALSO"
22
+ timr\-pop(1), timr\-start(1), timr\-stop(1)
23
+ .
24
+ .SH "TIMR"
25
+ This is part of timr(1)\.
@@ -0,0 +1,20 @@
1
+ timr-push(1) -- Push new Track to the Stack.
2
+ ===
3
+
4
+ ## SYNOPSIS
5
+
6
+ timr push [<options>] [<id>|<task_id> [<track_id>]]
7
+
8
+ ## DESCRIPTION
9
+
10
+ Sometimes you need to work on a Task only temporary. You want to track the time for this as well. For example fixing a bug. When you fixed the bug you want to continue your actual work. Here comes `timr push` and timr-pop(1) into the game. It modifies the Stack. When you push a new Track the below Track will be paused and hold on the Stack. On pop the current Track (Top Track) will be stopped and the next below will continue.
11
+
12
+ Options and Arguments are the same as for timr-start(1).
13
+
14
+ ## API REFERENCE
15
+
16
+ <https://timr.fox21.at/api/TheFox/Timr/Command/PushCommand.html>
17
+
18
+ ## SEE ALSO
19
+
20
+ timr-pop(1), timr-start(1), timr-stop(1)
data/man/timr-report.1 ADDED
@@ -0,0 +1,228 @@
1
+ .\" generated with Ronn/v0.7.3
2
+ .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
+ .
4
+ .TH "TIMR\-REPORT" "1" "April 2017" "FOX21.at" "Timr Manual"
5
+ .
6
+ .SH "NAME"
7
+ \fBtimr\-report\fR \- Export Tasks and Tracks\.
8
+ .
9
+ .SH "SYNOPSIS"
10
+ timr report [\fIoptions\fR]
11
+ .
12
+ .SH "DESCRIPTION"
13
+ This command is designed to print a list of Tasks or Tracks to STDOUT and to export Tasks and Tracks as CSV files\. While this command is similar to timr\-log(1), the main focus is exporting Tasks/Tracks as CSV file for further processing\.
14
+ .
15
+ .SH "OPTIONS"
16
+ .
17
+ .TP
18
+ \-d, \-\-day \fIdate\fR
19
+ A single day from 00:00 to 23:59\. See timr\-ftime(7)\.
20
+ .
21
+ .TP
22
+ \-m, \-\-month \fI[YYYY\-]MM\fR
23
+ A single month from 01 to 31\.
24
+ .
25
+ .TP
26
+ \-y, \-\-year [\fIYYYY\fR]
27
+ A single year from 01\-01 to 12\-31\.
28
+ .
29
+ .TP
30
+ \-a, \-\-all
31
+ Export all\.
32
+ .
33
+ .TP
34
+ \-\-tasks
35
+ Export Tasks (default)
36
+ .
37
+ .TP
38
+ \-\-tracks
39
+ Export Tracks
40
+ .
41
+ .TP
42
+ \-\-csv \fIpath\fR
43
+ Export as CSV file\. Use \fB\-\-csv \-\fR to use STDOUT\.
44
+ .
45
+ .TP
46
+ \-\-force
47
+ Force overwrite file\.
48
+ .
49
+ .TP
50
+ \-h, \-\-help
51
+ Displays the help page\.
52
+ .
53
+ .SH "EXAMPLES"
54
+ .
55
+ .nf
56
+
57
+ timr report
58
+ timr report \-\-day 2017\-01\-02
59
+ timr report \-\-day 2017\-01\-02 \-\-csv timr_report_20170102\.csv
60
+ timr report \-\-day 2017\-01\-02 \-\-csv timr_report_20170102\.csv \-\-tracks
61
+ timr report \-\-month 2017\-01 \-\-csv timr_report_201701\.csv
62
+ timr report \-\-year 2017 \-\-csv timr_report_2017\.csv
63
+ timr report \-\-all \-\-csv timr_report_all\.csv
64
+ .
65
+ .fi
66
+ .
67
+ .SH "TASK TABLE COLUMNS"
68
+ .
69
+ .TP
70
+ START
71
+ Task Start Date
72
+ .
73
+ .TP
74
+ END
75
+ Task End Date
76
+ .
77
+ .TP
78
+ DUR
79
+ Total Task Duration
80
+ .
81
+ .TP
82
+ UNB
83
+ Unbilled Task Duration
84
+ .
85
+ .TP
86
+ TASK
87
+ Task ID and Name\.
88
+ .
89
+ .SH "TRACK TABLE COLUMNS"
90
+ .
91
+ .TP
92
+ START
93
+ Task Start Date
94
+ .
95
+ .TP
96
+ END
97
+ Task End Date
98
+ .
99
+ .TP
100
+ DUR
101
+ Task Duration
102
+ .
103
+ .TP
104
+ TASK
105
+ Task ID
106
+ .
107
+ .TP
108
+ TRACK
109
+ Track ID and Name\.
110
+ .
111
+ .SH "TASK CSV COLUMNS"
112
+ .
113
+ .IP "\(bu" 4
114
+ ROW_NO: Sequential CSV file row number\.
115
+ .
116
+ .IP "\(bu" 4
117
+ TASK_ID: Task ID
118
+ .
119
+ .IP "\(bu" 4
120
+ TASK_FOREIGN_ID: Foreign Task ID
121
+ .
122
+ .IP "\(bu" 4
123
+ TASK_NAME: Task Name
124
+ .
125
+ .IP "\(bu" 4
126
+ TASK_BEGIN_DATETIME: Begin DateTime of the first Track\.
127
+ .
128
+ .IP "\(bu" 4
129
+ TASK_END_DATETIME: End DateTime of the last Track\.
130
+ .
131
+ .IP "\(bu" 4
132
+ TASK_DURATION_HUMAN: Task Duration in human format\. See timr\-ftime(7)\.
133
+ .
134
+ .IP "\(bu" 4
135
+ TASK_DURATION_SECONDS: Task Duration in seconds\.
136
+ .
137
+ .IP "\(bu" 4
138
+ TASK_ESTIMATION_HUMAN
139
+ .
140
+ .IP "\(bu" 4
141
+ TASK_ESTIMATION_SECONDS
142
+ .
143
+ .IP "\(bu" 4
144
+ TASK_REMAINING_TIME_HUMAN
145
+ .
146
+ .IP "\(bu" 4
147
+ TASK_REMAINING_TIME_SECONDS
148
+ .
149
+ .IP "\(bu" 4
150
+ TASK_BILLED_DURATION_HUMAN: Billed Task Duration in human format\. See timr\-ftime(7)\.
151
+ .
152
+ .IP "\(bu" 4
153
+ TASK_BILLED_DURATION_SECONDS: Billed Task Duration in seconds\.
154
+ .
155
+ .IP "\(bu" 4
156
+ TASK_UNBILLED_DURATION_HUMAN: Unbilled Task Duration in human format\. See timr\-ftime(7)\.
157
+ .
158
+ .IP "\(bu" 4
159
+ TASK_UNBILLED_DURATION_SECONDS: Unbilled Task Duration in seconds\.
160
+ .
161
+ .IP "\(bu" 4
162
+ TASK_TRACK_COUNT: Task Track count\.
163
+ .
164
+ .IP "\(bu" 4
165
+ TASK_BILLED_TRACK_COUNT: Task Billed Track count\.
166
+ .
167
+ .IP "\(bu" 4
168
+ TASK_UNBILLED_TRACK_COUNT: Task Unbilled Track count\.
169
+ .
170
+ .IP "" 0
171
+ .
172
+ .SH "TRACK CSV COLUMNS"
173
+ .
174
+ .IP "\(bu" 4
175
+ ROW_NO: Sequential CSV file row number\.
176
+ .
177
+ .IP "\(bu" 4
178
+ TASK_ID: Task ID
179
+ .
180
+ .IP "\(bu" 4
181
+ TASK_NAME: Task Name
182
+ .
183
+ .IP "\(bu" 4
184
+ TRACK_ID: Track ID
185
+ .
186
+ .IP "\(bu" 4
187
+ TRACK_TITLE: Track Title
188
+ .
189
+ .IP "\(bu" 4
190
+ TRACK_BEGIN_DATETIME: Begin DateTime
191
+ .
192
+ .IP "\(bu" 4
193
+ TRACK_END_DATETIME: End DateTime
194
+ .
195
+ .IP "\(bu" 4
196
+ TRACK_DURATION_HUMAN: Track Duration in human format\. See timr\-ftime(7)\.
197
+ .
198
+ .IP "\(bu" 4
199
+ TRACK_DURATION_SECONDS: Track Duration in seconds\.
200
+ .
201
+ .IP "\(bu" 4
202
+ TRACK_BILLED_DURATION_HUMAN: Billed Track Duration in human format\. See timr\-ftime(7)\.
203
+ .
204
+ .IP "\(bu" 4
205
+ TRACK_BILLED_DURATION_SECONDS: Billed Track Duration in seconds\.
206
+ .
207
+ .IP "\(bu" 4
208
+ TRACK_UNBILLED_DURATION_HUMAN: Unbilled Track Duration in human format\. See timr\-ftime(7)\.
209
+ .
210
+ .IP "\(bu" 4
211
+ TRACK_UNBILLED_DURATION_SECONDS: Unbilled Track Duration in seconds\.
212
+ .
213
+ .IP "\(bu" 4
214
+ TRACK_IS_BILLED
215
+ .
216
+ .IP "" 0
217
+ .
218
+ .P
219
+ The last row in CSV files is always the total sum\.
220
+ .
221
+ .SH "API REFERENCE"
222
+ \fIhttps://timr\.fox21\.at/api/TheFox/Timr/Command/ReportCommand\.html\fR
223
+ .
224
+ .SH "SEE ALSO"
225
+ timr\-log(1), timr\-ftime(7)
226
+ .
227
+ .SH "TIMR"
228
+ This is part of timr(1)\.