From 10efada6006f3d25ee617ec4b76db762e2e1363c Mon Sep 17 00:00:00 2001 From: alfa-addon Date: Tue, 1 Aug 2017 17:45:09 -0400 Subject: [PATCH] cambio de version --- plugin.video.alfa/addon.xml | 27 ++++++++++++++--------- plugin.video.alfa/channels/metaserie.py | 14 +++++------- plugin.video.alfa/channels/playpornx.json | 4 ++-- plugin.video.alfa/channels/playpornx.py | 9 +++++--- 4 files changed, 29 insertions(+), 25 deletions(-) mode change 100755 => 100644 plugin.video.alfa/channels/metaserie.py mode change 100755 => 100644 plugin.video.alfa/channels/playpornx.json mode change 100755 => 100644 plugin.video.alfa/channels/playpornx.py diff --git a/plugin.video.alfa/addon.xml b/plugin.video.alfa/addon.xml index 66f59ab0..7c563af2 100755 --- a/plugin.video.alfa/addon.xml +++ b/plugin.video.alfa/addon.xml @@ -1,5 +1,5 @@  - + @@ -9,16 +9,21 @@ Sumario en Español - Estos son los cambios para esta versión: - - mejortorrent - - plusdede - - allcalidad - - retocados iconos - - Nuevo canal: vernovelasonline - - Nuevo servidor: downace - - Nuevo servidor: gvideo - - cinetux: Cambio de estructura - - añadido textos para "spanish (mexico)", ya no debe salir los textos en inglés en algunas partes + [B]Estos son los cambios para esta versión:[/B][CR] + [COLOR green][B]Canales agregados y arreglos[/B][/COLOR] + [I]- Cinecalidad + - Cinefox + - Mundoflv + - Metaserie + - Pelisplanet + - flashx + - xTheatre + - Playpornx[/I][CR] + [COLOR green][B]Servidores agregados y arreglos[/B][/COLOR][CR] + [I]- Flashx + - Streamcherry[/I] + + Descripción en Español English summary diff --git a/plugin.video.alfa/channels/metaserie.py b/plugin.video.alfa/channels/metaserie.py old mode 100755 new mode 100644 index e0127bde..8008c81b --- a/plugin.video.alfa/channels/metaserie.py +++ b/plugin.video.alfa/channels/metaserie.py @@ -62,12 +62,9 @@ def todas(item): logger.info() itemlist = [] data = httptools.downloadpage(item.url).data - logger.debug(data) - - patron = '
[^<]' - patron += '[^<]' - patron += '
([^<]+)<.*?div>[^<]' - patron += '|\s{2,}', "", data) + patron = '
.*?.*?' + patron +='
(.*?)<.*?div>.*?
  • \s*\s*.*?<\/span>\s*<\/span>' + data = re.sub(r'"|\n|\r|\t| |
    |\s{2,}', "", data) + logger.debug(data) + patron = 'role=article>
    .*?src=(.*?) class' matches = re.compile(patron, re.DOTALL).findall(data) - for scrapedtitle, scrapedurl, scrapedthumbnail in matches: + for scrapedurl, scrapedtitle, scrapedthumbnail in matches: url = scrapedurl thumbnail = scrapedthumbnail title = scrapedtitle