From be591d19e0b6e20301bb73c57417ac955bc1e32c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20Mazi=C3=A8re?= Date: Thu, 18 Aug 2016 22:55:16 +0200 Subject: [PATCH] remove bridges already removed upstream MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pierre Mazière --- bridges/CoinDeskBridge.php | 56 --------------------------- bridges/FSBridge.php | 56 --------------------------- bridges/FrandroidBridge.php | 69 ---------------------------------- bridges/LeMotDuJourBridge.php | 55 --------------------------- bridges/MalikiBridge.php | 60 ----------------------------- bridges/MemoLinuxBridge.php | 58 ---------------------------- bridges/OpenTheoryBridge.php | 56 --------------------------- bridges/RaymondBridge.php | 53 -------------------------- bridges/ScilogsBridge.php | 54 -------------------------- bridges/SegfaultMintBridge.php | 55 --------------------------- bridges/TuxboardBridge.php | 64 ------------------------------- bridges/WikipediaDEBridge.php | 48 ----------------------- bridges/WikipediaENBridge.php | 44 ---------------------- bridges/WikipediaEOBridge.php | 44 ---------------------- bridges/WikipediaFRBridge.php | 46 ----------------------- 15 files changed, 818 deletions(-) delete mode 100644 bridges/CoinDeskBridge.php delete mode 100644 bridges/FSBridge.php delete mode 100644 bridges/FrandroidBridge.php delete mode 100644 bridges/LeMotDuJourBridge.php delete mode 100644 bridges/MalikiBridge.php delete mode 100644 bridges/MemoLinuxBridge.php delete mode 100644 bridges/OpenTheoryBridge.php delete mode 100644 bridges/RaymondBridge.php delete mode 100644 bridges/ScilogsBridge.php delete mode 100644 bridges/SegfaultMintBridge.php delete mode 100644 bridges/TuxboardBridge.php delete mode 100644 bridges/WikipediaDEBridge.php delete mode 100644 bridges/WikipediaENBridge.php delete mode 100644 bridges/WikipediaEOBridge.php delete mode 100644 bridges/WikipediaFRBridge.php diff --git a/bridges/CoinDeskBridge.php b/bridges/CoinDeskBridge.php deleted file mode 100644 index 5dcb1c08..00000000 --- a/bridges/CoinDeskBridge.php +++ /dev/null @@ -1,56 +0,0 @@ -maintainer = "mitsukarenai"; - $this->name = "CoinDesk"; - $this->uri = "http://www.coindesk.com/"; - $this->description = "Returns the 5 newest posts from CoinDesk (full text)"; - $this->update = "2014-05-30"; - - } - - public function collectData(array $param){ - - function CoinDeskStripCDATA($string) { - $string = str_replace('', '', $string); - return $string; - } - function CoinDeskExtractContent($url) { - $html2 = $this->getSimpleHTMLDOM($url); - $text = $html2->find('div.single-content', 0)->innertext; - $text = strip_tags($text, '

'); - return $text; - } - $html = $this->getSimpleHTMLDOM('http://www.coindesk.com/feed/atom/') or $this->returnError('Could not request CoinDesk.', 404); - $limit = 0; - - foreach($html->find('entry') as $element) { - if($limit < 5) { - $item = new \Item(); - $item->title = CoinDeskStripCDATA($element->find('title', 0)->innertext); - $item->author = $element->find('author', 0)->plaintext; - $item->uri = $element->find('link', 0)->href; - $item->timestamp = strtotime($element->find('published', 0)->plaintext); - $item->content = CoinDeskExtractContent($item->uri); - $this->items[] = $item; - $limit++; - } - } - - } - - public function getName(){ - return 'CoinDesk'; - } - - public function getURI(){ - return 'http://www.coindesk.com/'; - } - - public function getCacheDuration(){ - return 1800; // 30min - } -} diff --git a/bridges/FSBridge.php b/bridges/FSBridge.php deleted file mode 100644 index cd212c3d..00000000 --- a/bridges/FSBridge.php +++ /dev/null @@ -1,56 +0,0 @@ -maintainer = "qwertygc"; - $this->name = "Futurasciences"; - $this->uri = "http://www.futura-sciences.com"; - $this->description = "Returns the 5 newest posts from FS (full text)"; - $this->update = "03/11/2015"; - - } - - public function collectData(array $param){ - - function FS_StripCDATA($string) { - $string = str_replace('', '', $string); - return $string; - } - function FS_ExtractContent($url) { - $html2 = $this->getSimpleHTMLDOM($url); - $text = $html2->find('div.fiche-actualite', 0)->innertext; - $text = preg_replace('@]*?>.*?@si', '', $text); - return $text; - } - $html = $this->getSimpleHTMLDOM('http://www.futura-sciences.com/rss/actualites.xml') or $this->returnError('Could not request Futura Sciences.', 404); - $limit = 0; - - foreach($html->find('item') as $element) { - if($limit < 5) { - $item = new \Item(); - $item->title = FS_StripCDATA($element->find('title', 0)->innertext); - $item->uri = FS_StripCDATA($element->find('guid', 0)->plaintext); - $item->timestamp = strtotime($element->find('pubDate', 0)->plaintext); - $item->content = FS_ExtractContent($item->uri); - $this->items[] = $item; - $limit++; - } - } - - } - - public function getName(){ - return 'Futura Sciences'; - } - - public function getURI(){ - return 'http://www.futura-sciences.com/'; - } - - public function getCacheDuration(){ - return 3600; // 1 hour - // return 0; // 1 hour - } -} diff --git a/bridges/FrandroidBridge.php b/bridges/FrandroidBridge.php deleted file mode 100644 index 82bd62fe..00000000 --- a/bridges/FrandroidBridge.php +++ /dev/null @@ -1,69 +0,0 @@ -maintainer = "Daiyousei"; - $this->name = "Frandroid"; - $this->uri = "http://www.frandroid.com/"; - $this->description = "Returns the RSS feed from Frandroid (full text articles)"; - $this->update = "2015-03-05"; - - } - - public function collectData(array $param) - { - - function FrandroidStripCDATA($string) - { - $string = str_replace('', '', $string); - return $string; - } - function FrandroidExtractContent($url) - { - $html2 = $this->getSimpleHTMLDOM($url); - $html3 = $html2->find('div.post-content', 0); - $html3->find('div.no-sidebar-ad-top', 0)->outertext = ''; - $ret = $html3->find('div.shortcode-container'); - foreach ($ret as $value) { - $value->outertext = ''; - } - - $html3->find('div#hrr-link', 0)->outertext = ''; - $text = $html3->innertext; - $text = strip_tags($text, '