From baf2bfd5049e946e5fa1b540cbc0e8008c33102f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 6 Jul 2015 23:04:44 +0300 Subject: [PATCH] remove old-style per-site plugins --- plugins/af_elreg/init.php | 50 ------------------------------------ plugins/af_natgeo/init.php | 52 -------------------------------------- plugins/af_sciam/init.php | 46 --------------------------------- 3 files changed, 148 deletions(-) delete mode 100644 plugins/af_elreg/init.php delete mode 100644 plugins/af_natgeo/init.php delete mode 100644 plugins/af_sciam/init.php diff --git a/plugins/af_elreg/init.php b/plugins/af_elreg/init.php deleted file mode 100644 index c8d5516e..00000000 --- a/plugins/af_elreg/init.php +++ /dev/null @@ -1,50 +0,0 @@ -host = $host; - - $host->add_hook($host::HOOK_ARTICLE_FILTER, $this); - } - - function hook_article_filter($article) { - if (strpos($article["link"], "theregister.co.uk") !== FALSE) { - - $doc = new DOMDocument(); - @$doc->loadHTML(fetch_file_contents($article["link"])); - - $basenode = false; - - if ($doc) { - $xpath = new DOMXPath($doc); - - $trash = $xpath->query("//*[@class='wptl top' or @class='wptl btm']"); - - foreach ($trash as $t) { - $t->parentNode->removeChild($t); - } - - $basenode = $doc->getElementById("body"); - - if ($basenode) { - $article["content"] = $doc->saveXML($basenode); - } - } - } - - return $article; - } - - function api_version() { - return 2; - } -} -?> diff --git a/plugins/af_natgeo/init.php b/plugins/af_natgeo/init.php deleted file mode 100644 index 52a89e92..00000000 --- a/plugins/af_natgeo/init.php +++ /dev/null @@ -1,52 +0,0 @@ -host = $host; - - $host->add_hook($host::HOOK_ARTICLE_FILTER, $this); - } - - function hook_article_filter($article) { - $owner_uid = $article["owner_uid"]; - - if (strpos($article["link"], "nationalgeographic.com") !== FALSE) { - - $doc = new DOMDocument(); - @$doc->loadHTML(fetch_file_contents($article["link"])); - - $basenode = false; - - if ($doc) { - $xpath = new DOMXPath($doc); - - $basenode = $doc->getElementById("content_mainA"); - - $trash = $xpath->query("//*[@class='aside' or @id='livefyre' or @id='powered_by_livefyre' or @class='social_buttons']"); - - foreach ($trash as $t) { - $t->parentNode->removeChild($t); - } - - if ($basenode) { - $article["content"] = $doc->saveXML($basenode); - } - } - } - - return $article; - } - - function api_version() { - return 2; - } -} -?> diff --git a/plugins/af_sciam/init.php b/plugins/af_sciam/init.php deleted file mode 100644 index 9c14515e..00000000 --- a/plugins/af_sciam/init.php +++ /dev/null @@ -1,46 +0,0 @@ -host = $host; - - $host->add_hook($host::HOOK_ARTICLE_FILTER, $this); - } - - function hook_article_filter($article) { - $owner_uid = $article["owner_uid"]; - - if (strpos($article["link"], "scientificamerican.com") !== FALSE || strpos($article["link"], "rss.sciam.com") !== FALSE) { - - $doc = new DOMDocument(); - @$doc->loadHTML(fetch_file_contents($article["link"])); - - $basenode = false; - - if ($doc) { - $xpath = new DOMXpath($doc); - - $basenode = $xpath->query("//*[@id='singleBlogPost' or @id='articleContent']")->item(0); - - if ($basenode) { - $article["content"] = $doc->saveXML($basenode); - } - } - } - - return $article; - } - - function api_version() { - return 2; - } -} -?> -- 2.39.2