Remove duplicated include
[LibreOffice.git] / bin / check-autocorr.py
blobebf1b50b191166a6f412a19de9b6c795ac159121
1 #!/usr/bin/env python3
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 # Use this script to find the lines in extras/source/autocorr/lang/<language>/DocumentList.xml
10 # which contain the same value for abbreviated-name and name
11 # Usage sample: ./bin/check-autocorr.py extras/source/autocorr/lang/tr/DocumentList.xml
13 import sys
14 import os
15 import xml.etree.ElementTree as ET
17 complete_file = sys.argv[1]
19 bAllFilesOk = True
21 # parse the XML file
22 tree = ET.parse(complete_file)
23 root = tree.getroot()
25 # find all elements X
26 elements_x = root.findall('.//block-list:block', namespaces={'block-list': "http://openoffice.org/2001/block-list"})
27 for element in elements_x:
28 # get the value of the attribute "abbreviated-name"
29 value_a = element.get('{http://openoffice.org/2001/block-list}abbreviated-name')
30 # get the value of the attribute "name"
31 value_b = element.get('{http://openoffice.org/2001/block-list}name')
32 # check if the values are equal
33 if value_a == value_b:
34 print('In ' + complete_file + ' same value: ' + value_a)
35 bAllFilesOk = False
37 if bAllFilesOk == True:
38 exit(0)
39 exit(1)