Find feed taglib ver. 1.2

    Custom JSP taglib. Lets you detect ATOM/RSS feeds associated with the given site. For example:
 


<%@ taglib uri="taglib.tld" prefix="f" %>
<html>
...
<f:FindFeed url="http://servletsuite.blogspot.com" id="A"/>

Found: <%=A.size()%> feeds
<% if (A.size()>0) { %>
first one is: <%=A.get(0)%>
<% } %>
...
</html>

and you will get this:
 

... Found: 3 feeds
first one is: http://servletsuite.blogspot.com/feeds/posts/default?alt=rss ...

Tags are:

FindFeed

Tag lets you obtain RSS feeds (if any) for the given site (page). Attributes are:

1) url Describes an URL (page) for feeds search
2) id Describes a name for your page scope variable (type is java.util.ArrayList) for the list of obtained URL's.

See also RSS taglib from Coldtags suite

for downloading:

Library: findfeedtag.jar    Description: taglib.tld

 © Coldbeans      Comments?

See also Coldtags suite - the largest collection of custom JSP tags.

Also in Coldtags suite: