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
15 import xml
.etree
.ElementTree
as ET
17 complete_file
= sys
.argv
[1]
22 tree
= ET
.parse(complete_file
)
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
)
37 if bAllFilesOk
== True: