ositah 25.6.dev1__py3-none-any.whl → 25.9.dev1__py3-none-any.whl
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.
Potentially problematic release.
This version of ositah might be problematic. Click here for more details.
- ositah/app.py +17 -17
- ositah/apps/analysis.py +785 -785
- ositah/apps/configuration/callbacks.py +916 -916
- ositah/apps/configuration/main.py +546 -546
- ositah/apps/configuration/parameters.py +74 -74
- ositah/apps/configuration/tools.py +112 -112
- ositah/apps/export.py +1208 -1191
- ositah/apps/validation/callbacks.py +240 -240
- ositah/apps/validation/main.py +89 -89
- ositah/apps/validation/parameters.py +25 -25
- ositah/apps/validation/tables.py +646 -646
- ositah/apps/validation/tools.py +552 -552
- ositah/assets/arrow_down_up.svg +3 -3
- ositah/assets/ositah.css +53 -53
- ositah/assets/sort_ascending.svg +4 -4
- ositah/assets/sort_descending.svg +5 -5
- ositah/assets/sorttable.js +499 -499
- ositah/main.py +449 -449
- ositah/ositah.example.cfg +229 -229
- ositah/static/style.css +53 -53
- ositah/templates/base.html +22 -22
- ositah/templates/bootstrap_login.html +38 -38
- ositah/templates/login_form.html +26 -26
- ositah/utils/agents.py +124 -124
- ositah/utils/authentication.py +287 -287
- ositah/utils/cache.py +19 -19
- ositah/utils/core.py +13 -13
- ositah/utils/exceptions.py +64 -64
- ositah/utils/hito_db.py +51 -51
- ositah/utils/hito_db_model.py +253 -253
- ositah/utils/menus.py +339 -339
- ositah/utils/period.py +139 -139
- ositah/utils/projects.py +1178 -1178
- ositah/utils/teams.py +42 -42
- ositah/utils/utils.py +474 -474
- {ositah-25.6.dev1.dist-info → ositah-25.9.dev1.dist-info}/METADATA +149 -150
- ositah-25.9.dev1.dist-info/RECORD +46 -0
- {ositah-25.6.dev1.dist-info → ositah-25.9.dev1.dist-info}/licenses/LICENSE +29 -29
- ositah-25.6.dev1.dist-info/RECORD +0 -46
- {ositah-25.6.dev1.dist-info → ositah-25.9.dev1.dist-info}/WHEEL +0 -0
- {ositah-25.6.dev1.dist-info → ositah-25.9.dev1.dist-info}/entry_points.txt +0 -0
- {ositah-25.6.dev1.dist-info → ositah-25.9.dev1.dist-info}/top_level.txt +0 -0
ositah/assets/arrow_down_up.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!-- From Bootstrap icon arrow-down-up -->
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-down-up" viewBox="0 0 16 16">
|
|
3
|
-
<path fill-rule="evenodd" d="M11.5 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L11 2.707V14.5a.5.5 0 0 0 .5.5zm-7-14a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L4 13.293V1.5a.5.5 0 0 1 .5-.5z"/>
|
|
1
|
+
<!-- From Bootstrap icon arrow-down-up -->
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-down-up" viewBox="0 0 16 16">
|
|
3
|
+
<path fill-rule="evenodd" d="M11.5 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L11 2.707V14.5a.5.5 0 0 0 .5.5zm-7-14a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L4 13.293V1.5a.5.5 0 0 1 .5-.5z"/>
|
|
4
4
|
</svg>
|
ositah/assets/ositah.css
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
/* CSS for the validation part of OSITAH */
|
|
2
|
-
|
|
3
|
-
div.login_page {
|
|
4
|
-
margin-left: 50px;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
div.login_form_field {
|
|
8
|
-
font-weight: bold;
|
|
9
|
-
margin-top: 20px;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
input.login_button {
|
|
13
|
-
margin-top: 30px;
|
|
14
|
-
margin-left: 45px;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
ul.flash-message {
|
|
18
|
-
display: inline-block;
|
|
19
|
-
list-style-type: none;
|
|
20
|
-
padding-left: 0;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
/* CSS for Dash components */
|
|
25
|
-
|
|
26
|
-
.team_list_dropdown {
|
|
27
|
-
margin-top: 15px;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.validated_hito_missing {
|
|
31
|
-
background-color: tomato;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
table.sortable th::after, th.sorttable_sorted::after, th.sorttable_sorted_reverse::after {
|
|
35
|
-
content: " ";
|
|
36
|
-
display: inline-block;
|
|
37
|
-
width: 24px;
|
|
38
|
-
height: 24px;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
|
|
42
|
-
content: url("arrow_down_up.svg");
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
th.sorttable_sorted::after {
|
|
46
|
-
background: url("sort_ascending.svg");
|
|
47
|
-
background-size: contain;
|
|
48
|
-
}
|
|
49
|
-
th.sorttable_sorted_reverse::after {
|
|
50
|
-
background: url("sort_descending.svg");
|
|
51
|
-
background-size: cover;
|
|
52
|
-
}
|
|
53
|
-
|
|
1
|
+
/* CSS for the validation part of OSITAH */
|
|
2
|
+
|
|
3
|
+
div.login_page {
|
|
4
|
+
margin-left: 50px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
div.login_form_field {
|
|
8
|
+
font-weight: bold;
|
|
9
|
+
margin-top: 20px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
input.login_button {
|
|
13
|
+
margin-top: 30px;
|
|
14
|
+
margin-left: 45px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
ul.flash-message {
|
|
18
|
+
display: inline-block;
|
|
19
|
+
list-style-type: none;
|
|
20
|
+
padding-left: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
/* CSS for Dash components */
|
|
25
|
+
|
|
26
|
+
.team_list_dropdown {
|
|
27
|
+
margin-top: 15px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.validated_hito_missing {
|
|
31
|
+
background-color: tomato;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
table.sortable th::after, th.sorttable_sorted::after, th.sorttable_sorted_reverse::after {
|
|
35
|
+
content: " ";
|
|
36
|
+
display: inline-block;
|
|
37
|
+
width: 24px;
|
|
38
|
+
height: 24px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
|
|
42
|
+
content: url("arrow_down_up.svg");
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
th.sorttable_sorted::after {
|
|
46
|
+
background: url("sort_ascending.svg");
|
|
47
|
+
background-size: contain;
|
|
48
|
+
}
|
|
49
|
+
th.sorttable_sorted_reverse::after {
|
|
50
|
+
background: url("sort_descending.svg");
|
|
51
|
+
background-size: cover;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
54
|
#sorttable_sortfwdind, #sorttable_sortrevind { display: none; }
|
ositah/assets/sort_ascending.svg
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<!-- From Bootstrap icon sort-alpha-down -->
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-sort-alpha-down" viewBox="0 0 16 16">
|
|
3
|
-
<path fill-rule="evenodd" d="M10.082 5.629 9.664 7H8.598l1.789-5.332h1.234L13.402 7h-1.12l-.419-1.371h-1.781zm1.57-.785L11 2.687h-.047l-.652 2.157h1.351z"/>
|
|
4
|
-
<path d="M12.96 14H9.028v-.691l2.579-3.72v-.054H9.098v-.867h3.785v.691l-2.567 3.72v.054h2.645V14zM4.5 2.5a.5.5 0 0 0-1 0v9.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L4.5 12.293V2.5z"/>
|
|
1
|
+
<!-- From Bootstrap icon sort-alpha-down -->
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-sort-alpha-down" viewBox="0 0 16 16">
|
|
3
|
+
<path fill-rule="evenodd" d="M10.082 5.629 9.664 7H8.598l1.789-5.332h1.234L13.402 7h-1.12l-.419-1.371h-1.781zm1.57-.785L11 2.687h-.047l-.652 2.157h1.351z"/>
|
|
4
|
+
<path d="M12.96 14H9.028v-.691l2.579-3.72v-.054H9.098v-.867h3.785v.691l-2.567 3.72v.054h2.645V14zM4.5 2.5a.5.5 0 0 0-1 0v9.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L4.5 12.293V2.5z"/>
|
|
5
5
|
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<!-- From Bootstrap icon sort-alpha-down-alt -->
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-sort-alpha-down-alt" viewBox="0 0 16 16">
|
|
3
|
-
<path d="M12.96 7H9.028v-.691l2.579-3.72v-.054H9.098v-.867h3.785v.691l-2.567 3.72v.054h2.645V7z"/>
|
|
4
|
-
<path fill-rule="evenodd" d="M10.082 12.629 9.664 14H8.598l1.789-5.332h1.234L13.402 14h-1.12l-.419-1.371h-1.781zm1.57-.785L11 9.688h-.047l-.652 2.156h1.351z"/>
|
|
5
|
-
<path d="M4.5 2.5a.5.5 0 0 0-1 0v9.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L4.5 12.293V2.5z"/>
|
|
1
|
+
<!-- From Bootstrap icon sort-alpha-down-alt -->
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-sort-alpha-down-alt" viewBox="0 0 16 16">
|
|
3
|
+
<path d="M12.96 7H9.028v-.691l2.579-3.72v-.054H9.098v-.867h3.785v.691l-2.567 3.72v.054h2.645V7z"/>
|
|
4
|
+
<path fill-rule="evenodd" d="M10.082 12.629 9.664 14H8.598l1.789-5.332h1.234L13.402 14h-1.12l-.419-1.371h-1.781zm1.57-.785L11 9.688h-.047l-.652 2.156h1.351z"/>
|
|
5
|
+
<path d="M4.5 2.5a.5.5 0 0 0-1 0v9.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L4.5 12.293V2.5z"/>
|
|
6
6
|
</svg>
|