civics-cdf-validator 1.61.dev2__tar.gz → 1.61.dev4__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.
- {civics_cdf_validator-1.61.dev2/civics_cdf_validator.egg-info → civics_cdf_validator-1.61.dev4}/PKG-INFO +1 -1
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4/civics_cdf_validator.egg-info}/PKG-INFO +1 -1
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/rules.py +3 -27
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/version.py +1 -1
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/CONTRIBUTING.md +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/LICENSE-2.0.txt +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/MANIFEST.in +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/README.md +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/__init__.py +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/base.py +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/civics_cdf_validator.egg-info/SOURCES.txt +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/civics_cdf_validator.egg-info/dependency_links.txt +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/civics_cdf_validator.egg-info/entry_points.txt +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/civics_cdf_validator.egg-info/requires.txt +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/civics_cdf_validator.egg-info/top_level.txt +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/gpunit_rules.py +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/loggers.py +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/office_utils.py +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/setup.cfg +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/setup.py +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/stats.py +0 -0
- {civics_cdf_validator-1.61.dev2 → civics_cdf_validator-1.61.dev4}/validator.py +0 -0
|
@@ -153,14 +153,7 @@ def _is_executive_office(element, is_post_office_split_feed=False):
|
|
|
153
153
|
|
|
154
154
|
|
|
155
155
|
def _has_government_body(element):
|
|
156
|
-
|
|
157
|
-
return True
|
|
158
|
-
governmental_body = get_entity_info_for_value_type(
|
|
159
|
-
element,
|
|
160
|
-
"governmental-body",
|
|
161
|
-
)
|
|
162
|
-
government_body = get_entity_info_for_value_type(element, "government-body")
|
|
163
|
-
return bool(governmental_body or government_body)
|
|
156
|
+
return element_has_text(element.find("GovernmentBodyIds"))
|
|
164
157
|
|
|
165
158
|
|
|
166
159
|
def get_external_id_values(
|
|
@@ -415,10 +408,10 @@ class HungarianStyleNotation(base.BaseRule):
|
|
|
415
408
|
|
|
416
409
|
|
|
417
410
|
class LanguageCode(base.BaseRule):
|
|
418
|
-
"""Check that Text elements have a valid language code."""
|
|
411
|
+
"""Check that Text and Uri elements have a valid language code."""
|
|
419
412
|
|
|
420
413
|
def elements(self):
|
|
421
|
-
return ["Text"]
|
|
414
|
+
return ["Text", "Uri"]
|
|
422
415
|
|
|
423
416
|
def check(self, element):
|
|
424
417
|
if "language" not in element.attrib:
|
|
@@ -4935,22 +4928,6 @@ class DeprecatedPartyLeadershipSchema(base.BaseRule):
|
|
|
4935
4928
|
)
|
|
4936
4929
|
|
|
4937
4930
|
|
|
4938
|
-
class GovernmentBodyExternalId(base.BaseRule):
|
|
4939
|
-
"""Errors if the government body is set using an external identifier instead of the GovernmentBody element."""
|
|
4940
|
-
|
|
4941
|
-
def elements(self):
|
|
4942
|
-
return ["ExternalIdentifiers"]
|
|
4943
|
-
|
|
4944
|
-
def check(self, element):
|
|
4945
|
-
if get_external_id_values(
|
|
4946
|
-
element, "government-body"
|
|
4947
|
-
) or get_external_id_values(element, "governmental-body"):
|
|
4948
|
-
raise loggers.ElectionError.from_message(
|
|
4949
|
-
"Specifying government body via external identifiers is deprecated."
|
|
4950
|
-
" Please use the top level GovernmentBody element instead."
|
|
4951
|
-
)
|
|
4952
|
-
|
|
4953
|
-
|
|
4954
4931
|
class ElectoralCommissionCollectionExists(base.BaseRule):
|
|
4955
4932
|
"""ElectoralCommissionCollection should exist."""
|
|
4956
4933
|
|
|
@@ -5495,7 +5472,6 @@ COMMON_RULES = (
|
|
|
5495
5472
|
EmptyText,
|
|
5496
5473
|
Encoding,
|
|
5497
5474
|
ExecutiveOfficeShouldNotHaveGovernmentBody,
|
|
5498
|
-
GovernmentBodyExternalId,
|
|
5499
5475
|
GpUnitOcdId,
|
|
5500
5476
|
GpUnitsCyclesRefsValidation,
|
|
5501
5477
|
GpUnitsHaveInternationalizedName,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|