Fix AutoThumb e Typo
This commit is contained in:
+5
-5
@@ -402,16 +402,16 @@ def thumb(itemlist=[], genre=False, thumb=''):
|
|||||||
if genre == False:
|
if genre == False:
|
||||||
|
|
||||||
for thumb, titles in icon_dict.items():
|
for thumb, titles in icon_dict.items():
|
||||||
if any( word in item.title.lower().split() for word in search):
|
if any( word in re.split(r'\.|\{|\}|\[|\]|\(|\)| ',item.title.lower()) for word in search):
|
||||||
thumb = 'search'
|
thumb = 'search'
|
||||||
for suffix, titles in search_suffix.items():
|
for suffix, titles in search_suffix.items():
|
||||||
if any( word in item.title.lower().split() for word in titles ):
|
if any( word in re.split(r'\.|\{|\}|\[|\]|\(|\)| ',item.title.lower()) for word in titles ):
|
||||||
thumb = thumb + suffix
|
thumb = thumb + suffix
|
||||||
item.thumbnail = get_thumb(thumb + '.png')
|
item.thumbnail = get_thumb(thumb + '.png')
|
||||||
elif any( word in item.title.lower().split() for word in titles ):
|
elif any( word in re.split(r'\.|\{|\}|\[|\]|\(|\)| ',item.title.lower()) for word in titles ):
|
||||||
if thumb == 'channels_movie' or thumb == 'channels_tvshow':
|
if thumb == 'channels_movie' or thumb == 'channels_tvshow':
|
||||||
for suffix, titles in suffix_dict.items():
|
for suffix, titles in suffix_dict.items():
|
||||||
if any( word in item.title.lower().split() for word in titles ):
|
if any( word in re.split(r'\.|\{|\}|\[|\]|\(|\)| ',item.title.lower()) for word in titles ):
|
||||||
thumb = thumb + suffix
|
thumb = thumb + suffix
|
||||||
item.thumbnail = get_thumb(thumb + '.png')
|
item.thumbnail = get_thumb(thumb + '.png')
|
||||||
else: item.thumbnail = get_thumb(thumb + '.png')
|
else: item.thumbnail = get_thumb(thumb + '.png')
|
||||||
@@ -420,7 +420,7 @@ def thumb(itemlist=[], genre=False, thumb=''):
|
|||||||
|
|
||||||
else:
|
else:
|
||||||
for thumb, titles in icon_dict.items():
|
for thumb, titles in icon_dict.items():
|
||||||
if any(word in item.title.lower().split() for word in titles ):
|
if any(word in re.split(r'\.|\{|\}|\[|\]|\(|\)| ',item.title.lower()) for word in titles ):
|
||||||
item.thumbnail = get_thumb(thumb + '.png')
|
item.thumbnail = get_thumb(thumb + '.png')
|
||||||
else:
|
else:
|
||||||
thumb = item.thumbnails
|
thumb = item.thumbnails
|
||||||
|
|||||||
+11
-11
@@ -713,20 +713,20 @@ def typo(string, typography=''):
|
|||||||
# If there are no attributes, it applies the default ones
|
# If there are no attributes, it applies the default ones
|
||||||
attribute = ['[]','()','{}','submenu','color','bold','italic','_','--','[B]','[I]','[COLOR]']
|
attribute = ['[]','()','{}','submenu','color','bold','italic','_','--','[B]','[I]','[COLOR]']
|
||||||
|
|
||||||
movie_word_list = ['film', 'serie', 'tv', 'anime', 'cinema', 'sala']
|
# movie_word_list = ['film', 'serie', 'tv', 'anime', 'cinema', 'sala']
|
||||||
search_word_list = ['cerca']
|
# search_word_list = ['cerca']
|
||||||
categories_word_list = ['genere', 'categoria', 'categorie', 'ordine', 'lettera', 'anno', 'alfabetico', 'a-z', 'menu']
|
# categories_word_list = ['genere', 'categoria', 'categorie', 'ordine', 'lettera', 'anno', 'alfabetico', 'a-z', 'menu']
|
||||||
|
|
||||||
if not any(word in string for word in attribute):
|
# if not any(word in string for word in attribute):
|
||||||
if any(word in string.lower() for word in search_word_list):
|
# if any(word in string.lower() for word in search_word_list):
|
||||||
string = '[COLOR '+ kod_color +']' + string + '[/COLOR]'
|
# string = '[COLOR '+ kod_color +']' + string + '[/COLOR]'
|
||||||
elif any(word in string.lower() for word in categories_word_list):
|
# elif any(word in string.lower() for word in categories_word_list):
|
||||||
string = ' > ' + string
|
# string = ' > ' + string
|
||||||
elif any(word in string.lower() for word in movie_word_list):
|
# elif any(word in string.lower() for word in movie_word_list):
|
||||||
string = '[B]' + string + '[/B]'
|
# string = '[B]' + string + '[/B]'
|
||||||
|
|
||||||
# Otherwise it uses the typographical attributes of the string
|
# Otherwise it uses the typographical attributes of the string
|
||||||
else:
|
# else:
|
||||||
if '[]' in string:
|
if '[]' in string:
|
||||||
string = '[' + re.sub(r'\s\[\]','',string) + ']'
|
string = '[' + re.sub(r'\s\[\]','',string) + ']'
|
||||||
if '()' in string:
|
if '()' in string:
|
||||||
|
|||||||
Reference in New Issue
Block a user