From 73963a21b23d7b463042311a9cd666756b4d9984 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 21 Sep 2015 12:25:04 +0300 Subject: [PATCH] af_comics: fix for whomp --- .../filters/af_comics_comicpress.php | 3 +- plugins/af_comics/filters/af_comics_whomp.php | 37 +++++++++++++++++++ 2 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 plugins/af_comics/filters/af_comics_whomp.php diff --git a/plugins/af_comics/filters/af_comics_comicpress.php b/plugins/af_comics/filters/af_comics_comicpress.php index ec4b7ac5..30683759 100644 --- a/plugins/af_comics/filters/af_comics_comicpress.php +++ b/plugins/af_comics/filters/af_comics_comicpress.php @@ -2,7 +2,7 @@ class Af_Comics_ComicPress extends Af_ComicFilter { function supported() { - return array("Buni", "Buttersafe", "Whomp!", "Happy Jar", "CSection", + return array("Buni", "Buttersafe", "Happy Jar", "CSection", "Extra Fabulous Comics"); } @@ -11,7 +11,6 @@ class Af_Comics_ComicPress extends Af_ComicFilter { if (strpos($article["guid"], "bunicomic.com") !== FALSE || strpos($article["guid"], "buttersafe.com") !== FALSE || - strpos($article["guid"], "whompcomic.com") !== FALSE || strpos($article["guid"], "extrafabulouscomics.com") !== FALSE || strpos($article["guid"], "happyjar.com") !== FALSE || strpos($article["guid"], "csectioncomics.com") !== FALSE) { diff --git a/plugins/af_comics/filters/af_comics_whomp.php b/plugins/af_comics/filters/af_comics_whomp.php new file mode 100644 index 00000000..5bc6a14e --- /dev/null +++ b/plugins/af_comics/filters/af_comics_whomp.php @@ -0,0 +1,37 @@ +loadHTML($res)) { + $xpath = new DOMXPath($doc); + $basenode = $xpath->query('//img[@id="cc-comic"]')->item(0); + + if ($basenode) { + $article["content"] = $doc->saveXML($basenode); + } + } + + return true; + } + + return false; + } +} +?> -- 2.39.2