38f3e28d77
Use the output of git diff --full-index --binary anaconda-22.20.13-1..anaconda-23.19.10-1 from anaconda's git repository and fix-up merge conflicts.
73 lines
2.5 KiB
Python
Executable File
73 lines
2.5 KiB
Python
Executable File
#!/usr/bin/python3
|
|
#
|
|
# Copyright (C) 2015 Red Hat, Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published
|
|
# by the Free Software Foundation; either version 2.1 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# Author: David Shea <dshea@redhat.com>
|
|
|
|
import os, re, sys
|
|
|
|
# Something like looks more or less like an <a> tag
|
|
link_re = re.compile(r'<\s*a(\s|>)')
|
|
|
|
# Something that looks like a clickable message
|
|
click_re = re.compile(r'\b[Cc]lick for\b')
|
|
|
|
# Strings to ignore
|
|
ignore_msgs = ['Click for help.']
|
|
|
|
# Use polib to parse anaconda.pot
|
|
try:
|
|
import polib
|
|
except ImportError:
|
|
print("You need to install the python-polib package to read anaconda.pot")
|
|
# This return code tells the automake test driver that the test setup failed
|
|
sys.exit(99)
|
|
|
|
if "top_srcdir" not in os.environ:
|
|
sys.stderr.write("$top_srcdir must be defined in the test environment\n")
|
|
sys.exit(99)
|
|
|
|
if "top_builddir" not in os.environ:
|
|
sys.stderr.write("$top_srcdir must be defined in the test environment\n")
|
|
sys.exit(99)
|
|
|
|
# Update the .pot file with the latest strings
|
|
if os.system('make -C %s anaconda.pot-update' % (os.environ['top_builddir'] + "/po")) != 0:
|
|
sys.stderr.write("Unable to update anaconda.pot")
|
|
sys.exit(1)
|
|
|
|
# Parse anaconda.pot and rearrange the POFile object into a dict of {msgid: POEntry}
|
|
pofile = polib.pofile(os.environ['top_srcdir'] + "/po/anaconda.pot")
|
|
msgs = {e.msgid: e for e in pofile}
|
|
|
|
success = True
|
|
for msg in msgs.keys():
|
|
if msg in ignore_msgs:
|
|
continue
|
|
|
|
# Remove underscores to avoid trouble with underline-based accelerators
|
|
trimmed_msg = msg.replace('_', '')
|
|
|
|
# Look for claims of clickability
|
|
if click_re.search(trimmed_msg):
|
|
# Look for something to click
|
|
if not link_re.search(trimmed_msg):
|
|
print("String at %s appears to be clickable but has nothing to click." %
|
|
" ".join("%s:%s" % (o[0], o[1]) for o in msgs[msg].occurrences))
|
|
success = False
|
|
|
|
sys.exit(0 if success else 1)
|