The branch, eden-pre has been updated
       via  4f620f4f8c54aa6d0cd67e217775adefc889b9ea (commit)
      from  d6f1bbf21039017e138753cf5f99bf5ae25ca623 (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=4f620f4f8c54aa6d0cd67e217775adefc889b9ea

commit 4f620f4f8c54aa6d0cd67e217775adefc889b9ea
Author: beenje <[email protected]>
Date:   Fri Feb 3 15:36:18 2012 +0100

    [plugin.video.arretsurimages] updated to version 2.1.6

diff --git a/plugin.video.arretsurimages/addon.xml 
b/plugin.video.arretsurimages/addon.xml
index 3854a6c..97b14aa 100644
--- a/plugin.video.arretsurimages/addon.xml
+++ b/plugin.video.arretsurimages/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="plugin.video.arretsurimages"
        name="Arrêt Sur Images"
-       version="2.1.5"
+       version="2.1.6"
        provider-name="beenje">
   <requires>
     <import addon="xbmc.python" version="2.0"/>
diff --git a/plugin.video.arretsurimages/changelog.txt 
b/plugin.video.arretsurimages/changelog.txt
index 9809dce..039406b 100644
--- a/plugin.video.arretsurimages/changelog.txt
+++ b/plugin.video.arretsurimages/changelog.txt
@@ -1,3 +1,7 @@
+[B]Version 2.1.6[/B]
+
+- Fixed title not displayed due to punctuation between double-quote
+
 [B]Version 2.1.5[/B]
 
 - New category "@ux sources" added
diff --git a/plugin.video.arretsurimages/resources/lib/util.py 
b/plugin.video.arretsurimages/resources/lib/util.py
index e26a19b..4207612 100644
--- a/plugin.video.arretsurimages/resources/lib/util.py
+++ b/plugin.video.arretsurimages/resources/lib/util.py
@@ -44,7 +44,7 @@ def cleanHTML(html):
     """Return a clean HTML to help beautifulsoup and the parsing"""
     # Remove the double double quotes in title
     # (otherwise beautifulsoup just get an empty string)
-    html = re.sub('title=""(.+)"">', 'title="\\1">', html)
+    html = re.sub('title=""(.+)">', 'title="\\1>', html)
     # Replace html-encoded nonbreaking space
     html = html.replace('&nbsp;', ' ')
     return html

-----------------------------------------------------------------------

Summary of changes:
 plugin.video.arretsurimages/addon.xml             |    2 +-
 plugin.video.arretsurimages/changelog.txt         |    4 ++++
 plugin.video.arretsurimages/resources/lib/util.py |    2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to