We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There's a segment of 1 Chronicles numbered as if it's in Genesis.
macula-hebrew/WLC/nodes/13-1Ch-020.xml
Lines 845 to 859 in 5bcf839
The text was updated successfully, but these errors were encountered:
Some more oddities:
import glob from xml.etree import ElementTree as ET import os for fname in sorted(glob.glob('WLC/nodes/*.xml')): pieces = os.path.splitext(os.path.basename(fname))[0].split('-') if len(pieces) != 3: continue expected = pieces[0] + pieces[2] root = ET.parse(fname).getroot() for node in root.iter(): nid = node.attrib.get('nodeId', node.attrib.get('{http://www.w3.org/XML/1998/namespace}id')) if nid and not (nid.startswith(expected) or nid.startswith('o'+expected)): print(fname, nid)
$ python3 validate_ids.py WLC/nodes/13-1Ch-020.xml 0101501400210021 WLC/nodes/13-1Ch-020.xml 0101501400210020 WLC/nodes/13-1Ch-020.xml 0101501400210011 WLC/nodes/13-1Ch-020.xml 0101501400210010 WLC/nodes/13-1Ch-020.xml 0101501400310011 WLC/nodes/13-1Ch-020.xml 0101501400310010 WLC/nodes/14-2Ch-020.xml 0101501400210021 WLC/nodes/14-2Ch-020.xml 0101501400210020 WLC/nodes/14-2Ch-020.xml 0101501400210011 WLC/nodes/14-2Ch-020.xml 0101501400210010 WLC/nodes/14-2Ch-020.xml 0101501400310011 WLC/nodes/14-2Ch-020.xml 0101501400310010 WLC/nodes/14-2Ch-020.xml 0101501400120021 WLC/nodes/14-2Ch-020.xml 0101501400120020 WLC/nodes/14-2Ch-020.xml 0101501400120011 WLC/nodes/14-2Ch-020.xml 0101501400120010 WLC/nodes/14-2Ch-020.xml 0101501400210011 WLC/nodes/14-2Ch-020.xml 0101501400210010 WLC/nodes/14-2Ch-024.xml 0101501400210021 WLC/nodes/14-2Ch-024.xml 0101501400210020 WLC/nodes/14-2Ch-024.xml 0101501400210011 WLC/nodes/14-2Ch-024.xml 0101501400210010 WLC/nodes/14-2Ch-024.xml 0101501400310011 WLC/nodes/14-2Ch-024.xml 0101501400310010 WLC/nodes/15-Ezr-003.xml 0101501400120021 WLC/nodes/15-Ezr-003.xml 0101501400120020 WLC/nodes/15-Ezr-003.xml 0101501400120011 WLC/nodes/15-Ezr-003.xml 0101501400120010 WLC/nodes/15-Ezr-003.xml 0101501400210011 WLC/nodes/15-Ezr-003.xml 0101501400210010
Sorry, something went wrong.
jonathanrobie
No branches or pull requests
There's a segment of 1 Chronicles numbered as if it's in Genesis.
macula-hebrew/WLC/nodes/13-1Ch-020.xml
Lines 845 to 859 in 5bcf839
The text was updated successfully, but these errors were encountered: