ositah 24.12__py3-none-any.whl → 25.6.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.
- 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 +1191 -1189
- 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-24.12.dist-info → ositah-25.6.dev1.dist-info}/METADATA +150 -149
- ositah-25.6.dev1.dist-info/RECORD +46 -0
- {ositah-24.12.dist-info → ositah-25.6.dev1.dist-info}/WHEEL +1 -1
- {ositah-24.12.dist-info → ositah-25.6.dev1.dist-info/licenses}/LICENSE +29 -29
- ositah-24.12.dist-info/RECORD +0 -46
- {ositah-24.12.dist-info → ositah-25.6.dev1.dist-info}/entry_points.txt +0 -0
- {ositah-24.12.dist-info → ositah-25.6.dev1.dist-info}/top_level.txt +0 -0
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Parameters related to Dash components in the Validation sub-application
|
|
3
|
-
"""
|
|
4
|
-
|
|
5
|
-
TABLE_COLUMN_VALIDATION = "Validation"
|
|
6
|
-
|
|
7
|
-
TABLE_ID_DECLARATION_STATS = "declaration-stats"
|
|
8
|
-
TABLE_ID_MISSING_AGENTS = "missing-agents"
|
|
9
|
-
TABLE_ID_VALIDATION = "validation"
|
|
10
|
-
|
|
11
|
-
VALIDATION_TAB_MENU_ID = "validation-tabs"
|
|
12
|
-
TAB_ID_DECLARATION_STATS = "declaration-stats-tab"
|
|
13
|
-
TAB_ID_MISSING_AGENTS = "missing-agents-tab"
|
|
14
|
-
TAB_ID_VALIDATION = "validation-tab"
|
|
15
|
-
|
|
16
|
-
VALIDATION_LOAD_INDICATOR_ID = "validation-data-load-indicator"
|
|
17
|
-
VALIDATION_SAVED_INDICATOR_ID = "validation-saved-data-load-indicator"
|
|
18
|
-
VALIDATION_DISPLAY_INTERVAL_ID = "validation-display-callback-interval"
|
|
19
|
-
VALIDATION_SAVED_ACTIVE_TAB_ID = "validation-saved-active-tab"
|
|
20
|
-
|
|
21
|
-
VALIDATION_DECLARATIONS_SELECT_ALL = 0
|
|
22
|
-
VALIDATION_DECLARATIONS_SELECT_NOT_VALIDATED = 1
|
|
23
|
-
VALIDATION_DECLARATIONS_SELECT_VALIDATED = 2
|
|
24
|
-
VALIDATION_DECLARATIONS_SWITCH_ID = "validation-declaration-set-switch"
|
|
25
|
-
VALIDATION_DECLARATIONS_SELECTED_ID = "validation-selected-declaration-set"
|
|
1
|
+
"""
|
|
2
|
+
Parameters related to Dash components in the Validation sub-application
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
TABLE_COLUMN_VALIDATION = "Validation"
|
|
6
|
+
|
|
7
|
+
TABLE_ID_DECLARATION_STATS = "declaration-stats"
|
|
8
|
+
TABLE_ID_MISSING_AGENTS = "missing-agents"
|
|
9
|
+
TABLE_ID_VALIDATION = "validation"
|
|
10
|
+
|
|
11
|
+
VALIDATION_TAB_MENU_ID = "validation-tabs"
|
|
12
|
+
TAB_ID_DECLARATION_STATS = "declaration-stats-tab"
|
|
13
|
+
TAB_ID_MISSING_AGENTS = "missing-agents-tab"
|
|
14
|
+
TAB_ID_VALIDATION = "validation-tab"
|
|
15
|
+
|
|
16
|
+
VALIDATION_LOAD_INDICATOR_ID = "validation-data-load-indicator"
|
|
17
|
+
VALIDATION_SAVED_INDICATOR_ID = "validation-saved-data-load-indicator"
|
|
18
|
+
VALIDATION_DISPLAY_INTERVAL_ID = "validation-display-callback-interval"
|
|
19
|
+
VALIDATION_SAVED_ACTIVE_TAB_ID = "validation-saved-active-tab"
|
|
20
|
+
|
|
21
|
+
VALIDATION_DECLARATIONS_SELECT_ALL = 0
|
|
22
|
+
VALIDATION_DECLARATIONS_SELECT_NOT_VALIDATED = 1
|
|
23
|
+
VALIDATION_DECLARATIONS_SELECT_VALIDATED = 2
|
|
24
|
+
VALIDATION_DECLARATIONS_SWITCH_ID = "validation-declaration-set-switch"
|
|
25
|
+
VALIDATION_DECLARATIONS_SELECTED_ID = "validation-selected-declaration-set"
|