]> git.wh0rd.org - tt-rss.git/commitdiff
remove old-style per-site plugins
authorAndrew Dolgov <noreply@fakecake.org>
Mon, 6 Jul 2015 20:04:44 +0000 (23:04 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Mon, 6 Jul 2015 20:04:44 +0000 (23:04 +0300)
plugins/af_elreg/init.php [deleted file]
plugins/af_natgeo/init.php [deleted file]
plugins/af_sciam/init.php [deleted file]

diff --git a/plugins/af_elreg/init.php b/plugins/af_elreg/init.php
deleted file mode 100644 (file)
index c8d5516..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-class Af_ElReg extends Plugin {
-
-       private $host;
-
-       function about() {
-               return array(1.0,
-                       "Fetch content of The Register feeds",
-                       "fox");
-       }
-
-       function init($host) {
-               $this->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 (file)
index 52a89e9..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-<?php
-class Af_NatGeo extends Plugin {
-
-       private $host;
-
-       function about() {
-               return array(1.0,
-                       "Fetch content of National Geographic feeds",
-                       "fox");
-       }
-
-       function init($host) {
-               $this->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 (file)
index 9c14515..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-<?php
-class Af_SciAm extends Plugin {
-
-       private $host;
-
-       function about() {
-               return array(1.0,
-                       "Fetch content of Scientific American feeds",
-                       "fox");
-       }
-
-       function init($host) {
-               $this->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;
-       }
-}
-?>