#!/usr/bin/env python3 # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # Use this script to find the lines in extras/source/autocorr/lang//DocumentList.xml # which contain the same value for abbreviated-name and name # Usage sample: ./bin/check-autocorr.py extras/source/autocorr/lang/tr/DocumentList.xml import sys import os import xml.etree.ElementTree as ET complete_file = sys.argv[1] bAllFilesOk = True # parse the XML file tree = ET.parse(complete_file) root = tree.getroot() # find all elements X elements_x = root.findall('.//block-list:block', namespaces={'block-list': "http://openoffice.org/2001/block-list"}) for element in elements_x: # get the value of the attribute "abbreviated-name" value_a = element.get('{http://openoffice.org/2001/block-list}abbreviated-name') # get the value of the attribute "name" value_b = element.get('{http://openoffice.org/2001/block-list}name') # check if the values are equal if value_a == value_b: print('In ' + complete_file + ' same value: ' + value_a) bAllFilesOk = False if bAllFilesOk == True: exit(0) exit(1) -0 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/xmloff/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-02-19 15:36:13 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-02-19 20:42:34 +0100
commit860b2d0123cc44437d4882d7d5f204a32ed21a62 (patch)
treeda5e090c686be1b16524ca9e3255550390e0cbcd /xmloff/inc
parentd54d66e25ec0206f43ead5fe72428ebefd0b857c (diff)
update pches
Change-Id: Ic4586057346b6de700c1bb6ff4cd759a11bb3e4d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111231 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'xmloff/inc')