The branch, gotham has been updated
       via  994d8fd24a1c9205e1809c1f9297759b956eab1f (commit)
      from  7dc127391775728b7a946b083e66a07706a4d675 (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=994d8fd24a1c9205e1809c1f9297759b956eab1f

commit 994d8fd24a1c9205e1809c1f9297759b956eab1f
Author: Martijn Kaijser <[email protected]>
Date:   Fri Apr 4 08:24:35 2014 +0200

    [service.subtitles.greeksubtitles.eu] 1.0.1

diff --git a/service.subtitles.greeksubtitles.eu/addon.xml 
b/service.subtitles.greeksubtitles.eu/addon.xml
index b323c5d..9f27b8d 100644
--- a/service.subtitles.greeksubtitles.eu/addon.xml
+++ b/service.subtitles.greeksubtitles.eu/addon.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="service.subtitles.greeksubtitles.eu" name="GreekSubtitles.eu" 
version="1.0.0" provider-name="lambda">
+<addon id="service.subtitles.greeksubtitles.eu" name="GreekSubtitles.eu" 
version="1.0.1" provider-name="lambda">
        <requires>
                <import addon="xbmc.python" version="2.14.0"/>
-               <import addon="script.common.plugin.cache" version="0.9.1"/>
+               <import addon="script.module.parsedom" version="0.9.1"/>
                <import addon="script.module.metahandler"/>
                <import addon="script.module.urlresolver"/>
        </requires>
diff --git a/service.subtitles.greeksubtitles.eu/changelog.txt 
b/service.subtitles.greeksubtitles.eu/changelog.txt
index f3fe657..daf8fc4 100644
--- a/service.subtitles.greeksubtitles.eu/changelog.txt
+++ b/service.subtitles.greeksubtitles.eu/changelog.txt
@@ -1,4 +1,11 @@
 ------------------------
+GreekSubtitles.eu v1.0.1 (3-Apr-14)
+------------------------
+
+- Domain changed to GreekSubs.eu.
+
+
+------------------------
 GreekSubtitles.eu v1.0.0 (12-Mar-14)
 ------------------------
 
diff --git a/service.subtitles.greeksubtitles.eu/service.py 
b/service.subtitles.greeksubtitles.eu/service.py
index 8d565b3..6c956a5 100644
--- a/service.subtitles.greeksubtitles.eu/service.py
+++ b/service.subtitles.greeksubtitles.eu/service.py
@@ -180,7 +180,7 @@ class subtitles:
     def get(self, query):
         try:
             query = ' '.join(urllib.unquote_plus(re.sub('%\w\w|\d{4}', ' ', 
urllib.quote_plus(query))).split())
-            url = 'http://www.greeksubtitles.eu/subtitles/search/%s' % 
urllib.quote_plus(query)
+            url = 'http://www.greeksubs.eu/subtitles/search/%s' % 
urllib.quote_plus(query)
 
             result = getUrl(url).result
             subtitles = common.parseDOM(result, "tr", attrs = { "class": 
"tipsyN" })
@@ -190,14 +190,14 @@ class subtitles:
 
         for subtitle in subtitles:
             try:
-                try: uploader = common.parseDOM(subtitle, "a", attrs = { 
"href": "http://www.greeksubtitles.eu/subtitles/user/.+?"; })[0]
+                try: uploader = common.parseDOM(subtitle, "a", attrs = { 
"href": "http://www.greeksubs.eu/subtitles/user/.+?"; })[0]
                 except: uploader = 'other'
 
-                try: downloads = common.parseDOM(subtitle, "a", attrs = { 
"href": "http://www.greeksubtitles.eu/subinfo/.+?"; })[-1]
+                try: downloads = common.parseDOM(subtitle, "a", attrs = { 
"href": "http://www.greeksubs.eu/subinfo/.+?"; })[-1]
                 except: downloads = '0'
                 downloads =re.sub('[^0-9]', '', downloads)
 
-                name = common.parseDOM(subtitle, "a", attrs = { "href": 
"http://www.greeksubtitles.eu/subinfo/.+?"; })[0]
+                name = common.parseDOM(subtitle, "a", attrs = { "href": 
"http://www.greeksubs.eu/subinfo/.+?"; })[0]
                 name = ' '.join(re.sub('<.+?>', '', name).split())
                 name = '[%s] %s [%s DLs]' % (uploader, name, downloads)
                 name = common.replaceHTMLCodes(name)

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

Summary of changes:
 service.subtitles.greeksubtitles.eu/addon.xml     |    4 ++--
 service.subtitles.greeksubtitles.eu/changelog.txt |    7 +++++++
 service.subtitles.greeksubtitles.eu/service.py    |    8 ++++----
 3 files changed, 13 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
Scripts

------------------------------------------------------------------------------
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to