From 4716ecd71d83e6c583e3f1acaf95de9624e368fd Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Thu, 25 Apr 2013 21:50:27 +0200 Subject: [PATCH] Carciphona description. --- dosagelib/plugins/c.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dosagelib/plugins/c.py b/dosagelib/plugins/c.py index d7e806fe3..a2a5f2190 100644 --- a/dosagelib/plugins/c.py +++ b/dosagelib/plugins/c.py @@ -32,12 +32,12 @@ class CaptainSNES(_BasicScraper): class Carciphona(_BasicScraper): - description = u'Fantasy webcomic by Shilin' + description = u'Fantasy webcomic by Shilin. In an era where magic is forbidden, a sorceress struggles to restore her once peaceful life.' url = 'http://carciphona.com/' stripUrl = url + 'view.php?page=%s&chapter=%s' imageSearch = compile(tagre("div", "style", r'background-image:url\((_pages[^)]*)\)')) - prevSearch = compile(tagre("a", "href", r'(view.php?[^"]*)', after="prevarea")) - latestSearch = compile(tagre("a", "href", r'(view.php?[^"]*)') + + prevSearch = compile(tagre("a", "href", r'(view\.php?[^"]*)', after="prevarea")) + latestSearch = compile(tagre("a", "href", r'(view\.php?[^"]*)') + tagre("div", "class", "linkslast")) help = 'Index format: None' starter = indirectStarter(url, latestSearch)