mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
More strict string search regex
This commit is contained in:
parent
5bbbda71a3
commit
9301c50e3b
1 changed files with 1 additions and 1 deletions
|
|
@ -712,7 +712,7 @@ def retrieve_string(app_dir, string, xmlfiles=None):
|
||||||
|
|
||||||
string_search = None
|
string_search = None
|
||||||
if string.startswith('@string/'):
|
if string.startswith('@string/'):
|
||||||
string_search = re.compile(r'.*"' + string[8:] + '".*?>([^<]+?)<.*').search
|
string_search = re.compile(r'.*name="' + string[8:] + '".*?>([^<]+?)<.*').search
|
||||||
elif string.startswith('&') and string.endswith(';'):
|
elif string.startswith('&') and string.endswith(';'):
|
||||||
string_search = re.compile(r'.*<!ENTITY.*' + string[1:-1] + '.*?"([^"]+?)".*>').search
|
string_search = re.compile(r'.*<!ENTITY.*' + string[1:-1] + '.*?"([^"]+?)".*>').search
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue