civics-cdf-validator 1.61.dev3__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.dev3/civics_cdf_validator.egg-info → civics_cdf_validator-1.61.dev4}/PKG-INFO +1 -1
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4/civics_cdf_validator.egg-info}/PKG-INFO +1 -1
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/rules.py +2 -2
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/version.py +1 -1
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/CONTRIBUTING.md +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/LICENSE-2.0.txt +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/MANIFEST.in +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/README.md +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/__init__.py +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/base.py +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/civics_cdf_validator.egg-info/SOURCES.txt +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/civics_cdf_validator.egg-info/dependency_links.txt +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/civics_cdf_validator.egg-info/entry_points.txt +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/civics_cdf_validator.egg-info/requires.txt +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/civics_cdf_validator.egg-info/top_level.txt +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/gpunit_rules.py +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/loggers.py +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/office_utils.py +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/setup.cfg +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/setup.py +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/stats.py +0 -0
- {civics_cdf_validator-1.61.dev3 → civics_cdf_validator-1.61.dev4}/validator.py +0 -0
|
@@ -408,10 +408,10 @@ class HungarianStyleNotation(base.BaseRule):
|
|
|
408
408
|
|
|
409
409
|
|
|
410
410
|
class LanguageCode(base.BaseRule):
|
|
411
|
-
"""Check that Text elements have a valid language code."""
|
|
411
|
+
"""Check that Text and Uri elements have a valid language code."""
|
|
412
412
|
|
|
413
413
|
def elements(self):
|
|
414
|
-
return ["Text"]
|
|
414
|
+
return ["Text", "Uri"]
|
|
415
415
|
|
|
416
416
|
def check(self, element):
|
|
417
417
|
if "language" not in element.attrib:
|
|
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
|