civics-cdf-validator 1.52.dev3__tar.gz → 1.52.dev5__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.52.dev3/civics_cdf_validator.egg-info → civics_cdf_validator-1.52.dev5}/PKG-INFO +1 -1
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5/civics_cdf_validator.egg-info}/PKG-INFO +1 -1
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/rules.py +13 -4
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/version.py +1 -1
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/CONTRIBUTING.md +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/LICENSE-2.0.txt +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/MANIFEST.in +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/README.md +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/__init__.py +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/base.py +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/civics_cdf_validator.egg-info/SOURCES.txt +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/civics_cdf_validator.egg-info/dependency_links.txt +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/civics_cdf_validator.egg-info/entry_points.txt +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/civics_cdf_validator.egg-info/requires.txt +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/civics_cdf_validator.egg-info/top_level.txt +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/gpunit_rules.py +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/loggers.py +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/office_utils.py +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/setup.cfg +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/setup.py +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/stats.py +0 -0
- {civics_cdf_validator-1.52.dev3 → civics_cdf_validator-1.52.dev5}/validator.py +0 -0
|
@@ -2309,8 +2309,11 @@ class ValidURIAnnotation(base.BaseRule):
|
|
|
2309
2309
|
"URI {} is missing annotation.".format(ascii_url), [uri]
|
|
2310
2310
|
)
|
|
2311
2311
|
|
|
2312
|
-
#
|
|
2313
|
-
if
|
|
2312
|
+
# Skip platform checks for image or office contact form annotations.
|
|
2313
|
+
if (
|
|
2314
|
+
re.search(r"candidate-image", annotation)
|
|
2315
|
+
or annotation == "office-contact_form"
|
|
2316
|
+
):
|
|
2314
2317
|
continue
|
|
2315
2318
|
|
|
2316
2319
|
ann_elements = annotation.split("-")
|
|
@@ -3552,7 +3555,10 @@ class NonExecutiveOfficeShouldHaveGovernmentBody(base.BaseRule):
|
|
|
3552
3555
|
officeholder_tenure_collection_element = self.get_elements_by_class(
|
|
3553
3556
|
election_tree, "OfficeHolderTenureCollection"
|
|
3554
3557
|
)
|
|
3555
|
-
|
|
3558
|
+
role_element = self.get_elements_by_class(
|
|
3559
|
+
election_tree, "Role"
|
|
3560
|
+
)
|
|
3561
|
+
if officeholder_tenure_collection_element or role_element:
|
|
3556
3562
|
self.is_post_office_split_feed = True
|
|
3557
3563
|
|
|
3558
3564
|
def elements(self):
|
|
@@ -3577,7 +3583,10 @@ class ExecutiveOfficeShouldNotHaveGovernmentBody(base.BaseRule):
|
|
|
3577
3583
|
officeholder_tenure_collection_element = self.get_elements_by_class(
|
|
3578
3584
|
election_tree, "OfficeHolderTenureCollection"
|
|
3579
3585
|
)
|
|
3580
|
-
|
|
3586
|
+
role_element = self.get_elements_by_class(
|
|
3587
|
+
election_tree, "Role"
|
|
3588
|
+
)
|
|
3589
|
+
if officeholder_tenure_collection_element or role_element:
|
|
3581
3590
|
self.is_post_office_split_feed = True
|
|
3582
3591
|
|
|
3583
3592
|
def elements(self):
|
|
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
|