forked from blallo/rss-bridge
Fix indentation and remove empty lines
This commit is contained in:
parent
7ff901de08
commit
58b3261fbb
1 changed files with 29 additions and 31 deletions
|
@ -2,13 +2,11 @@
|
||||||
class DeveloppezDotComBridge extends BridgeAbstract{
|
class DeveloppezDotComBridge extends BridgeAbstract{
|
||||||
|
|
||||||
public function loadMetadatas() {
|
public function loadMetadatas() {
|
||||||
|
|
||||||
$this->maintainer = "polopollo";
|
$this->maintainer = "polopollo";
|
||||||
$this->name = "Developpez.com Actus (FR)";
|
$this->name = "Developpez.com Actus (FR)";
|
||||||
$this->uri = "http://www.developpez.com/";
|
$this->uri = "http://www.developpez.com/";
|
||||||
$this->description = "Returns the 15 newest posts from DeveloppezDotCom (full text).";
|
$this->description = "Returns the 15 newest posts from DeveloppezDotCom (full text).";
|
||||||
$this->update = "2014-07-14";
|
$this->update = "2016-08-03";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function DeveloppezDotComStripCDATA($string) {
|
function DeveloppezDotComStripCDATA($string) {
|
||||||
|
@ -17,7 +15,9 @@ class DeveloppezDotComBridge extends BridgeAbstract{
|
||||||
return $string;
|
return $string;
|
||||||
}
|
}
|
||||||
|
|
||||||
function convert_smart_quotes($string)//F***ing quotes from Microsoft Word badly encoded, here was the trick: http://stackoverflow.com/questions/1262038/how-to-replace-microsoft-encoded-quotes-in-php
|
// F***ing quotes from Microsoft Word badly encoded, here was the trick:
|
||||||
|
// http://stackoverflow.com/questions/1262038/how-to-replace-microsoft-encoded-quotes-in-php
|
||||||
|
function convert_smart_quotes($string)
|
||||||
{
|
{
|
||||||
$search = array(chr(145),
|
$search = array(chr(145),
|
||||||
chr(146),
|
chr(146),
|
||||||
|
@ -42,7 +42,6 @@ class DeveloppezDotComBridge extends BridgeAbstract{
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectData(array $param){
|
public function collectData(array $param){
|
||||||
|
|
||||||
$rssFeed = $this->file_get_html('http://www.developpez.com/index/rss') or $this->returnError('Could not request http://www.developpez.com/index/rss', 404);
|
$rssFeed = $this->file_get_html('http://www.developpez.com/index/rss') or $this->returnError('Could not request http://www.developpez.com/index/rss', 404);
|
||||||
$limit = 0;
|
$limit = 0;
|
||||||
|
|
||||||
|
@ -58,7 +57,6 @@ class DeveloppezDotComBridge extends BridgeAbstract{
|
||||||
$limit++;
|
$limit++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getName(){
|
public function getName(){
|
||||||
|
|
Loading…
Reference in a new issue