[portal-commits] JBoss Portal SVN: r9035 - in branches/JBoss_Portal_Branch_2_6/widget/src: main/org/jboss/portal/widget and 2 other directories.
portal-commits at lists.jboss.org
portal-commits at lists.jboss.org
Tue Nov 20 08:57:10 EST 2007
Author: emuckenhuber
Date: 2007-11-20 08:57:10 -0500 (Tue, 20 Nov 2007)
New Revision: 9035
Added:
branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/test/widget/google/GGQueryTestCase.java
branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/
branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/DirectoryResultFailure.java
branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetException.java
branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetFailure.java
branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetFetchException.java
branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetMetaDataParseException.java
branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetNotSupportedException.java
branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/json.response_fail
branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_1_fail.xml
branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_2.xml
branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_2_fail.xml
Log:
missing stuff
Added: branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/test/widget/google/GGQueryTestCase.java
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/test/widget/google/GGQueryTestCase.java (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/test/widget/google/GGQueryTestCase.java 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,60 @@
+/******************************************************************************
+ * JBoss, a division of Red Hat *
+ * Copyright 2006, Red Hat Middleware, LLC, and individual *
+ * contributors as indicated by the @authors tag. See the *
+ * copyright.txt in the distribution for a full listing of *
+ * individual contributors. *
+ * *
+ * This is free software; you can redistribute it and/or modify it *
+ * under the terms of the GNU Lesser General Public License as *
+ * published by the Free Software Foundation; either version 2.1 of *
+ * the License, or (at your option) any later version. *
+ * *
+ * This software is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+ * Lesser General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this software; if not, write to the Free *
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
+ ******************************************************************************/
+package org.jboss.portal.test.widget.google;
+
+import java.net.MalformedURLException;
+import java.util.Locale;
+
+import junit.framework.TestCase;
+
+import org.jboss.portal.widget.google.provider.GGQuery;
+
+/**
+ * @author <a href="mailto:emuckenh at redhat.com">Emanuel Muckenhuber</a>
+ * @version $Revision$
+ */
+public class GGQueryTestCase extends TestCase
+{
+
+ public void test01()
+ {
+ try
+ {
+ GGQuery q = new GGQuery(0, 10, "foo", "foo", new Locale("de", "at"));
+ assertEquals("http://www.google.com/ig/directory?synd=jboss&output=rss&num=10&cat=foo&q=foo&lang=de&country=AT", q.buildQueryURL().toString());
+ }
+ catch(MalformedURLException e)
+ {
+ fail("MalformedURLException");
+ }
+ }
+
+ public void test02()
+ {
+ GGQuery q1 = new GGQuery(0, 10, "foo", "foo", new Locale("de", "at"));
+ GGQuery q2 = new GGQuery(0, 10, "foo", "foo", new Locale("de", "at"));
+ assertTrue(q1.equals(q2));
+ }
+
+}
+
Added: branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/DirectoryResultFailure.java
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/DirectoryResultFailure.java (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/DirectoryResultFailure.java 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,80 @@
+/******************************************************************************
+ * JBoss, a division of Red Hat *
+ * Copyright 2006, Red Hat Middleware, LLC, and individual *
+ * contributors as indicated by the @authors tag. See the *
+ * copyright.txt in the distribution for a full listing of *
+ * individual contributors. *
+ * *
+ * This is free software; you can redistribute it and/or modify it *
+ * under the terms of the GNU Lesser General Public License as *
+ * published by the Free Software Foundation; either version 2.1 of *
+ * the License, or (at your option) any later version. *
+ * *
+ * This software is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+ * Lesser General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this software; if not, write to the Free *
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
+ ******************************************************************************/
+package org.jboss.portal.widget.exceptions;
+
+import java.net.URL;
+import java.util.Collections;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Locale;
+
+import org.jboss.portal.widget.DirectoryQueryResult;
+import org.jboss.portal.widget.DirectoryQueryResultEntry;
+
+/**
+ * @author <a href="mailto:emuckenh at redhat.com">Emanuel Muckenhuber</a>
+ * @version $Revision$
+ */
+public class DirectoryResultFailure implements DirectoryQueryResult
+{
+
+ /** . */
+ private final Exception e;
+
+ public DirectoryResultFailure(Exception e)
+ {
+ this.e = e;
+ }
+
+ public String getMessage()
+ {
+ return e.getMessage();
+ }
+
+ public Throwable getCause()
+ {
+ return e.getCause();
+ }
+
+ public List<URL> collection()
+ {
+ return Collections.EMPTY_LIST;
+ }
+
+ public Iterator<? extends DirectoryQueryResultEntry> entries()
+ {
+ return Collections.EMPTY_LIST.iterator();
+ }
+
+ public int resultSize()
+ {
+ return 0;
+ }
+
+ public String getLocalizedErrorMessage(Locale locale)
+ {
+ return "Directory lookup failed";
+ }
+
+}
+
Added: branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetException.java
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetException.java (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetException.java 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,47 @@
+/******************************************************************************
+ * JBoss, a division of Red Hat *
+ * Copyright 2006, Red Hat Middleware, LLC, and individual *
+ * contributors as indicated by the @authors tag. See the *
+ * copyright.txt in the distribution for a full listing of *
+ * individual contributors. *
+ * *
+ * This is free software; you can redistribute it and/or modify it *
+ * under the terms of the GNU Lesser General Public License as *
+ * published by the Free Software Foundation; either version 2.1 of *
+ * the License, or (at your option) any later version. *
+ * *
+ * This software is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+ * Lesser General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this software; if not, write to the Free *
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
+ ******************************************************************************/
+package org.jboss.portal.widget.exceptions;
+
+/**
+ * @author <a href="mailto:emuckenh at redhat.com">Emanuel Muckenhuber</a>
+ * @version $Revision$
+ */
+public class WidgetException extends Exception
+{
+
+ public WidgetException(String message)
+ {
+ super(message);
+ }
+
+ public WidgetException(String message, Throwable cause)
+ {
+ super(message, cause);
+ }
+
+ public WidgetException(Throwable cause)
+ {
+ super(cause);
+ }
+}
+
Added: branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetFailure.java
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetFailure.java (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetFailure.java 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,113 @@
+/******************************************************************************
+ * JBoss, a division of Red Hat *
+ * Copyright 2006, Red Hat Middleware, LLC, and individual *
+ * contributors as indicated by the @authors tag. See the *
+ * copyright.txt in the distribution for a full listing of *
+ * individual contributors. *
+ * *
+ * This is free software; you can redistribute it and/or modify it *
+ * under the terms of the GNU Lesser General Public License as *
+ * published by the Free Software Foundation; either version 2.1 of *
+ * the License, or (at your option) any later version. *
+ * *
+ * This software is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+ * Lesser General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this software; if not, write to the Free *
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
+ ******************************************************************************/
+package org.jboss.portal.widget.exceptions;
+
+import java.net.URL;
+import java.util.Locale;
+import java.util.Map;
+
+import org.jboss.portal.common.i18n.LocalizedString;
+import org.jboss.portal.widget.Widget;
+
+/**
+ * @author <a href="mailto:emuckenh at redhat.com">Emanuel Muckenhuber</a>
+ * @version $Revision$
+ */
+public class WidgetFailure implements Widget
+{
+
+ /** . */
+ private final URL url;
+
+ /** . */
+ private final Exception e;
+
+ public WidgetFailure(URL url, Exception e)
+ {
+ this.url = url;
+ this.e = e;
+ }
+
+ public String getMessage()
+ {
+ return e.getMessage();
+ }
+
+ public Throwable getCause()
+ {
+ return e.getCause();
+ }
+
+ public String getId()
+ {
+ return url.toString();
+ }
+
+ public String render(Map parameters)
+ {
+ return render(parameters, null);
+ }
+
+ public String render(Map parameters, Locale locale)
+ {
+ return getLocalizedErrorMessage(locale);
+ }
+
+ public String getLocalizedErrorMessage(Locale locale)
+ {
+ String urlString = url != null ? url.toString() : null;
+ Throwable cause = e.getCause();
+ if ( cause instanceof WidgetException )
+ {
+ if (cause instanceof WidgetNotSupportedException)
+ {
+ return "This widget type is not supported: "+ urlString;
+ }
+ else
+ if (cause instanceof WidgetFetchException)
+ {
+ return "Failed to fetch Widget: " + urlString;
+ }
+ else
+ {
+ return "Error while retreiving Widget: "+ urlString;
+ }
+ }
+ else
+ {
+ return "Error getting widget: "+ urlString;
+ }
+ }
+
+ public LocalizedString getDescription()
+ {
+ // FIXME getDescription
+ return null;
+ }
+
+ public LocalizedString getTitle()
+ {
+ // FIXME getTitle
+ return null;
+ }
+}
Added: branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetFetchException.java
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetFetchException.java (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetFetchException.java 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,48 @@
+/******************************************************************************
+ * JBoss, a division of Red Hat *
+ * Copyright 2006, Red Hat Middleware, LLC, and individual *
+ * contributors as indicated by the @authors tag. See the *
+ * copyright.txt in the distribution for a full listing of *
+ * individual contributors. *
+ * *
+ * This is free software; you can redistribute it and/or modify it *
+ * under the terms of the GNU Lesser General Public License as *
+ * published by the Free Software Foundation; either version 2.1 of *
+ * the License, or (at your option) any later version. *
+ * *
+ * This software is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+ * Lesser General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this software; if not, write to the Free *
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
+ ******************************************************************************/
+package org.jboss.portal.widget.exceptions;
+
+/**
+ * @author <a href="mailto:emuckenh at redhat.com">Emanuel Muckenhuber</a>
+ * @version $Revision$
+ */
+public class WidgetFetchException extends WidgetException
+{
+
+ public WidgetFetchException(String message)
+ {
+ super(message);
+ }
+
+ public WidgetFetchException(String message, Throwable cause)
+ {
+ super(message, cause);
+ }
+
+ public WidgetFetchException(Throwable cause)
+ {
+ super(cause);
+ }
+
+}
+
Added: branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetMetaDataParseException.java
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetMetaDataParseException.java (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetMetaDataParseException.java 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,48 @@
+/******************************************************************************
+ * JBoss, a division of Red Hat *
+ * Copyright 2006, Red Hat Middleware, LLC, and individual *
+ * contributors as indicated by the @authors tag. See the *
+ * copyright.txt in the distribution for a full listing of *
+ * individual contributors. *
+ * *
+ * This is free software; you can redistribute it and/or modify it *
+ * under the terms of the GNU Lesser General Public License as *
+ * published by the Free Software Foundation; either version 2.1 of *
+ * the License, or (at your option) any later version. *
+ * *
+ * This software is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+ * Lesser General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this software; if not, write to the Free *
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
+ ******************************************************************************/
+package org.jboss.portal.widget.exceptions;
+
+/**
+ * @author <a href="mailto:emuckenh at redhat.com">Emanuel Muckenhuber</a>
+ * @version $Revision$
+ */
+public class WidgetMetaDataParseException extends WidgetException
+{
+
+ public WidgetMetaDataParseException(String message)
+ {
+ super(message);
+ }
+
+ public WidgetMetaDataParseException(String message, Throwable cause)
+ {
+ super(message, cause);
+ }
+
+ public WidgetMetaDataParseException(Throwable cause)
+ {
+ super(cause);
+ }
+
+}
+
Added: branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetNotSupportedException.java
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetNotSupportedException.java (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/main/org/jboss/portal/widget/exceptions/WidgetNotSupportedException.java 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,48 @@
+/******************************************************************************
+ * JBoss, a division of Red Hat *
+ * Copyright 2006, Red Hat Middleware, LLC, and individual *
+ * contributors as indicated by the @authors tag. See the *
+ * copyright.txt in the distribution for a full listing of *
+ * individual contributors. *
+ * *
+ * This is free software; you can redistribute it and/or modify it *
+ * under the terms of the GNU Lesser General Public License as *
+ * published by the Free Software Foundation; either version 2.1 of *
+ * the License, or (at your option) any later version. *
+ * *
+ * This software is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+ * Lesser General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this software; if not, write to the Free *
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
+ ******************************************************************************/
+package org.jboss.portal.widget.exceptions;
+
+/**
+ * @author <a href="mailto:emuckenh at redhat.com">Emanuel Muckenhuber</a>
+ * @version $Revision$
+ */
+public class WidgetNotSupportedException extends WidgetException
+{
+
+ public WidgetNotSupportedException(String message)
+ {
+ super(message);
+ }
+
+ public WidgetNotSupportedException(String message, Throwable cause)
+ {
+ super(message, cause);
+ }
+
+ public WidgetNotSupportedException(Throwable cause)
+ {
+ super(cause);
+ }
+
+}
+
Added: branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/json.response_fail
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/json.response_fail (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/json.response_fail 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,4 @@
+{"title":"What time is it ?",
+"icon":{"0":"http:\/\/nvmodules.typhon.net\/ben\/time.ico"},
+"metas":{},
+"preferences":[]}
Added: branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_1_fail.xml
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_1_fail.xml (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_1_fail.xml 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,105 @@
+<?xml version="1.0" encoding="utf-8"?>
+<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
+ <channel>
+ <title><![CDATA[Netvibes ecosystem latest modules]]></title>
+ <link>http://eco.netvibes.com</link>
+ <description><![CDATA[Netvibes ecosystem latest modules]]></description>
+ <pubDate>Fri, 16 Nov 2007 12:44:27 +0000</pubDate>
+ <generator>Netvibes Ecosystem</generator>
+
+ <docs>http://blogs.law.harvard.edu/tech/rss</docs>
+ <!--
+ <item>
+ -->
+ <title><![CDATA[The Jerusalem Post]]></title>
+ <link>http://www.netvibes.com/modules/multipleFeeds/multipleFeeds.php?provider=jerusalempost</link>
+ <guid>http://eco.netvibes.com/6/206552</guid>
+ <description><![CDATA[Latest news from The Jerusalem Post, the world's top English-language daily newspaper covering Israel, the Middle East and the Jewish World.]]></description>
+ <pubDate>Thu, 15 Nov 2007 08:57:46 +0000</pubDate>
+
+ <enclosure url="http://eco.netvibes.com/thumb/206552" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[WMLScript reference]]></title>
+ <link>http://freebestoffer.com/downloads/wmlscript.html</link>
+ <guid>http://eco.netvibes.com/6/206470</guid>
+ <description><![CDATA[Search through WMLScript help, reference, tutorials and examples.]]></description>
+
+ <pubDate>Tue, 13 Nov 2007 16:13:34 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206470" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Web developer's help]]></title>
+ <link>http://freebestoffer.com/downloads/webdevel.html</link>
+ <guid>http://eco.netvibes.com/6/206469</guid>
+
+ <description><![CDATA[Search and browse help, tutorials, examples and reference documents on XML, XSLT, HTML, JavaScript, VBScript, Flash, SQL and more.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:36 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206469" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[VBScript reference]]></title>
+ <link>http://freebestoffer.com/downloads/vbscript.html</link>
+
+ <guid>http://eco.netvibes.com/6/206468</guid>
+ <description><![CDATA[Search through Visual Basic script help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:39 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206468" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[SVG reference]]></title>
+
+ <link>http://freebestoffer.com/downloads/svg.html</link>
+ <guid>http://eco.netvibes.com/6/206467</guid>
+ <description><![CDATA[Search through SVG help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:42 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206467" type="image/jpeg" length=""/>
+ </item>
+ <item>
+
+ <title><![CDATA[SQL reference]]></title>
+ <link>http://freebestoffer.com/downloads/sql.html</link>
+ <guid>http://eco.netvibes.com/6/206466</guid>
+ <description><![CDATA[Search through SQL help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:44 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206466" type="image/jpeg" length=""/>
+ </item>
+
+ <item>
+ <title><![CDATA[SMIL reference]]></title>
+ <link>http://freebestoffer.com/downloads/smil.html</link>
+ <guid>http://eco.netvibes.com/6/206465</guid>
+ <description><![CDATA[Search through SMIL help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:47 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206465" type="image/jpeg" length=""/>
+
+ </item>
+ <item>
+ <title><![CDATA[PHP reference]]></title>
+ <link>http://freebestoffer.com/downloads/php.html</link>
+ <guid>http://eco.netvibes.com/6/206464</guid>
+ <description><![CDATA[Search through PHP help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:51 +0000</pubDate>
+
+ <enclosure url="http://eco.netvibes.com/thumb/206464" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Javascript Reference]]></title>
+ <link>http://freebestoffer.com/downloads/javascript.html</link>
+ <guid>http://eco.netvibes.com/6/206463</guid>
+ <description><![CDATA[Search and browse Javascript Reference.]]></description>
+
+ <pubDate>Tue, 13 Nov 2007 16:13:54 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206463" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[HTML DOM Reference]]></title>
+ <link>http://freebestoffer.com/downloads/htmldom.html</link>
+ <guid>http://eco.netvibes.com/6/206459</guid>
+
+ <description><![CDATA[Search and browse HTML DOM Reference.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:59 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206459" type="image/jpeg" length=""/>
+ </item>
+ </channel>
+</rss>
\ No newline at end of file
Added: branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_2.xml
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_2.xml (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_2.xml 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,236 @@
+<?xml version="1.0" encoding="utf-8"?>
+<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
+ <channel>
+ <title><![CDATA[Netvibes ecosystem latest all]]></title>
+ <link>http://eco.netvibes.com</link>
+ <description><![CDATA[Netvibes ecosystem latest all]]></description>
+ <pubDate>Tue, 20 Nov 2007 08:46:15 +0000</pubDate>
+ <generator>Netvibes Ecosystem</generator>
+
+ <docs>http://blogs.law.harvard.edu/tech/rss</docs>
+ <item>
+ <title><![CDATA[Zeus`s Blog]]></title>
+ <link>http://eco.netvibes.com/2/206706</link>
+ <guid>http://eco.netvibes.com/2/206706</guid>
+ <description><![CDATA[A security news blog including the range of subjects networking, virtualization, hardware and software..]]></description>
+ <pubDate>Tue, 20 Nov 2007 03:07:19 +0000</pubDate>
+
+ <enclosure url="http://eco.netvibes.com/thumb/206706" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Off Topic ]]></title>
+ <link>http://eco.netvibes.com/2/206689</link>
+ <guid>http://eco.netvibes.com/2/206689</guid>
+ <description><![CDATA[Forum Off Topic di WinTricks RSS feed
+Politica arte cultura di tutto un po']]></description>
+
+ <pubDate>Mon, 19 Nov 2007 17:51:21 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206689" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Developpeur Web]]></title>
+ <link>http://eco.netvibes.com/4/206673</link>
+ <guid>http://eco.netvibes.com/4/206673</guid>
+
+ <description><![CDATA[Blog professionnel d'un développeur et concepteur d'applications web. Codes, librairies, idées et opinions.
+Auteur de Webappkit, QuizzGeek]]></description>
+ <pubDate>Mon, 19 Nov 2007 14:46:45 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206673" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[maestroalberto]]></title>
+ <link>http://eco.netvibes.com/2/206644</link>
+
+ <guid>http://eco.netvibes.com/2/206644</guid>
+ <description><![CDATA[Blog con novità e informazioni sulla vita digitale...]]></description>
+ <pubDate>Sun, 18 Nov 2007 15:38:36 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206644" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Túniti Noticias]]></title>
+
+ <link>http://eco.netvibes.com/2/206643</link>
+ <guid>http://eco.netvibes.com/2/206643</guid>
+ <description><![CDATA[Si quieres saber lo que pasa AHORA tuniti noticias es lo que buscas.
+
+Todo noticias actuales. Coge todas las noticias que se envian a meneame, fresqui, google news, yahoo, marca, vanguardia, el pais, as, 20 minutos, el periodico... y las publica en un clon de meneame y siempre en Portada.
+ ]]></description>
+ <pubDate>Sun, 18 Nov 2007 15:34:00 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206643" type="image/jpeg" length=""/>
+ </item>
+ <item>
+
+ <title><![CDATA[feed rss forum WinTricks]]></title>
+ <link>http://eco.netvibes.com/2/206636</link>
+ <guid>http://eco.netvibes.com/2/206636</guid>
+ <description><![CDATA[Forum Community WinTricks , le risposte che cerchi su Windows Software attualità , off topi]]></description>
+ <pubDate>Sun, 18 Nov 2007 12:27:46 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206636" type="image/jpeg" length=""/>
+ </item>
+
+ <item>
+ <title><![CDATA[Rss News Web WinTricks]]></title>
+ <link>http://eco.netvibes.com/2/206635</link>
+ <guid>http://eco.netvibes.com/2/206635</guid>
+ <description><![CDATA[Tutte le news curiosità dal web]]></description>
+ <pubDate>Sun, 18 Nov 2007 12:02:29 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206635" type="image/jpeg" length=""/>
+
+ </item>
+ <item>
+ <title><![CDATA[Martin Revert: "tecnólogo y todólogo"]]></title>
+ <link>http://eco.netvibes.com/2/206537</link>
+ <guid>http://eco.netvibes.com/2/206537</guid>
+ <description><![CDATA[Sociedad, Tecnología y todo lo que se cruce al medio de ambas cosas.]]></description>
+ <pubDate>Wed, 14 Nov 2007 22:49:18 +0000</pubDate>
+
+ <enclosure url="http://eco.netvibes.com/thumb/206537" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[El Blog al iPod]]></title>
+ <link>http://eco.netvibes.com/2/206511</link>
+ <guid>http://eco.netvibes.com/2/206511</guid>
+ <description><![CDATA[Este blog contiene las utlimas curiosidades y tendencias sobre el iPod]]></description>
+
+ <pubDate>Wed, 14 Nov 2007 16:35:43 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206511" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[NewzNozzl.com]]></title>
+ <link>http://eco.netvibes.com/2/206510</link>
+ <guid>http://eco.netvibes.com/2/206510</guid>
+
+ <description><![CDATA[NewzNozzl takes the top stories from the best social news sites, combines them - and then lets you comment and Vote for the stories that you think are the best. We ONLY load the high-rated stories from each site, so by the time it hits NewzNozzl, you know it's worth looking at! Most of the social news sites are often thought of as "meta" sites - that is, they take in and amplify what other news sites have. Nozzl can be thought of a "Meta-Meta" site - we take what other meta news sites thing are worth while and amplify just those stories.]]></description>
+ <pubDate>Wed, 14 Nov 2007 16:23:25 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206510" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[WMLScript reference]]></title>
+ <link>http://freebestoffer.com/downloads/wmlscript.html</link>
+
+ <guid>http://eco.netvibes.com/6/206470</guid>
+ <description><![CDATA[Search through WMLScript help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:34 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206470" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Web developer's help]]></title>
+
+ <link>http://freebestoffer.com/downloads/webdevel.html</link>
+ <guid>http://eco.netvibes.com/6/206469</guid>
+ <description><![CDATA[Search and browse help, tutorials, examples and reference documents on XML, XSLT, HTML, JavaScript, VBScript, Flash, SQL and more.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:36 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206469" type="image/jpeg" length=""/>
+ </item>
+ <item>
+
+ <title><![CDATA[VBScript reference]]></title>
+ <link>http://freebestoffer.com/downloads/vbscript.html</link>
+ <guid>http://eco.netvibes.com/6/206468</guid>
+ <description><![CDATA[Search through Visual Basic script help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:39 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206468" type="image/jpeg" length=""/>
+ </item>
+
+ <item>
+ <title><![CDATA[SVG reference]]></title>
+ <link>http://freebestoffer.com/downloads/svg.html</link>
+ <guid>http://eco.netvibes.com/6/206467</guid>
+ <description><![CDATA[Search through SVG help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:42 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206467" type="image/jpeg" length=""/>
+
+ </item>
+ <item>
+ <title><![CDATA[SQL reference]]></title>
+ <link>http://freebestoffer.com/downloads/sql.html</link>
+ <guid>http://eco.netvibes.com/6/206466</guid>
+ <description><![CDATA[Search through SQL help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:44 +0000</pubDate>
+
+ <enclosure url="http://eco.netvibes.com/thumb/206466" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[SMIL reference]]></title>
+ <link>http://freebestoffer.com/downloads/smil.html</link>
+ <guid>http://eco.netvibes.com/6/206465</guid>
+ <description><![CDATA[Search through SMIL help, reference, tutorials and examples.]]></description>
+
+ <pubDate>Tue, 13 Nov 2007 16:13:47 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206465" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[PHP reference]]></title>
+ <link>http://freebestoffer.com/downloads/php.html</link>
+ <guid>http://eco.netvibes.com/6/206464</guid>
+
+ <description><![CDATA[Search through PHP help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:51 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206464" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Javascript Reference]]></title>
+ <link>http://freebestoffer.com/downloads/javascript.html</link>
+
+ <guid>http://eco.netvibes.com/6/206463</guid>
+ <description><![CDATA[Search and browse Javascript Reference.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:54 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206463" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[HTML DOM Reference]]></title>
+
+ <link>http://freebestoffer.com/downloads/htmldom.html</link>
+ <guid>http://eco.netvibes.com/6/206459</guid>
+ <description><![CDATA[Search and browse HTML DOM Reference.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:13:59 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206459" type="image/jpeg" length=""/>
+ </item>
+ <item>
+
+ <title><![CDATA[E4X reference]]></title>
+ <link>http://freebestoffer.com/downloads/e4x.html</link>
+ <guid>http://eco.netvibes.com/6/206456</guid>
+ <description><![CDATA[Search through E4X help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:14:07 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206456" type="image/jpeg" length=""/>
+ </item>
+
+ <item>
+ <title><![CDATA[.Net Mobile reference]]></title>
+ <link>http://freebestoffer.com/downloads/dotnetmobile.html</link>
+ <guid>http://eco.netvibes.com/6/206454</guid>
+ <description><![CDATA[Search through .Net Mobile help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:14:10 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206454" type="image/jpeg" length=""/>
+
+ </item>
+ <item>
+ <title><![CDATA[Search DHTML help]]></title>
+ <link>http://freebestoffer.com/downloads/dhtml.html</link>
+ <guid>http://eco.netvibes.com/6/206452</guid>
+ <description><![CDATA[Search and browse DHTML help, reference and tutorials.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:14:15 +0000</pubDate>
+
+ <enclosure url="http://eco.netvibes.com/thumb/206452" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[ASP.Net reference]]></title>
+ <link>http://freebestoffer.com/downloads/aspdotnet.html</link>
+ <guid>http://eco.netvibes.com/6/206451</guid>
+ <description><![CDATA[Search through ASP.Net help, reference, tutorials and examples.]]></description>
+
+ <pubDate>Tue, 13 Nov 2007 16:14:21 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206451" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[ASP reference]]></title>
+ <link>http://freebestoffer.com/downloads/asp.html</link>
+ <guid>http://eco.netvibes.com/6/206450</guid>
+
+ <description><![CDATA[Search through ASP help, reference, tutorials and examples.]]></description>
+ <pubDate>Tue, 13 Nov 2007 16:14:29 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206450" type="image/jpeg" length=""/>
+ </item>
+ </channel>
+</rss>
Added: branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_2_fail.xml
===================================================================
--- branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_2_fail.xml (rev 0)
+++ branches/JBoss_Portal_Branch_2_6/widget/src/resources/test/netvibes/queryresult_2_fail.xml 2007-11-20 13:57:10 UTC (rev 9035)
@@ -0,0 +1,256 @@
+<br />
+<b>Warning</b>: DOMDocument::createElement() [<a href='function.DOMDocument-createElement'>function.DOMDocument-createElement</a>]: unterminated entity reference category=cane in <b>/home/netvibes/eco.v3/lib/Zend/Feed/Rss.php</b> on line <b>383</b><br />
+<br />
+<b>Warning</b>: DOMDocument::createElement() [<a href='function.DOMDocument-createElement'>function.DOMDocument-createElement</a>]: unterminated entity reference category=thebigbangtheory in <b>/home/netvibes/eco.v3/lib/Zend/Feed/Rss.php</b> on line <b>383</b><br />
+
+<br />
+<b>Warning</b>: DOMDocument::createElement() [<a href='function.DOMDocument-createElement'>function.DOMDocument-createElement</a>]: unterminated entity reference category=howimetyourmother in <b>/home/netvibes/eco.v3/lib/Zend/Feed/Rss.php</b> on line <b>383</b><br />
+<br />
+<b>Warning</b>: DOMDocument::createElement() [<a href='function.DOMDocument-createElement'>function.DOMDocument-createElement</a>]: unterminated entity reference category=showbuzz in <b>/home/netvibes/eco.v3/lib/Zend/Feed/Rss.php</b> on line <b>383</b><br />
+
+<br />
+<b>Warning</b>: DOMDocument::createElement() [<a href='function.DOMDocument-createElement'>function.DOMDocument-createElement</a>]: unterminated entity reference category=csi in <b>/home/netvibes/eco.v3/lib/Zend/Feed/Rss.php</b> on line <b>383</b><br />
+<br />
+<b>Warning</b>: DOMDocument::createElement() [<a href='function.DOMDocument-createElement'>function.DOMDocument-createElement</a>]: unterminated entity reference category=csiny in <b>/home/netvibes/eco.v3/lib/Zend/Feed/Rss.php</b> on line <b>383</b><br />
+
+<br />
+<b>Warning</b>: DOMDocument::createElement() [<a href='function.DOMDocument-createElement'>function.DOMDocument-createElement</a>]: unterminated entity reference category=csimiami in <b>/home/netvibes/eco.v3/lib/Zend/Feed/Rss.php</b> on line <b>383</b><br />
+<br />
+<b>Warning</b>: DOMDocument::createElement() [<a href='function.DOMDocument-createElement'>function.DOMDocument-createElement</a>]: unterminated entity reference title=RATP%20info%20trafic&height=300 in <b>/home/netvibes/eco.v3/lib/Zend/Feed/Rss.php</b> on line <b>383</b><br />
+
+<?xml version="1.0" encoding="utf-8"?>
+<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
+ <channel>
+ <title><![CDATA[Netvibes ecosystem latest all]]></title>
+ <link>http://eco.netvibes.com</link>
+ <description><![CDATA[Netvibes ecosystem latest all]]></description>
+ <pubDate>Tue, 20 Nov 2007 10:40:47 +0000</pubDate>
+ <generator>Netvibes Ecosystem</generator>
+
+ <docs>http://blogs.law.harvard.edu/tech/rss</docs>
+ <item>
+ <title><![CDATA[Petites vadrouilles en Asie du Sud-Est]]></title>
+ <link>http://eco.netvibes.com/2/206707</link>
+ <guid>http://eco.netvibes.com/2/206707</guid>
+ <description><![CDATA[Le récit, en direct ou presque, de mes voyages.]]></description>
+ <pubDate>Tue, 20 Nov 2007 03:32:43 +0000</pubDate>
+
+ <enclosure url="http://eco.netvibes.com/thumb/206707" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Zeus`s Blog]]></title>
+ <link>http://eco.netvibes.com/2/206706</link>
+ <guid>http://eco.netvibes.com/2/206706</guid>
+ <description><![CDATA[A security news blog including the range of subjects networking, virtualization, hardware and software..]]></description>
+
+ <pubDate>Tue, 20 Nov 2007 03:07:19 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206706" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[ArseSpeak]]></title>
+ <link>http://eco.netvibes.com/2/206703</link>
+ <guid>http://eco.netvibes.com/2/206703</guid>
+
+ <description><![CDATA[A fantastic Arsenal News and Discussion Blog. Updated everyday. Read away Gooners!]]></description>
+ <pubDate>Tue, 20 Nov 2007 00:05:50 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206703" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Vidéos Kayak]]></title>
+ <link>http://eco.netvibes.com/2/206699</link>
+
+ <guid>http://eco.netvibes.com/2/206699</guid>
+ <description><![CDATA[kayak videos website : freestyle, freeride, rivers,...]]></description>
+ <pubDate>Mon, 19 Nov 2007 21:24:29 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206699" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[BONJOUR ICI PIERRE VERCHEVAL]]></title>
+
+ <link>http://eco.netvibes.com/2/206698</link>
+ <guid>http://eco.netvibes.com/2/206698</guid>
+ <description><![CDATA[Le site québécois #1 portant sur la NFL!
+Recevez tous les articles et commentaires mordant de BIPV]]></description>
+ <pubDate>Mon, 19 Nov 2007 20:27:14 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206698" type="image/jpeg" length=""/>
+ </item>
+ <item>
+
+ <title><![CDATA[Cane - Full Length Videos]]></title>
+ <link>http://www.netvibes.com/modules/multipleFeeds/multipleFeeds.php?provider=cbs</link>
+ <guid>http://eco.netvibes.com/6/206697</guid>
+ <description><![CDATA[Get all the latest full-length videos from Cane in this widget, as well as CBS News and some of the greatest shows from CBS like CSI: Miami, CSI, CSI: NY, Showbuzz and more...]]></description>
+ <pubDate>Mon, 19 Nov 2007 20:22:40 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206697" type="image/jpeg" length=""/>
+ </item>
+
+ <item>
+ <title><![CDATA[The Big Bang Theory - Full Length Videos]]></title>
+ <link>http://www.netvibes.com/modules/multipleFeeds/multipleFeeds.php?provider=cbs</link>
+ <guid>http://eco.netvibes.com/6/206696</guid>
+ <description><![CDATA[Get all the latest full-length videos from The Big Bang Theory in this widget, as well as CBS News and some of the greatest shows from CBS like CSI: Miami, CSI, CSI: NY, Showbuzz and more...]]></description>
+ <pubDate>Mon, 19 Nov 2007 20:40:28 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206696" type="image/jpeg" length=""/>
+
+ </item>
+ <item>
+ <title><![CDATA[How I Met Your Mother - Full Length Videos]]></title>
+ <link>http://www.netvibes.com/modules/multipleFeeds/multipleFeeds.php?provider=cbs</link>
+ <guid>http://eco.netvibes.com/6/206695</guid>
+ <description><![CDATA[Get all the latest full-length videos from How I Met Your Mother in this widget, as well as CBS News and some of the greatest shows from CBS like CSI: Miami, CSI, CSI: NY, Showbuzz and more...]]></description>
+ <pubDate>Mon, 19 Nov 2007 20:10:01 +0000</pubDate>
+
+ <enclosure url="http://eco.netvibes.com/thumb/206695" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Showbuzz - Full Length Videos]]></title>
+ <link>http://www.netvibes.com/modules/multipleFeeds/multipleFeeds.php?provider=cbs</link>
+ <guid>http://eco.netvibes.com/6/206694</guid>
+ <description><![CDATA[Get all the latest full-length videos from Showbuzz in this widget, as well as CBS News and some of the greatest shows from CBS like CSI: NY, CSI, CSI: Miami and more...]]></description>
+
+ <pubDate>Mon, 19 Nov 2007 20:02:13 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206694" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[CSI - Full Length Videos]]></title>
+ <link>http://www.netvibes.com/modules/multipleFeeds/multipleFeeds.php?provider=cbs</link>
+ <guid>http://eco.netvibes.com/6/206693</guid>
+
+ <description><![CDATA[Get all the latest full-length videos from CSI in this widget, as well as CBS News and some of the greatest shows from CBS like CSI: Miami, CSI: NY, Showbuzz and more...]]></description>
+ <pubDate>Mon, 19 Nov 2007 19:49:12 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206693" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[CSI: NY - Full Length Videos]]></title>
+ <link>http://www.netvibes.com/modules/multipleFeeds/multipleFeeds.php?provider=cbs</link>
+
+ <guid>http://eco.netvibes.com/6/206692</guid>
+ <description><![CDATA[Get all the latest full-length videos from CSI: NY in this widget, as well as CBS News and some of the greatest shows from CBS like CSI: Miami, CSI, Showbuzz and more...]]></description>
+ <pubDate>Mon, 19 Nov 2007 19:48:33 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206692" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[CSI: Miami - Full Length Videos]]></title>
+
+ <link>http://www.netvibes.com/modules/multipleFeeds/multipleFeeds.php?provider=cbs</link>
+ <guid>http://eco.netvibes.com/6/206691</guid>
+ <description><![CDATA[Get all the latest full-length videos from CSI: Miami in this widget, as well as CBS News and some of the greatest shows from CBS like CSI: NY, CSI, Showbuzz and more...]]></description>
+ <pubDate>Mon, 19 Nov 2007 19:53:21 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206691" type="image/jpeg" length=""/>
+ </item>
+ <item>
+
+ <title><![CDATA[RATP bulletin trafic]]></title>
+ <link>http://www.netvibes.com/modules/webpage/webpage.php?url=http://wap.ratp.fr/siv/perturbation</link>
+ <guid>http://eco.netvibes.com/6/206690</guid>
+ <description><![CDATA[Etat des lieux complet sur le trafic des réseau métro, RER, bus, trams et trains de banlieue SNCF. ]]></description>
+ <pubDate>Mon, 19 Nov 2007 19:09:10 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206690" type="image/jpeg" length=""/>
+ </item>
+
+ <item>
+ <title><![CDATA[Off Topic ]]></title>
+ <link>http://eco.netvibes.com/2/206689</link>
+ <guid>http://eco.netvibes.com/2/206689</guid>
+ <description><![CDATA[Forum Off Topic di WinTricks RSS feed
+Politica arte cultura di tutto un po']]></description>
+ <pubDate>Mon, 19 Nov 2007 17:51:21 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206689" type="image/jpeg" length=""/>
+
+ </item>
+ <item>
+ <title><![CDATA[Europe1": Media]]></title>
+ <link>http://eco.netvibes.com/4/206687</link>
+ <guid>http://eco.netvibes.com/4/206687</guid>
+ <description><![CDATA[Link to "Media" show from Europe1 (daily show with Jean-Mard Morandini).]]></description>
+ <pubDate>Mon, 19 Nov 2007 17:01:49 +0000</pubDate>
+
+ <enclosure url="http://eco.netvibes.com/thumb/206687" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[RTL : Autoradio Express]]></title>
+ <link>http://eco.netvibes.com/4/206686</link>
+ <guid>http://eco.netvibes.com/4/206686</guid>
+ <description><![CDATA[Link to "Audio Radio Express" podcast.]]></description>
+
+ <pubDate>Mon, 19 Nov 2007 17:00:02 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206686" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[RTL : Le journal économique]]></title>
+ <link>http://eco.netvibes.com/4/206685</link>
+ <guid>http://eco.netvibes.com/4/206685</guid>
+
+ <description><![CDATA[Daily economic news from Frenc radio RTL.]]></description>
+ <pubDate>Mon, 19 Nov 2007 16:58:18 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206685" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[RTL : Autoradio]]></title>
+ <link>http://eco.netvibes.com/4/206684</link>
+
+ <guid>http://eco.netvibes.com/4/206684</guid>
+ <description><![CDATA[This is the podcast of "Auto-radio" from RTL.]]></description>
+ <pubDate>Mon, 19 Nov 2007 16:56:44 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206684" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[RTL : Un jour une histoire]]></title>
+
+ <link>http://eco.netvibes.com/4/206682</link>
+ <guid>http://eco.netvibes.com/4/206682</guid>
+ <description><![CDATA[This is the podcast "Un jour une histoire" from RTF (French radio)]]></description>
+ <pubDate>Mon, 19 Nov 2007 16:54:52 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206682" type="image/jpeg" length=""/>
+ </item>
+ <item>
+
+ <title><![CDATA[Mba E-business ESG]]></title>
+ <link>http://eco.netvibes.com/2/206675</link>
+ <guid>http://eco.netvibes.com/2/206675</guid>
+ <description><![CDATA[Portail du MBA E Business ESG, l'actualité Digital média économie, widgets, ecommerce, seo, social networks, buzz marketing, net éco du developpement durable, gadgets...vue par les élèves
+]]></description>
+ <pubDate>Mon, 19 Nov 2007 15:19:30 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206675" type="image/jpeg" length=""/>
+ </item>
+
+ <item>
+ <title><![CDATA[Rhône FM]]></title>
+ <link>http://eco.netvibes.com/7/206674</link>
+ <guid>http://eco.netvibes.com/7/206674</guid>
+ <description></description>
+ <pubDate>Mon, 19 Nov 2007 14:54:03 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206674" type="image/jpeg" length=""/>
+
+ </item>
+ <item>
+ <title><![CDATA[Developpeur Web]]></title>
+ <link>http://eco.netvibes.com/4/206673</link>
+ <guid>http://eco.netvibes.com/4/206673</guid>
+ <description><![CDATA[Blog professionnel d'un développeur et concepteur d'applications web. Codes, librairies, idées et opinions.
+Auteur de Webappkit, QuizzGeek]]></description>
+ <pubDate>Mon, 19 Nov 2007 14:46:45 +0000</pubDate>
+
+ <enclosure url="http://eco.netvibes.com/thumb/206673" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Ececik.Com]]></title>
+ <link>http://eco.netvibes.com/2/206672</link>
+ <guid>http://eco.netvibes.com/2/206672</guid>
+ <description><![CDATA[Çocuk Gelişimi ve Güncel Haberler]]></description>
+
+ <pubDate>Mon, 19 Nov 2007 14:32:27 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206672" type="image/jpeg" length=""/>
+ </item>
+ <item>
+ <title><![CDATA[Trading et conseils sur PERNOD-RICARD]]></title>
+ <link>http://eco.netvibes.com/2/206671</link>
+ <guid>http://eco.netvibes.com/2/206671</guid>
+
+ <description><![CDATA[Blog d'un robot trader spécialisé.
+Découvrez tous les jours ses prévisions boursières et ses positions en cours sur PERNOD-RICARD!]]></description>
+ <pubDate>Mon, 19 Nov 2007 14:18:31 +0000</pubDate>
+ <enclosure url="http://eco.netvibes.com/thumb/206671" type="image/jpeg" length=""/>
+ </item>
+ </channel>
+</rss>
More information about the portal-commits
mailing list