1
0
Fork 0
forked from blallo/rss-bridge

Fix LesJoiesDuCode / TheCodingLove bridges

Retrieve the .gif instead of the static .jpg that is now in the HTML source
This commit is contained in:
Clément Parisot 2015-02-04 14:05:34 +01:00
parent a2bacd09eb
commit 8e44a01b2a
2 changed files with 17 additions and 3 deletions

View file

@ -4,7 +4,7 @@
* @name Les Joies Du Code * @name Les Joies Du Code
* @homepage http://lesjoiesducode.fr/ * @homepage http://lesjoiesducode.fr/
* @description LesJoiesDuCode * @description LesJoiesDuCode
* @update 30/01/2014 * @update 04/02/2015
* initial maintainer: superbaillot.net * initial maintainer: superbaillot.net
*/ */
class LesJoiesDuCodeBridge extends BridgeAbstract{ class LesJoiesDuCodeBridge extends BridgeAbstract{
@ -20,6 +20,13 @@ class LesJoiesDuCodeBridge extends BridgeAbstract{
$url = $temp->href; $url = $temp->href;
$temp = $element->find('div.bodytype', 0); $temp = $element->find('div.bodytype', 0);
// retrieve .gif instead of static .jpg
$images = $temp->find('p.e img');
foreach($images as $image){
$img_src = str_replace(".jpg",".gif",$image->src);
$image->src = $img_src;
}
$content = $temp->innertext; $content = $temp->innertext;
$auteur = $temp->find('.c1 em', 0); $auteur = $temp->find('.c1 em', 0);

View file

@ -4,7 +4,7 @@
* @name The Coding Love * @name The Coding Love
* @homepage http://thecodinglove.com/ * @homepage http://thecodinglove.com/
* @description The Coding Love * @description The Coding Love
* @update 30/01/2014 * @update 04/02/2015
* initial maintainer: superbaillot.net * initial maintainer: superbaillot.net
*/ */
class TheCodingLoveBridge extends BridgeAbstract{ class TheCodingLoveBridge extends BridgeAbstract{
@ -20,8 +20,15 @@ class TheCodingLoveBridge extends BridgeAbstract{
$url = $temp->href; $url = $temp->href;
$temp = $element->find('div.bodytype', 0); $temp = $element->find('div.bodytype', 0);
$content = $temp->innertext;
// retrieve .gif instead of static .jpg
$images = $temp->find('p.e img');
foreach($images as $image){
$img_src = str_replace(".jpg",".gif",$image->src);
$image->src = $img_src;
}
$content = $temp->innertext;
$auteur = $temp->find('.c1 em', 0); $auteur = $temp->find('.c1 em', 0);
$pos = strpos($auteur->innertext, "by"); $pos = strpos($auteur->innertext, "by");