backlogops-gui 0.1__tar.gz
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.
- backlogops_gui-0.1/LICENSE.txt +22 -0
- backlogops_gui-0.1/PKG-INFO +259 -0
- backlogops_gui-0.1/README_pypi.md +229 -0
- backlogops_gui-0.1/backlogops_gui.egg-info/PKG-INFO +259 -0
- backlogops_gui-0.1/backlogops_gui.egg-info/SOURCES.txt +21 -0
- backlogops_gui-0.1/backlogops_gui.egg-info/dependency_links.txt +1 -0
- backlogops_gui-0.1/backlogops_gui.egg-info/entry_points.txt +2 -0
- backlogops_gui-0.1/backlogops_gui.egg-info/requires.txt +2 -0
- backlogops_gui-0.1/backlogops_gui.egg-info/top_level.txt +1 -0
- backlogops_gui-0.1/pyproject.toml +38 -0
- backlogops_gui-0.1/setup.cfg +4 -0
- backlogops_gui-0.1/setup.py +25 -0
- backlogops_gui-0.1/src/backlogops_gui/__init__.py +5 -0
- backlogops_gui-0.1/src/backlogops_gui/__main__.py +11 -0
- backlogops_gui-0.1/src/backlogops_gui/application.py +313 -0
- backlogops_gui-0.1/src/backlogops_gui/backlog_io.py +68 -0
- backlogops_gui-0.1/src/backlogops_gui/backlog_window.py +435 -0
- backlogops_gui-0.1/src/backlogops_gui/gui_wizard.py +237 -0
- backlogops_gui-0.1/src/backlogops_gui/io_dialogs.py +491 -0
- backlogops_gui-0.1/src/backlogops_gui/log_buffer.py +50 -0
- backlogops_gui-0.1/src/backlogops_gui/py.typed +0 -0
- backlogops_gui-0.1/src/backlogops_gui/table_view.py +165 -0
- backlogops_gui-0.1/src/backlogops_gui/tcltk_version.py +63 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Tom Björkholm
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: backlogops-gui
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: Graphical user interface for backlog operations.
|
|
5
|
+
Author: Tom Björkholm
|
|
6
|
+
Author-email: Tom Björkholm <klausuler_linnet0q@icloud.com>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://bitbucket.org/tom-bjorkholm/backlog-ops
|
|
9
|
+
Project-URL: Source code, https://bitbucket.org/tom-bjorkholm/backlog-ops
|
|
10
|
+
Project-URL: Documentation, https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/
|
|
11
|
+
Keywords: backlog,release planning,agile,scrum,scheduling,roadmap,project management,product owner,product management
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Development Status :: 3 - Alpha
|
|
18
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
19
|
+
Classifier: Intended Audience :: Information Technology
|
|
20
|
+
Classifier: Topic :: Office/Business :: Scheduling
|
|
21
|
+
Requires-Python: >=3.12
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE.txt
|
|
24
|
+
Requires-Dist: backlogops>=0.1
|
|
25
|
+
Requires-Dist: argcomplete>=3.6.3
|
|
26
|
+
Dynamic: author
|
|
27
|
+
Dynamic: license-file
|
|
28
|
+
Dynamic: requires-dist
|
|
29
|
+
Dynamic: requires-python
|
|
30
|
+
|
|
31
|
+
# backlogops-gui
|
|
32
|
+
|
|
33
|
+
There are 3 related packages for backlog operations:
|
|
34
|
+
|
|
35
|
+
- backlogops: a collection of library functions to manipulate backlogs
|
|
36
|
+
|
|
37
|
+
- backlogops-cli: command line interface to use the functions in the library.
|
|
38
|
+
This is just a thin wrapper around the library functions. It serves a dual
|
|
39
|
+
purpose as both an example of how to use the library and as a tool for the
|
|
40
|
+
user to use the library.
|
|
41
|
+
|
|
42
|
+
- backlogops-gui: graphical user interface to use the functions in the library.
|
|
43
|
+
It is based on TkInter. The ambition is to keep it as a thin wrapper around
|
|
44
|
+
the library.
|
|
45
|
+
|
|
46
|
+
## Available functionality
|
|
47
|
+
|
|
48
|
+
The following functionality is available in all 3 packages:
|
|
49
|
+
|
|
50
|
+
- Reading backlog and releases from file types that TableIO supports reading
|
|
51
|
+
from (Currently CSV, Excel, and ODS).
|
|
52
|
+
|
|
53
|
+
- Writing backlog and releases to file types that TableIO supports writing to
|
|
54
|
+
(Currently CSV, Excel, ODS and 9 other file formats).
|
|
55
|
+
|
|
56
|
+
- File format is detected from the file extension, but may be overridden.
|
|
57
|
+
|
|
58
|
+
- Adjust release content to fit the planned release dates.
|
|
59
|
+
|
|
60
|
+
- Create a demonstration backlog and releases (for exploring the features).
|
|
61
|
+
|
|
62
|
+
- Estimate ready date for the backlog items based on available teams, team
|
|
63
|
+
velocity, vacation dates, periods with half time work, etc.
|
|
64
|
+
|
|
65
|
+
- Extract backlog keys at given backlog item levels.
|
|
66
|
+
|
|
67
|
+
- Reorder the backlog so that the dependencies are satisfied.
|
|
68
|
+
|
|
69
|
+
- Reorder the backlog so that items identified by keys in a list come first. If
|
|
70
|
+
the key is at a higher level it will bring all items it is a parent of in
|
|
71
|
+
front of it (recursively).
|
|
72
|
+
|
|
73
|
+
- Set planned release dates from the estimated release dates.
|
|
74
|
+
|
|
75
|
+
- Calculate the release dates from the backlog items estimated ready dates, with
|
|
76
|
+
a configurable buffer time.
|
|
77
|
+
|
|
78
|
+
- Validate the backlog and releases for consistency.
|
|
79
|
+
|
|
80
|
+
- A wizard to create an available teams configuration.
|
|
81
|
+
|
|
82
|
+
## The operating model
|
|
83
|
+
|
|
84
|
+
The operating model that most of the functionality is designed for is that the
|
|
85
|
+
teams work off a single backlog in the order of the backlog. The backlog items
|
|
86
|
+
are ordered by priority and dependencies to allow the teams to work in the
|
|
87
|
+
backlog order. Each backlog item and each release may have a planned ready date,
|
|
88
|
+
that records what has been communicated to the customer. Each backlog item and
|
|
89
|
+
each release may have an estimated ready date, that is calculated from the
|
|
90
|
+
current backlog state, the team velocity, and what we know about the
|
|
91
|
+
availability of the team members.
|
|
92
|
+
|
|
93
|
+
## The backlog item fields
|
|
94
|
+
|
|
95
|
+
Each backlog item has the following fields that are used by the algorithms in
|
|
96
|
+
the library:
|
|
97
|
+
|
|
98
|
+
- key: The key of the backlog item. Required. Must be unique. Must not be empty,
|
|
99
|
+
must not contain whitespace and must not contain any of the characters , . ; :
|
|
100
|
+
( ) \[ \] \{ \}.
|
|
101
|
+
|
|
102
|
+
- level: The level of the backlog item. Required. Must be an integer.
|
|
103
|
+
|
|
104
|
+
- title: The title of the backlog item. Required.
|
|
105
|
+
|
|
106
|
+
- story_points: The story points of the backlog item. Required.
|
|
107
|
+
|
|
108
|
+
- status: The status of the backlog item. Required.
|
|
109
|
+
|
|
110
|
+
- parent_key: The key of the parent backlog item. Optional. Must exist as a key
|
|
111
|
+
in the backlog. Parent keys are used to build the hierarchy of the backlog.
|
|
112
|
+
The parent key must be at a higher level than the current item. Parent keys
|
|
113
|
+
introduce implicit dependencies between items: the current item cannot start
|
|
114
|
+
before the parent item starts, and the parent item cannot finish before all
|
|
115
|
+
its children have finished.
|
|
116
|
+
|
|
117
|
+
- release: The release of the backlog item. Optional. Follows the same character
|
|
118
|
+
rules as the key. Must not be empty string.
|
|
119
|
+
|
|
120
|
+
- team: The team responsible for the backlog item. Optional. Must not be empty
|
|
121
|
+
string. Must be a valid team name. If None the item can be done by any team.
|
|
122
|
+
If not None. the item can only be done by the specified team.
|
|
123
|
+
|
|
124
|
+
- depends_on_f2s: The list of keys of the backlog items that must have been
|
|
125
|
+
finished before the current item can start. May be empty.
|
|
126
|
+
|
|
127
|
+
- depends_on_f2f: The list of keys of the backlog items that must have been
|
|
128
|
+
finished before the current item can finish. May be empty.
|
|
129
|
+
|
|
130
|
+
- depends_on_s2s: The list of keys of the backlog items that must have been
|
|
131
|
+
started before the current item can start. May be empty.
|
|
132
|
+
|
|
133
|
+
- planned_ready_date: The planned ready date of the backlog item. The date that
|
|
134
|
+
is communicated to the customer. Optional.
|
|
135
|
+
|
|
136
|
+
- estimated_ready_date: The estimated ready date of the backlog item. Optional.
|
|
137
|
+
|
|
138
|
+
Additionally each backlog item can have any number of other fields.
|
|
139
|
+
|
|
140
|
+
## Installing backlogops-gui
|
|
141
|
+
|
|
142
|
+
### On macOS and Linux
|
|
143
|
+
|
|
144
|
+
To install backlogops-gui on macOS and Linux, run the following command:
|
|
145
|
+
|
|
146
|
+
````sh
|
|
147
|
+
pip3 install --upgrade backlogops-gui
|
|
148
|
+
````
|
|
149
|
+
|
|
150
|
+
### On Microsoft Windows
|
|
151
|
+
|
|
152
|
+
To install backlogops-gui on Microsoft Windows, run the following command:
|
|
153
|
+
|
|
154
|
+
````sh
|
|
155
|
+
pip install --upgrade backlogops-gui
|
|
156
|
+
````
|
|
157
|
+
|
|
158
|
+
## API documentation
|
|
159
|
+
|
|
160
|
+
For more detailed code documentation, see the API documentation:
|
|
161
|
+
|
|
162
|
+
- [Library public API](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_api.md)
|
|
163
|
+
|
|
164
|
+
- [Library protected API](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_api.md)
|
|
165
|
+
|
|
166
|
+
- [Library public CLI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_cli.md)
|
|
167
|
+
|
|
168
|
+
- [Library protected CLI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_cli.md)
|
|
169
|
+
|
|
170
|
+
- [Library public GUI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_gui.md)
|
|
171
|
+
|
|
172
|
+
- [Library protected GUI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_gui.md)
|
|
173
|
+
|
|
174
|
+
## Graphical user interface for backlog manipulation
|
|
175
|
+
|
|
176
|
+
Most of the functionality in the backlogops backlog operations library
|
|
177
|
+
is made available for GUI users in this GUI application.
|
|
178
|
+
|
|
179
|
+
### Tkinter
|
|
180
|
+
|
|
181
|
+
The Graphical user interface is based on
|
|
182
|
+
[Tkinter](https://docs.python.org/3/library/tkinter.html). Tkinter
|
|
183
|
+
is based on [Tcl/Tk](https://en.wikipedia.org/wiki/Tk_(software)).
|
|
184
|
+
|
|
185
|
+
For full functionality you need Tk version 9.0.2 or newer.
|
|
186
|
+
|
|
187
|
+
## First startup
|
|
188
|
+
|
|
189
|
+
Start the application on Linux or mac with command
|
|
190
|
+
````sh
|
|
191
|
+
python3 -m backlogops_gui
|
|
192
|
+
python3 -m backlogops_gui -c config_file.cfg
|
|
193
|
+
````
|
|
194
|
+
or on Microsoft Windows with command
|
|
195
|
+
````sh
|
|
196
|
+
python -m backlogops_gui
|
|
197
|
+
python -m backlogops_gui -c config_file.cfg
|
|
198
|
+
````
|
|
199
|
+
|
|
200
|
+
At first startup you do not have any configuration file yet,
|
|
201
|
+
so when you start the application it will start the configuration
|
|
202
|
+
wizard.
|
|
203
|
+
|
|
204
|
+
## Main window
|
|
205
|
+
|
|
206
|
+
The main window has some informative text, but the functionality
|
|
207
|
+
is in the menus.
|
|
208
|
+
|
|
209
|
+
- File
|
|
210
|
+
|
|
211
|
+
- Read backlog...: Read in a file with a backlog and list of releases.
|
|
212
|
+
A new backlog window will be opened with the read in backlog.
|
|
213
|
+
|
|
214
|
+
- New demo backlog: Create a demo backlog with some backlog items and
|
|
215
|
+
releases. A new backlog window will be opened with the demo backlog.
|
|
216
|
+
|
|
217
|
+
- Configuration
|
|
218
|
+
|
|
219
|
+
- Run teams wizard...: this lets you configure the teams that work on
|
|
220
|
+
the backlog and also other aspects like the dates the company is
|
|
221
|
+
closed for vacation, and preset configuration for the inputs or
|
|
222
|
+
outputs you want to use.
|
|
223
|
+
|
|
224
|
+
- Write configuration...: This lets you write the configuration you
|
|
225
|
+
have in application to a file.
|
|
226
|
+
|
|
227
|
+
## Backlog window
|
|
228
|
+
|
|
229
|
+
The backlog window shows 2 read-only tables: one with the backlog and
|
|
230
|
+
one with the list of releases. You will want to use the menus.
|
|
231
|
+
|
|
232
|
+
- Backlog
|
|
233
|
+
|
|
234
|
+
- Order by keys...
|
|
235
|
+
|
|
236
|
+
- Order by dependencies...
|
|
237
|
+
|
|
238
|
+
- Estimate ready date...
|
|
239
|
+
|
|
240
|
+
- Set planned date from estimated
|
|
241
|
+
|
|
242
|
+
- Adjust release content
|
|
243
|
+
|
|
244
|
+
- Adjust planned release dates...
|
|
245
|
+
|
|
246
|
+
- Extract keys...
|
|
247
|
+
|
|
248
|
+
- Save to file...
|
|
249
|
+
|
|
250
|
+
- Close
|
|
251
|
+
|
|
252
|
+
## Test summary
|
|
253
|
+
|
|
254
|
+
- Test result: 1066 passed in 16s
|
|
255
|
+
- No flake8 warnings.
|
|
256
|
+
- No mypy errors found.
|
|
257
|
+
- No python layout warnings.
|
|
258
|
+
- Built version(s): 0.1
|
|
259
|
+
- Build and test using Python 3.14.6
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
# backlogops-gui
|
|
2
|
+
|
|
3
|
+
There are 3 related packages for backlog operations:
|
|
4
|
+
|
|
5
|
+
- backlogops: a collection of library functions to manipulate backlogs
|
|
6
|
+
|
|
7
|
+
- backlogops-cli: command line interface to use the functions in the library.
|
|
8
|
+
This is just a thin wrapper around the library functions. It serves a dual
|
|
9
|
+
purpose as both an example of how to use the library and as a tool for the
|
|
10
|
+
user to use the library.
|
|
11
|
+
|
|
12
|
+
- backlogops-gui: graphical user interface to use the functions in the library.
|
|
13
|
+
It is based on TkInter. The ambition is to keep it as a thin wrapper around
|
|
14
|
+
the library.
|
|
15
|
+
|
|
16
|
+
## Available functionality
|
|
17
|
+
|
|
18
|
+
The following functionality is available in all 3 packages:
|
|
19
|
+
|
|
20
|
+
- Reading backlog and releases from file types that TableIO supports reading
|
|
21
|
+
from (Currently CSV, Excel, and ODS).
|
|
22
|
+
|
|
23
|
+
- Writing backlog and releases to file types that TableIO supports writing to
|
|
24
|
+
(Currently CSV, Excel, ODS and 9 other file formats).
|
|
25
|
+
|
|
26
|
+
- File format is detected from the file extension, but may be overridden.
|
|
27
|
+
|
|
28
|
+
- Adjust release content to fit the planned release dates.
|
|
29
|
+
|
|
30
|
+
- Create a demonstration backlog and releases (for exploring the features).
|
|
31
|
+
|
|
32
|
+
- Estimate ready date for the backlog items based on available teams, team
|
|
33
|
+
velocity, vacation dates, periods with half time work, etc.
|
|
34
|
+
|
|
35
|
+
- Extract backlog keys at given backlog item levels.
|
|
36
|
+
|
|
37
|
+
- Reorder the backlog so that the dependencies are satisfied.
|
|
38
|
+
|
|
39
|
+
- Reorder the backlog so that items identified by keys in a list come first. If
|
|
40
|
+
the key is at a higher level it will bring all items it is a parent of in
|
|
41
|
+
front of it (recursively).
|
|
42
|
+
|
|
43
|
+
- Set planned release dates from the estimated release dates.
|
|
44
|
+
|
|
45
|
+
- Calculate the release dates from the backlog items estimated ready dates, with
|
|
46
|
+
a configurable buffer time.
|
|
47
|
+
|
|
48
|
+
- Validate the backlog and releases for consistency.
|
|
49
|
+
|
|
50
|
+
- A wizard to create an available teams configuration.
|
|
51
|
+
|
|
52
|
+
## The operating model
|
|
53
|
+
|
|
54
|
+
The operating model that most of the functionality is designed for is that the
|
|
55
|
+
teams work off a single backlog in the order of the backlog. The backlog items
|
|
56
|
+
are ordered by priority and dependencies to allow the teams to work in the
|
|
57
|
+
backlog order. Each backlog item and each release may have a planned ready date,
|
|
58
|
+
that records what has been communicated to the customer. Each backlog item and
|
|
59
|
+
each release may have an estimated ready date, that is calculated from the
|
|
60
|
+
current backlog state, the team velocity, and what we know about the
|
|
61
|
+
availability of the team members.
|
|
62
|
+
|
|
63
|
+
## The backlog item fields
|
|
64
|
+
|
|
65
|
+
Each backlog item has the following fields that are used by the algorithms in
|
|
66
|
+
the library:
|
|
67
|
+
|
|
68
|
+
- key: The key of the backlog item. Required. Must be unique. Must not be empty,
|
|
69
|
+
must not contain whitespace and must not contain any of the characters , . ; :
|
|
70
|
+
( ) \[ \] \{ \}.
|
|
71
|
+
|
|
72
|
+
- level: The level of the backlog item. Required. Must be an integer.
|
|
73
|
+
|
|
74
|
+
- title: The title of the backlog item. Required.
|
|
75
|
+
|
|
76
|
+
- story_points: The story points of the backlog item. Required.
|
|
77
|
+
|
|
78
|
+
- status: The status of the backlog item. Required.
|
|
79
|
+
|
|
80
|
+
- parent_key: The key of the parent backlog item. Optional. Must exist as a key
|
|
81
|
+
in the backlog. Parent keys are used to build the hierarchy of the backlog.
|
|
82
|
+
The parent key must be at a higher level than the current item. Parent keys
|
|
83
|
+
introduce implicit dependencies between items: the current item cannot start
|
|
84
|
+
before the parent item starts, and the parent item cannot finish before all
|
|
85
|
+
its children have finished.
|
|
86
|
+
|
|
87
|
+
- release: The release of the backlog item. Optional. Follows the same character
|
|
88
|
+
rules as the key. Must not be empty string.
|
|
89
|
+
|
|
90
|
+
- team: The team responsible for the backlog item. Optional. Must not be empty
|
|
91
|
+
string. Must be a valid team name. If None the item can be done by any team.
|
|
92
|
+
If not None. the item can only be done by the specified team.
|
|
93
|
+
|
|
94
|
+
- depends_on_f2s: The list of keys of the backlog items that must have been
|
|
95
|
+
finished before the current item can start. May be empty.
|
|
96
|
+
|
|
97
|
+
- depends_on_f2f: The list of keys of the backlog items that must have been
|
|
98
|
+
finished before the current item can finish. May be empty.
|
|
99
|
+
|
|
100
|
+
- depends_on_s2s: The list of keys of the backlog items that must have been
|
|
101
|
+
started before the current item can start. May be empty.
|
|
102
|
+
|
|
103
|
+
- planned_ready_date: The planned ready date of the backlog item. The date that
|
|
104
|
+
is communicated to the customer. Optional.
|
|
105
|
+
|
|
106
|
+
- estimated_ready_date: The estimated ready date of the backlog item. Optional.
|
|
107
|
+
|
|
108
|
+
Additionally each backlog item can have any number of other fields.
|
|
109
|
+
|
|
110
|
+
## Installing backlogops-gui
|
|
111
|
+
|
|
112
|
+
### On macOS and Linux
|
|
113
|
+
|
|
114
|
+
To install backlogops-gui on macOS and Linux, run the following command:
|
|
115
|
+
|
|
116
|
+
````sh
|
|
117
|
+
pip3 install --upgrade backlogops-gui
|
|
118
|
+
````
|
|
119
|
+
|
|
120
|
+
### On Microsoft Windows
|
|
121
|
+
|
|
122
|
+
To install backlogops-gui on Microsoft Windows, run the following command:
|
|
123
|
+
|
|
124
|
+
````sh
|
|
125
|
+
pip install --upgrade backlogops-gui
|
|
126
|
+
````
|
|
127
|
+
|
|
128
|
+
## API documentation
|
|
129
|
+
|
|
130
|
+
For more detailed code documentation, see the API documentation:
|
|
131
|
+
|
|
132
|
+
- [Library public API](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_api.md)
|
|
133
|
+
|
|
134
|
+
- [Library protected API](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_api.md)
|
|
135
|
+
|
|
136
|
+
- [Library public CLI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_cli.md)
|
|
137
|
+
|
|
138
|
+
- [Library protected CLI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_cli.md)
|
|
139
|
+
|
|
140
|
+
- [Library public GUI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_gui.md)
|
|
141
|
+
|
|
142
|
+
- [Library protected GUI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_gui.md)
|
|
143
|
+
|
|
144
|
+
## Graphical user interface for backlog manipulation
|
|
145
|
+
|
|
146
|
+
Most of the functionality in the backlogops backlog operations library
|
|
147
|
+
is made available for GUI users in this GUI application.
|
|
148
|
+
|
|
149
|
+
### Tkinter
|
|
150
|
+
|
|
151
|
+
The Graphical user interface is based on
|
|
152
|
+
[Tkinter](https://docs.python.org/3/library/tkinter.html). Tkinter
|
|
153
|
+
is based on [Tcl/Tk](https://en.wikipedia.org/wiki/Tk_(software)).
|
|
154
|
+
|
|
155
|
+
For full functionality you need Tk version 9.0.2 or newer.
|
|
156
|
+
|
|
157
|
+
## First startup
|
|
158
|
+
|
|
159
|
+
Start the application on Linux or mac with command
|
|
160
|
+
````sh
|
|
161
|
+
python3 -m backlogops_gui
|
|
162
|
+
python3 -m backlogops_gui -c config_file.cfg
|
|
163
|
+
````
|
|
164
|
+
or on Microsoft Windows with command
|
|
165
|
+
````sh
|
|
166
|
+
python -m backlogops_gui
|
|
167
|
+
python -m backlogops_gui -c config_file.cfg
|
|
168
|
+
````
|
|
169
|
+
|
|
170
|
+
At first startup you do not have any configuration file yet,
|
|
171
|
+
so when you start the application it will start the configuration
|
|
172
|
+
wizard.
|
|
173
|
+
|
|
174
|
+
## Main window
|
|
175
|
+
|
|
176
|
+
The main window has some informative text, but the functionality
|
|
177
|
+
is in the menus.
|
|
178
|
+
|
|
179
|
+
- File
|
|
180
|
+
|
|
181
|
+
- Read backlog...: Read in a file with a backlog and list of releases.
|
|
182
|
+
A new backlog window will be opened with the read in backlog.
|
|
183
|
+
|
|
184
|
+
- New demo backlog: Create a demo backlog with some backlog items and
|
|
185
|
+
releases. A new backlog window will be opened with the demo backlog.
|
|
186
|
+
|
|
187
|
+
- Configuration
|
|
188
|
+
|
|
189
|
+
- Run teams wizard...: this lets you configure the teams that work on
|
|
190
|
+
the backlog and also other aspects like the dates the company is
|
|
191
|
+
closed for vacation, and preset configuration for the inputs or
|
|
192
|
+
outputs you want to use.
|
|
193
|
+
|
|
194
|
+
- Write configuration...: This lets you write the configuration you
|
|
195
|
+
have in application to a file.
|
|
196
|
+
|
|
197
|
+
## Backlog window
|
|
198
|
+
|
|
199
|
+
The backlog window shows 2 read-only tables: one with the backlog and
|
|
200
|
+
one with the list of releases. You will want to use the menus.
|
|
201
|
+
|
|
202
|
+
- Backlog
|
|
203
|
+
|
|
204
|
+
- Order by keys...
|
|
205
|
+
|
|
206
|
+
- Order by dependencies...
|
|
207
|
+
|
|
208
|
+
- Estimate ready date...
|
|
209
|
+
|
|
210
|
+
- Set planned date from estimated
|
|
211
|
+
|
|
212
|
+
- Adjust release content
|
|
213
|
+
|
|
214
|
+
- Adjust planned release dates...
|
|
215
|
+
|
|
216
|
+
- Extract keys...
|
|
217
|
+
|
|
218
|
+
- Save to file...
|
|
219
|
+
|
|
220
|
+
- Close
|
|
221
|
+
|
|
222
|
+
## Test summary
|
|
223
|
+
|
|
224
|
+
- Test result: 1066 passed in 16s
|
|
225
|
+
- No flake8 warnings.
|
|
226
|
+
- No mypy errors found.
|
|
227
|
+
- No python layout warnings.
|
|
228
|
+
- Built version(s): 0.1
|
|
229
|
+
- Build and test using Python 3.14.6
|