>dude. Just do a 'cvs update -d -P'... this will bring your Jetspeed up
>to the latest version
>
>after that just do a 'cvs diff' from ./jetspeed and this will show me
>what I need
>
>Kevin
Kevin,
Here's the diff on the changes I made to RSSPortlet to
get it to work with InternetAlchemy's RSS(.xml) files.
Mike
===================================================================
RCS file:
/products/cvs/jetspeed/jetspeed/src/java/org/apache/jetspeed/portal/portlets
/RSSPortlet.java,v
retrieving revision 1.34
diff -r1.34 RSSPortlet.java
299c299,308
< } else {
---
>
> } else if ( root.equals( "xml" ) ) {
>
> NodeList list = doc.getElementsByTagName( "item" );
>
> return getItems( list );
>
> //parse out each nodelist item and create
>
> } else {
342c351,353
< description = child.getFirstChild().getNodeValue();
---
> if (child.getFirstChild() != null)
> description = child.getFirstChild().getNodeValue();
> }
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]