civics-cdf-validator 1.46.dev0__tar.gz → 1.46.dev1__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.46.dev0/civics_cdf_validator.egg-info → civics_cdf_validator-1.46.dev1}/PKG-INFO +1 -1
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1/civics_cdf_validator.egg-info}/PKG-INFO +1 -1
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/civics_cdf_validator.egg-info/SOURCES.txt +9 -7
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/rules.py +17 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/version.py +1 -1
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/CONTRIBUTING.md +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/LICENSE-2.0.txt +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/MANIFEST.in +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/README.md +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/__init__.py +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/base.py +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/civics_cdf_validator.egg-info/dependency_links.txt +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/civics_cdf_validator.egg-info/entry_points.txt +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/civics_cdf_validator.egg-info/requires.txt +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/civics_cdf_validator.egg-info/top_level.txt +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/gpunit_rules.py +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/loggers.py +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/office_utils.py +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/setup.cfg +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/setup.py +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/stats.py +0 -0
- {civics_cdf_validator-1.46.dev0 → civics_cdf_validator-1.46.dev1}/validator.py +0 -0
|
@@ -2,17 +2,19 @@ CONTRIBUTING.md
|
|
|
2
2
|
LICENSE-2.0.txt
|
|
3
3
|
MANIFEST.in
|
|
4
4
|
README.md
|
|
5
|
-
__init__.py
|
|
6
5
|
base.py
|
|
7
|
-
gpunit_rules.py
|
|
8
|
-
loggers.py
|
|
9
|
-
office_utils.py
|
|
10
6
|
rules.py
|
|
11
7
|
setup.cfg
|
|
12
8
|
setup.py
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
./__init__.py
|
|
10
|
+
./base.py
|
|
11
|
+
./gpunit_rules.py
|
|
12
|
+
./loggers.py
|
|
13
|
+
./office_utils.py
|
|
14
|
+
./rules.py
|
|
15
|
+
./stats.py
|
|
16
|
+
./validator.py
|
|
17
|
+
./version.py
|
|
16
18
|
civics_cdf_validator.egg-info/PKG-INFO
|
|
17
19
|
civics_cdf_validator.egg-info/SOURCES.txt
|
|
18
20
|
civics_cdf_validator.egg-info/dependency_links.txt
|
|
@@ -3355,6 +3355,22 @@ class MultipleInternationalizedTextWithSameLanguageCode(base.BaseRule):
|
|
|
3355
3355
|
(language, texts[0].strip()))
|
|
3356
3356
|
|
|
3357
3357
|
|
|
3358
|
+
class AllInternationalizedTextHaveEnVersion(base.BaseRule):
|
|
3359
|
+
"""Checks for Internationalized Text Elements missing the english version."""
|
|
3360
|
+
|
|
3361
|
+
def elements(self):
|
|
3362
|
+
return ["BallotName", "Directions", "BallotSubTitle", "BallotTitle", "Name",
|
|
3363
|
+
"InternationalizedName", "InternationalizedAbbreviation", "Alias",
|
|
3364
|
+
"FullName", "Profession", "Title"]
|
|
3365
|
+
|
|
3366
|
+
def check(self, element):
|
|
3367
|
+
language_map = get_language_to_text_map(element)
|
|
3368
|
+
if "en" not in language_map:
|
|
3369
|
+
raise loggers.ElectionInfo.from_message(
|
|
3370
|
+
message="No \"english\" version found for the InternationalizedText.",
|
|
3371
|
+
elements=[element])
|
|
3372
|
+
|
|
3373
|
+
|
|
3358
3374
|
class ContestContainsValidStartDate(base.DateRule):
|
|
3359
3375
|
"""Contest elements should contain valid start dates.
|
|
3360
3376
|
|
|
@@ -3986,6 +4002,7 @@ COMMON_RULES = (
|
|
|
3986
4002
|
NonExecutiveOfficeShouldHaveGovernmentBody,
|
|
3987
4003
|
ExecutiveOfficeShouldNotHaveGovernmentBody,
|
|
3988
4004
|
ValidPartyLeadershipDates,
|
|
4005
|
+
AllInternationalizedTextHaveEnVersion,
|
|
3989
4006
|
)
|
|
3990
4007
|
|
|
3991
4008
|
ELECTION_RULES = COMMON_RULES + (
|
|
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
|