diff --git a/bridges/Rue89Bridge.php b/bridges/Rue89Bridge.php
new file mode 100644
index 0000000..3bb313d
--- /dev/null
+++ b/bridges/Rue89Bridge.php
@@ -0,0 +1,50 @@
+', '', $string);
+ return $string;
+ }
+ function Rue89ExtractContent($url) {
+ $html2 = file_get_html($url);
+ //$text = $html2->find('div[class=text]', 0)->innertext;
+ $text = $html2->find('div article', 0)->innertext;
+ //$text = $html2->find('div.article', 0)->innertext;
+ //$text = $html2->find('div[id=main]', 0)->innertext;
+ //$text = $html2->find('div[id=article]', 0)->innertext;
+ //$text = preg_replace('/(
.+?)+(<\/div>)/i','',$text);
+ return $text;
+ }
+ $html = file_get_html('http://rue89.feedsportal.com/c/33822/f/608948/index.rss') or $this->returnError('Could not request Rue89.', 404);
+ $limit = 0;
+ foreach($html->find('item') as $element) {
+ if($limit < 5) {
+ $item = new \Item();
+ $item->title = Rue89StripCDATA($element->find('title', 0)->innertext);
+ $item->uri = Rue89StripCDATA($element->find('guid', 0)->plaintext);
+ $item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
+ $item->content = Rue89ExtractContent($item->uri);
+ $this->items[] = $item;
+ $limit++;
+ }
+ }
+
+ }
+ public function getName(){
+ return 'Rue89';
+ }
+ public function getURI(){
+ return 'http://rue89.nouvelobs.com/';
+ }
+ public function getCacheDuration(){
+ return 3600; // 1 hour
+ }
+}