-
Hello
I've encountered a problem while using jRSS library. With this simple code:
public static void main(String[] args) throws IOException{
RSS rss = new RSS();
Channel channel = new Channel("Summaries", "localhost://myweb/rss", "RSS summaries");
channel.addItem(new Item("Sentece 1", "Summary measures:..."));
channel.addItem(new Item("Sentece 2", "Summary measures:..."));...
2009-11-09 02:15:31 UTC by greatporki
-
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
2007-11-14 03:20:07 UTC by sf-robot
-
This still appears to be a bug in the code. I have fixed and built myself based on the comment below but getting the fix in would be good.
2007-10-30 03:56:33 UTC by valcar
-
Message body follows:
Hi Henrique,
I looked into the source of RSSFeedGeneratorImpl. This is
the relevant piece for generating the image xml:
Channel.Image image = channel.getImage();
Element elem = doc.createElement("image");
Text urlct = doc.createTextNode(image.getUrl());
Element url = doc.createElement("url");
url.appendChild(urlct);
elem.appendChild(url);
Text titlect =...
2007-04-26 21:50:50 UTC by viecili
-
Message body follows:
Hello Henrique,
Thank you for developing the Java RSS Generator. While using
it I found out there's an error in the generated xml for the
channel image.
I used this pseudo code the create a channel image:
Channel.Image image = channel.new Image("url goes here",
"title goes here", "link goes here");
channel.setImage(image);
This is the generated xml...
2007-04-26 21:48:52 UTC by viecili
-
no, not yet...
but can you explain me your need to add different namespaces in the RSS document?.
2007-04-24 01:24:21 UTC by viecili
-
Hi there !
sorry to bother you again ;) but is there an easy way to add namespaces to the rss tag ?.
2007-03-20 09:05:07 UTC by carenthir
-
hi again,
don't bother, I finally directly modified your generateDocument method, adding an english Locale parameter in the simpledateformat assignment.
Maybe you should consider adding he possibility to change this kind of locale thing in a future release, in the RSSFeedGenerator constructor for instance :)
Thanks again for your work on this API, it saves me a lot of time !
William.
2007-03-19 12:56:55 UTC by carenthir
-
Hello
first thanks a lot for providing this API :)
I started playing with it and it seems to perfectly fit my needs.
I just have a problem I would like to submit to you : I generate a feed with items containing a date field (pubdate). These dates are timestamps, and I would like them in a specific format in the resulting text. However, the generateAsString method of the RSSFeedGenerator...
2007-03-19 10:54:44 UTC by carenthir
-
I have great joy to announce the release of the 'jRSS - Simple Java RSS Generator Website'. If you wanna see follow http://jrss.sourceforge.net.
2007-02-26 04:42:02 UTC by viecili