civics-cdf-validator 1.60.dev5__tar.gz → 1.60.dev6__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.60.dev5/civics_cdf_validator.egg-info → civics_cdf_validator-1.60.dev6}/PKG-INFO +1 -1
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6/civics_cdf_validator.egg-info}/PKG-INFO +1 -1
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/rules.py +0 -37
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/version.py +1 -1
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/CONTRIBUTING.md +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/LICENSE-2.0.txt +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/MANIFEST.in +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/README.md +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/__init__.py +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/base.py +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/civics_cdf_validator.egg-info/SOURCES.txt +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/civics_cdf_validator.egg-info/dependency_links.txt +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/civics_cdf_validator.egg-info/entry_points.txt +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/civics_cdf_validator.egg-info/requires.txt +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/civics_cdf_validator.egg-info/top_level.txt +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/gpunit_rules.py +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/loggers.py +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/office_utils.py +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/setup.cfg +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/setup.py +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/stats.py +0 -0
- {civics_cdf_validator-1.60.dev5 → civics_cdf_validator-1.60.dev6}/validator.py +0 -0
|
@@ -1213,42 +1213,6 @@ class SingularPartySelection(base.BaseRule):
|
|
|
1213
1213
|
)
|
|
1214
1214
|
|
|
1215
1215
|
|
|
1216
|
-
class PartiesHaveValidColors(base.BaseRule):
|
|
1217
|
-
"""Each Party should have a valid hex integer less than 16^6, without a leading '#'.
|
|
1218
|
-
|
|
1219
|
-
A Party object that has no Color or an invalid Color should be picked up
|
|
1220
|
-
within this class and returned to the user as a warning.
|
|
1221
|
-
"""
|
|
1222
|
-
|
|
1223
|
-
def elements(self):
|
|
1224
|
-
return ["Party"]
|
|
1225
|
-
|
|
1226
|
-
def check(self, element):
|
|
1227
|
-
colors = element.findall("Color")
|
|
1228
|
-
if not colors:
|
|
1229
|
-
return
|
|
1230
|
-
if len(colors) > 1:
|
|
1231
|
-
raise loggers.ElectionWarning.from_message(
|
|
1232
|
-
"The Party has more than one color.", [element]
|
|
1233
|
-
)
|
|
1234
|
-
color_val = colors[0].text
|
|
1235
|
-
if not color_val:
|
|
1236
|
-
raise loggers.ElectionWarning.from_message(
|
|
1237
|
-
"Color tag is missing a value.", [colors[0]]
|
|
1238
|
-
)
|
|
1239
|
-
try:
|
|
1240
|
-
int(color_val, 16)
|
|
1241
|
-
except ValueError:
|
|
1242
|
-
raise loggers.ElectionWarning.from_message(
|
|
1243
|
-
"%s is not a valid hex color." % color_val,
|
|
1244
|
-
[colors[0]],
|
|
1245
|
-
)
|
|
1246
|
-
if not re.match("^([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$", color_val):
|
|
1247
|
-
raise loggers.ElectionWarning.from_message(
|
|
1248
|
-
"%s should be a hexadecimal less than 16^6." % color_val, [colors[0]]
|
|
1249
|
-
)
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
1216
|
class PersonHasUniqueFullName(base.BaseRule):
|
|
1253
1217
|
"""A Person should be defined one time in <PersonCollection>.
|
|
1254
1218
|
|
|
@@ -5017,7 +4981,6 @@ ELECTION_RULES = COMMON_RULES + (
|
|
|
5017
4981
|
MultipleCandidatesPointToTheSamePersonInTheSameContest,
|
|
5018
4982
|
MultipleInternationalizedTextWithSameLanguageCode,
|
|
5019
4983
|
OfficeHasjurisdictionSameAsElectoralDistrict,
|
|
5020
|
-
PartiesHaveValidColors,
|
|
5021
4984
|
PartisanPrimary,
|
|
5022
4985
|
PartisanPrimaryHeuristic,
|
|
5023
4986
|
PercentSum,
|
|
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
|