Update the site with latest contents

This commit is contained in:
mishako 2016-04-24 20:54:49 +02:00
parent cf3bffe1e8
commit 6d0039aef1
188 changed files with 16484 additions and 2569 deletions

View file

@ -0,0 +1,282 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="kebernet" />
<meta name="Date-Creation-yyyymmdd" content="20111206" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Certiorem Tutorial</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-down"></i>
Certiorem</a>
<ul class="nav nav-list">
<li class="active">
<a href="#"><i class="none"></i>Tutorial</a>
</li>
</ul>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Certiorem Tutorial<a name="Certiorem_Tutorial"></a></h2>
<p>Certiorem is a PubSubHubub (PSH) implementation for ROME. It isn't an application, but an API for building each of the three components (Publisher, Subscriber and Hub) into your web apps.</p>
<p>You can see an <a class="externalLink" href="https://github.com/rometools/rome-incubator/tree/master/pubsubhubub/webapp">example webapp here</a>.</p></div>
<div class="section">
<h2>Creating a Hub<a name="Creating_a_Hub"></a></h2>
<p>Hubs take notifications, or &quot;Pings&quot; that tell it the content of a feed has been updated, fetch the feed, then notify each of the subscribers of the change. As you will begin to see, Certiorem is very much about &quot;Composition&quot; of classes. The Hub class is a prime example of this.</p>
<p>Looking at the example webapp we see:</p>
<div class="source">
<pre>@Provides
@Singleton
public Hub buildHub() {
FeedFetcher fetcher = new HttpURLFeedFetcher(new DeltaFeedInfoCache());
&#xa0; &#xa0; Hub hub = new Hub(new InMemoryHubDAO(), new UnthreadedVerifier(), new UnthreadedNotifier(), fetcher);
&#xa0; &#xa0; return hub;
}</pre></div>
<p>First we construct an instance of FeedFetcher, from the Fetcher subproject. This will be used to fetch feeds from remote hosts. There are a number of implementations for FeedFetcher and FeedInfoCache in the Fetcher project. Please look there for info on what is what.</p>
<p>Next we need a HubDAO implementation. This is a DAO for managing Subscriber and SubscriptionSummary classes. Here we are using an in-memory DAO, which like the HashMapFeedInfoCache will evaporate if we restart our web application. A JPA implementation for persistence is also available, but incomplete at time of writing.</p>
<p>Next we need two implementations of network client interfaces: a Verifier, and a Notifier. The Verifier calls back to the Subscribers and verifies their subscribe/unsubscribe operations. A Notifier is used to send updates to to the clients. There are two basic implementations of these provided: A ThreadPool* and Unthreaded* version of each. The thread pool version uses a ThreadPoolExecutor to run queues of outbound calls. The Unthreaded version of each, makes the network calls in-line with the request to the hub. These are suitable for environments like Google App Engine where spawning threads from servlets is absolutely verboten.</p>
<p>There are other constructors that contain lists of restrictions for what the hub will support: acceptable topic feeds, ports, protocols, etc.</p>
<p>The hub here is just a business logic class. In order to have a functioning hub, we need a servlet exposing the Hub. In the &quot;web&quot; package, there is an abstract servlet you can use to do just this. In the Guice wired example, we simply create a servlet with an injected Hub implementation.</p>
<div class="source">
<pre>@Singleton
public class HubServlet extends AbstractHubServlet {
@Inject
public HubServlet(final Hub hub){
super(hub);
}
}
//... in the ServerModule...
serve(&quot;/hub*&quot;).with(HubServlet.class);</pre></div>
<p>We can now include a &lt;link rel=&quot;hub&quot;&gt; value in our feeds and publish notifications of changes.&#xa0;</p></div>
<div class="section">
<h2>Publishing Ping Notifications<a name="Publishing_Ping_Notifications"></a></h2>
<p>This is perhaps the easiest thing to do. The Publisher class will take various combinations of URLs and SyndFeeds and send the appropriate notification. If your SyndFeed contains a &lt;link rel='sel' /&gt; and &lt;link rel='hub' /&gt; you can just pass the SyndFeed object. Otherwise, you can use the URL strings where appropriate.</p>
<p>The example couldn't be simpler:</p>
<div class="source">
<pre>Publisher pub = new Publisher();
try {
pub.sendUpdateNotification(&quot;http://localhost/webapp/hub&quot;, &quot;http://localhost/webapp/research-atom.xml&quot;);
} catch (NotificationException ex) {
Logger.getLogger(NotifyTest.class.getName()).log(Level.SEVERE, null, ex);
throw new ServletException(ex);
}</pre></div>
<p>Once this notification is sent, the hub will make a request to the feed and notify the clients of new entries.</p></div>
<div class="section">
<h2>Subscribing to Feeds<a name="Subscribing_to_Feeds"></a></h2>
<p>To set up a feed subscriber, you need to go through a process very much like setting up a Hub. First, create the Subscriptions class by composition:</p>
<div class="source">
<pre>@Provides
@Singleton
public Subscriptions buildSubs(){
&#xa0; &#xa0; Subscriptions subs = new Subscriptions(new HashMapFeedInfoCache(), new AsyncRequester(),
&#xa0; &#xa0; &#xa0; &#xa0; &#xa0; &#xa0; &quot;http://localhost/webapp/subscriptions/&quot;, new InMemorySubDAO());
&#xa0; &#xa0; return subs;
}</pre></div>
<p>First we need a FeedInfoCache implementation. This will be updated as notifications come in, so in your web app, you want to make sure this is shared with the FeedFetcher implementation you are using to read feeds. Next you need a Requester, this is a network class that makes subscription requests to remote hubs. Next, a URL prefix for where the callbacks will live. This really means the URL to the SubServlet that is resolvable externally. Finally, a DAO for storing and retrieving Subscription objects.</p>
<p>As in the Hub, we need a wrapper servlet to call into the Subscriptions class</p>
<div class="source">
<pre>@Singleton
public class SubServlet extends AbstractSubServlet {
@Inject
public SubServlet(final Subscriptions subscriptions){
super(subscriptions);
}
}
// In the ServerModule...
serve(&quot;/subscriptions/*&quot;).with(SubServlet.class)</pre></div>
<p>Now if we want to subscribe to a feed, we get a reference to the Subscriptions object, and pass in either the SyndFeed (with appropriate rel=&quot;hub&quot; and rel=&quot;self&quot; links) or simply a couple of URLs:</p>
<div class="source">
<pre>&#xa0;subs.subscribe(&quot;http://localhost/webapp/hub&quot;, &quot;http://localhost/webapp/research-atom.xml&quot;, true, -1, null, new SubscriptionCallback(){
public void onFailure(Exception e) {
e.printStackTrace();
}
public void onSubscribe(Subscription subscribed) {
System.out.println(&quot;Subscribed &quot;+subscribed.getId() +&quot; &quot;+subscribed.getSourceUrl());
}
});</pre></div>
<p>Here we pass in the URL of the Hub, the URL of the feed, a boolean indicating we want to make the subscription request synchronously, the lease seconds we want to keep the subscription for, a null cryptographic secret, and a Callback invoked when the subscribe request completes.</p></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

221
Certiorem/index.html Normal file
View file

@ -0,0 +1,221 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="kebernet" />
<meta name="Date-Creation-yyyymmdd" content="20110319" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - certiorem</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li class="active">
<a href="#"><i class="icon-chevron-down"></i>Certiorem</a>
<ul class="nav nav-list">
<li>
<a href="../Certiorem/CertioremTutorial.html" title="Tutorial">
<i class="none"></i>
Tutorial</a>
</li>
</ul>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Certiorem<a name="Certiorem"></a></h2>
<p>Certiorem is an implementation of the <a class="externalLink" href="http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html">PubSubHubub </a>protocol for ROME.</p>
<p>It is dependent on ROME and ROME-Fetcher for the base implementations, and will provide standard plugins for Propono to allow for publish eventing, where applicable.</p>
<div class="section">
<h3>Primary Components<a name="Primary_Components"></a></h3></div>
<div class="section">
<h3>Hub Implementation and Scaffolding (Done)<a name="Hub_Implementation_and_Scaffolding_Done"></a></h3>
<p>The first part of Certiorem is a basic set of scaffolding classes that can be used to create a PSH notification hub. Initially, this will include a non-guaranteed delivery hub, with standard implementations suitable for deployment on most JavaEE application servers or Google App Engine. It is intended that there should be at least one simple, drop in WAR file, utilizing JavaEE classes that can work in a default configuration for various standard web containers. Subsequently, &#xa0;each of the classes in the PSH implementation up through the primary Controller class use constructor-time composition/configuration so that the user/developer can easily construct a custom configuration of the Hub.</p>
<div class="section">
<h4>Client Implementation Integrated with ROME-Fetcher (Done)<a name="Client_Implementation_Integrated_with_ROME-Fetcher_Done"></a></h4>
<p>For web-based applications that use ROME-Fetcher, an extended push-notified store wrapper that will update based on callbacks from a Hub of change notifications. This will include a highly configurable callback servlet to write into the Fetcher cache as changes are made. Additionally, the system should support (semi-)real time notifications of changes in the form of a listener that exectutes in a TBD thread state relative to the callback servlet. This should be packaged as a simple JAR with no more deps than fetcher that defines the callback servlet, and automagically does subscribes where link=rel appropriate.</p></div>
<div class="section">
<h4>Notification Implementation for Propono based and JAX-RS based Servers (In Progress)<a name="Notification_Implementation_for_Propono_based_and_JAX-RS_based_Servers_In_Progress"></a></h4>
<p>This should be a simple API call to notify a Hub of changes to topics. Again, this should provide real-time notifications either synchronously or asynchronously. Importantly for&#xa0;Asynchronous&#xa0;notifications, they should block subsequent change notifications pending a notification to the Hub.</p>
<p>References:&#xa0;</p>
<p><a class="externalLink" href="https://github.com/nlothian/RTUpdates/blob/master/src/com/nicklothian/pubsubhub/PubSubHubSubscriptionServlet.java">https://github.com/nlothian/RTUpdates/blob/master/src/com/nicklothian/pubsubhub/PubSubHubSubscriptionServlet.java</a></p>
<p><a class="externalLink" href="http://grack.com/blog/2009/09/09/parsing-the-pubsubhubbub-notifications/">http://grack.com/blog/2009/09/09/parsing-the-pubsubhubbub-notifications/</a></p></div></div></div>
<div class="section">
<h2>Notes on the Code<a name="Notes_on_the_Code"></a></h2>
<p>It is still mostly a rough sketch, but the big outlines are there:</p>
<p>There are three main packages: pub, sub and hub.</p>
<p>The pub package is basically just a single utility class for pushing notifications to a hub.</p>
<p>The hub package contains the Hub class. This is a general business controller that is intended to allow you to build a servlet around it with a very, very thin veneer, but you could also use it to drive an XMPP or JMS version too. It is basically built by composition of a number of classes, for which there are some default implementations: A Verifier, which makes the callback to verify new subscriptions, the HubDAO which stores the current subscriptions and subscriber statistics, and a Notifier which actually sends notifications to the subscribers. There are a couple of implementations of each of these (though the JPA HubDAO is still in process). Mostly the implementations for the Verifier and Notifier support threadpooling or no-threads (for App Engine use).</p>
<p>I have just started sketching out the sub package, but it basically has a &quot;Subscriptions&quot; class that will take in notifications (using the same &quot;thin veneer&quot; pattern that the Hub class uses). It is also constructed with some impls: A SubscriptionDAO that stores you current subscription information, a FeedFetcherCache that holds the received data, and a Requester that makes the subscription requests to hubs.</p>
<p>I am hoping to have a basic end to end example working sometime in the next week or so, but if anyone wants to look over what is there, feel free.</p></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Change Log</title>
<link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="index.html" id="bannerLeft">
<img src="images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -92,8 +104,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="project-info.html" title="Project Information">
@ -425,7 +472,7 @@ SyndOutput --&gt; SyndFeedOutputt
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -435,4 +482,4 @@ SyndOutput --&gt; SyndFeedOutputt
</div>
</footer>
</body>
</html>
</html>

View file

@ -0,0 +1,191 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Building the Rome Fetcher</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Building the Rome Fetcher<a name="Building_the_Rome_Fetcher"></a></h2>
<p>The Rome Fetcher can build using Maven 2.</p></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

237
Fetcher/ChangeLog.html Normal file
View file

@ -0,0 +1,237 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Change Log</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Change Log<a name="Change_Log"></a></h2>
<div class="section">
<h3>Prior to first release (on the way to v0.3)<a name="Prior_to_first_release_on_the_way_to_v0.3"></a></h3>
<ol style="list-style-type: decimal">
<li>Updated to handle removal of IO methods using byte streams<br />Byte Stream IO was removed from Rome itself. The Rome Fetcher is now updated to support this</li>
<li>Add FeedFetcherI interface and FeedFetcherFactory class<br />There is now a FeedFetcherI interface, which FeedFetcher implements. Use FeedFetcherFactory to create instances of FeedFetcher (as suggested by Joseph Ottinger) (FeedFetcherFactory was later removed)</li>
<li>Event Support Added to FeedFetcherI<br />The FeedFetcherI interface now supports feed polled, feed retrieved and feed unchanged events</li>
<li>Samples added<br />Samples are now included with the Rome Fetcher</li>
<li>Unit Tests Added<br />JUnit based tests which invoke the Rome Fetcher against an embedded Jetty webserver are now included</li>
<li>Bug fixes in the FeedFetcher event model<br />The JUnit test suite uncovered some bugs in the event model used by the FeedFetcher. These bugs are now fixed.</li>
<li>Refactored the SyndFeedInfo class<br />SyndFeedInfo now extends ObjectBean</li>
<li>Removed FeedFetcherFactory<br />The benefit of the FeedFetcherFactory was arguable. Now the client code will need to manage the creation of specific implementations of the FeedFetcher</li></ol></div>
<div class="section">
<h3>Prior to second release (on the way to v0.4)<a name="Prior_to_second_release_on_the_way_to_v0.4"></a></h3>
<ol style="list-style-type: decimal">
<li>Refectored to match Rome naming standards<br />FeedFetcherI renamed to FeedFetcher<br />#. New FeedFetcher Implementation<br />HttpClientFeedFetcher uses the Apache Commons HTTP Client</li>
<li>Abstract test classes excluded in project.xml<br />Tests now run correctly under Maven</li>
<li>Added GZip support to HttpClientFeedFetcher<br />HttpClientFeedFetcher now supports GZip compression. Tests have been added.</li></ol></div>
<div class="section">
<h3>Prior to third release (on the way to v0.5)<a name="Prior_to_third_release_on_the_way_to_v0.5"></a></h3>
<ol style="list-style-type: decimal">
<li>SyndFeedInfo implements Serializable<br />SyndFeedInfo implements Serializable to make it easier to store</li>
<li>Support for rfc3229 delta encoding<br />The Fetcher now supports rfc3229 delta encoding. See <a class="externalLink" href="http://www.ietf.org/rfc/rfc3229.txt">http://www.ietf.org/rfc/rfc3229.txt</a> and <a class="externalLink" href="http://bobwyman.pubsub.com/main/2004/09/using_rfc3229_w.html">http://bobwyman.pubsub.com/main/2004/09/using_rfc3229_w.html</a>. Note that this is support is experimental and disabled by default</li></ol></div>
<div class="section">
<h3>Prior to 0.6<a name="Prior_to_0.6"></a></h3>
<ol style="list-style-type: decimal">
<li>Feed passed to FetcherEvents<br />When a feed is retrieved it is now passed to the Fetcher Event. This makes it easier to code applications using an event oriented style.</li></ol></div>
<div class="section">
<h3>Prior to 0.7<a name="Prior_to_0.7"></a></h3>
<ol style="list-style-type: decimal">
<li>Fix for URL Connection leak<br />In some circumstances URLConnection objects were not closed. This could cause problems in long-running application.</li></ol></div>
<div class="section">
<h3>0.8 was never released<a name="a0.8_was_never_released"></a></h3></div>
<div class="section">
<h3>Prior to 0.9<a name="Prior_to_0.9"></a></h3>
<ol style="list-style-type: decimal">
<li>Fix for potential synchronization issue<br />There was the possibility of synchronization issues in the FeedFetcher. Fixed, thanks to suggestions from Javier Kohen.</li>
<li>New LinkedHashMapFeedInfoCache FeedFetcherCache implementation<br />The new LinkedHashMapFeedInfoCache has the advantage that it will not grow unbound</li></ol></div>
<div class="section">
<h3>Prior to 1.0RC2<a name="Prior_to_1.0RC2"></a></h3>
<ol style="list-style-type: decimal">
<li>BeanInfo class added for AbstractFeedFetcher<br />com.rometools.rome.fetcher.impl.AbstractFeedFetcherBeanInfo was created to allow introspection to correctly find the events</li>
<li>Callback to allow access to HttpClient HttpMethod object<br />Add a HttpClientMethodCallbackIntf to allow the calling code to modify the HttpClient HttpMethod used to make the request (eg, add additinal headers, etc.) Also fixes a reported bug where the user agent wasn't being set properly</li>
<li>Support for clearing cache<br />See <a class="externalLink" href="http://java.net/jira/browse/ROME-119">http://java.net/jira/browse/ROME-119</a> for details</li></ol></div>
<div class="section">
<h3>Prior to 1.0<a name="Prior_to_1.0"></a></h3>
<ol style="list-style-type: decimal">
<li>Support for preserving wire feed data.<br />The fetcher now has a setPreserveWireFeed() method which will setup ROME to preserve WireFeed data. See <a class="externalLink" href="http://rometools.github.io/rome/PreservingWireFeeds.html">PreservingWireFeeds</a> for further information.</li></ol></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,191 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - HttpClientFeedFetcher</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>HttpClientFeedFetcher<a name="HttpClientFeedFetcher"></a></h2>
<p>An implementation of the <tt>FeedFetcher</tt> which uses the Jakarta HTTP Client. This HTTP client has many benefits over the standard Java implementation.</p></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,217 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Dependencies</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-down"></i>
Fetcher</a>
<ul class="nav nav-list">
<li class="active">
<a href="#"><i class="none"></i>Dependencies</a>
</li>
<li>
<a href="../../Fetcher/Releases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
</ul>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Dependencies<a name="Dependencies"></a></h2>
<p>The Rome Fetcher aims to introduce the absolute minimum number of extra dependencies. Currently (30-June-2004) no extra dependencies over those required by Rome are required to use the fetcher.</p>
<p>The current dependencies required to use the Rome Fetcher are:</p>
<ul>
<li>JDK 1.4+</li>
<li>Current version of Rome</li>
<li>JDom v 1.0</li></ul>
<p>To build the Rome Fetcher the <a class="externalLink" href="http://jakarta.apache.org/commons/httpclient/">Jakarta HTTP Client</a> is required.</p>
<p>If the <a href="./HttpClientFeedFetcher.html">HttpClientFeedFetcher (fetcher)</a> fetcher implementation is used then the Jakarta HTTP Client and Jakarta Commons Logging is required.</p>
<p>To build and run the unit tests for the Rome Fetcher the following additional dependencies are required:</p>
<ul>
<li>servletapi version 2.3</li>
<li>jetty 4.2.12</li></ul>
<p>Note that Maven will automatically download the correct versions of all dependancies.</p></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

209
Fetcher/KnownIssues.html Normal file
View file

@ -0,0 +1,209 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Known Issues</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Known Issues<a name="Known_Issues"></a></h2>
<div class="section">
<h3>Version 0.3<a name="Version_0.3"></a></h3>
<ul>
<li>The Maven build does not run the <tt>jetty</tt> tests because of a bug in Maven</li>
<li>Version 0.3 does not have <tt>Xerces</tt> included in the project.xml (it is required to run the samples). Either get the latest <tt>project.xml</tt> from CVS, or <a class="externalLink" href="https://rome.dev.java.net/source/browse/rome/subprojects/fetcher/project.xml?r1=1.1&amp;r2=1.2">patch it yourself</a></li>
<li>0.3 had a bug that caused it to overwite system properties.</li></ul></div>
<div class="section">
<h3>Version 0.4<a name="Version_0.4"></a></h3>
<ul>
<li>No known issues (yet!)</li></ul></div>
<div class="section">
<h3>Version 0.5<a name="Version_0.5"></a></h3>
<ul>
<li>When listening to feed events using <tt>FetcherListener</tt>, there is no way to get to the retrieved content, because it is set after firing the event. -- <a class="externalLink" href="http://wiki.java.net/twiki/bin/view/Javawsxml/Jawe">jawe</a></li>
<li>When listening to feed events using <tt>FetcherListener</tt>, the feed URLs returned by the <tt>FetcherEvent</tt> are prepended with &quot;sun.net.www.protocol.http.HttpURLConnection:&quot; -- <a class="externalLink" href="http://wiki.java.net/twiki/bin/view/Javawsxml/Jawe">jawe</a></li></ul></div>
<div class="section">
<h3>Version 0.7<a name="Version_0.7"></a></h3>
<ul>
<li><tt>HashMapFeedInfoCache</tt> doesn't work quite right because <tt>URL.hashCode()</tt> does hostname resolution and treats virtual hosts with the same IP as equal, so e.g. all RSS feeds from <tt>blogspot.com</tt> collide in the cache. Also, it's really slow. Fix is to use <tt>URL.toExternalForm()</tt> as the hash key instead of the URL itself.</li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,287 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - ROME Fetcher 0.6</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-down"></i>
Fetcher</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Dependencies/index.html" title="Dependencies">
<i class="none"></i>
Dependencies</a>
</li>
<li>
<a href="../../Fetcher/Releases/index.html" title="Releases">
<i class="icon-chevron-down"></i>
Releases</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0.html" title="1.0">
<i class="none"></i>
1.0</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0RC2.html" title="1.0RC2">
<i class="none"></i>
1.0RC2</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.9.html" title="0.9">
<i class="none"></i>
0.9</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.7.html" title="0.7">
<i class="none"></i>
0.7</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>0.6</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.5.html" title="0.5">
<i class="none"></i>
0.5</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.4.html" title="0.4">
<i class="none"></i>
0.4</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.3.html" title="0.3">
<i class="none"></i>
0.3</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME Fetcher 0.6<a name="ROME_Fetcher_0.6"></a></h2>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-fetcher-0.6-src.zip">rome-fetcher-0.6-src.zip</a></li>
<li><a href="./rome-fetcher-0.6.tar.gz">rome-fetcher-0.6.tar.gz</a></li>
<li><a href="./rome-fetcher-0.6.zip">rome-fetcher-0.6.zip</a></li>
<li><a href="./rome-fetcher-0.6-src.tar.gz">rome-fetcher-0.6-src.tar.gz</a></li></ul></div>
<div class="section">
<h3>Tutorials<a name="Tutorials"></a></h3>
<ul>
<li><a href="../BuildingTheRomeFetcher.html">Building the Rome Fetcher (fetcher)</a></li>
<li><a href="../UsingTheRomeFetcherModuleToRetrieveFeeds.html">Using the Rome Fetcher module to retrieve feeds (fetcher)</a></li>
<li><a href="../SampleProgramsIncluded.html">Sample programs included (fetcher)</a></li></ul></div>
<div class="section">
<h3>Todo list<a name="Todo_list"></a></h3>
<ul>
<li><a href="../TodoList.html">Todo list (fetcher)</a></li></ul></div>
<div class="section">
<h3>Issues<a name="Issues"></a></h3>
<ul>
<li><a href="../KnownIssues.html">Known Issues (fetcher)</a></li></ul></div>
<div class="section">
<h3>Change Log<a name="Change_Log"></a></h3>
<ul>
<li><a href="../ChangeLog.html">Change Log (fetcher)</a></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,287 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - ROME Fetcher 0.7</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-down"></i>
Fetcher</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Dependencies/index.html" title="Dependencies">
<i class="none"></i>
Dependencies</a>
</li>
<li>
<a href="../../Fetcher/Releases/index.html" title="Releases">
<i class="icon-chevron-down"></i>
Releases</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0.html" title="1.0">
<i class="none"></i>
1.0</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0RC2.html" title="1.0RC2">
<i class="none"></i>
1.0RC2</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.9.html" title="0.9">
<i class="none"></i>
0.9</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>0.7</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.6.html" title="0.6">
<i class="none"></i>
0.6</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.5.html" title="0.5">
<i class="none"></i>
0.5</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.4.html" title="0.4">
<i class="none"></i>
0.4</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.3.html" title="0.3">
<i class="none"></i>
0.3</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME Fetcher 0.7<a name="ROME_Fetcher_0.7"></a></h2>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-fetcher-0.7-src.zip">rome-fetcher-0.7-src.zip</a></li>
<li><a href="./rome-fetcher-0.7.tar.gz">rome-fetcher-0.7.tar.gz</a></li>
<li><a href="./rome-fetcher-0.7.zip">rome-fetcher-0.7.zip</a></li>
<li><a href="./rome-fetcher-0.7-src.tar.gz">rome-fetcher-0.7-src.tar.gz</a></li></ul></div>
<div class="section">
<h3>Tutorials<a name="Tutorials"></a></h3>
<ul>
<li><a href="../BuildingTheRomeFetcher.html">Building the Rome Fetcher (fetcher)</a></li>
<li><a href="../UsingTheRomeFetcherModuleToRetrieveFeeds.html">Using the Rome Fetcher module to retrieve feeds (fetcher)</a></li>
<li><a href="../SampleProgramsIncluded.html">Sample programs included (fetcher)</a></li></ul></div>
<div class="section">
<h3>Todo list<a name="Todo_list"></a></h3>
<ul>
<li><a href="../TodoList.html">Todo list (fetcher)</a></li></ul></div>
<div class="section">
<h3>Issues<a name="Issues"></a></h3>
<ul>
<li><a href="../KnownIssues.html">Known Issues (fetcher)</a></li></ul></div>
<div class="section">
<h3>Change Log<a name="Change_Log"></a></h3>
<ul>
<li><a href="../ChangeLog.html">Change Log (fetcher)</a></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,288 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - ROME Fetcher 0.9</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-down"></i>
Fetcher</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Dependencies/index.html" title="Dependencies">
<i class="none"></i>
Dependencies</a>
</li>
<li>
<a href="../../Fetcher/Releases/index.html" title="Releases">
<i class="icon-chevron-down"></i>
Releases</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0.html" title="1.0">
<i class="none"></i>
1.0</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0RC2.html" title="1.0RC2">
<i class="none"></i>
1.0RC2</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>0.9</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.7.html" title="0.7">
<i class="none"></i>
0.7</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.6.html" title="0.6">
<i class="none"></i>
0.6</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.5.html" title="0.5">
<i class="none"></i>
0.5</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.4.html" title="0.4">
<i class="none"></i>
0.4</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.3.html" title="0.3">
<i class="none"></i>
0.3</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME Fetcher 0.9<a name="ROME_Fetcher_0.9"></a></h2>
<p>Note that there was no 0.8 Fetcher release</p>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-fetcher-0.9-src.zip">rome-fetcher-0.9-src.zip</a></li>
<li><a href="./rome-fetcher-0.9.tar.gz">rome-fetcher-0.9.tar.gz</a></li>
<li><a href="./rome-fetcher-0.9.zip">rome-fetcher-0.9.zip</a></li>
<li><a href="./rome-fetcher-0.9-src.tar.gz">rome-fetcher-0.9-src.tar.gz</a></li></ul></div>
<div class="section">
<h3>Tutorials<a name="Tutorials"></a></h3>
<ul>
<li><a href="../BuildingTheRomeFetcher.html">Building the Rome Fetcher (fetcher)</a></li>
<li><a href="../UsingTheRomeFetcherModuleToRetrieveFeeds.html">Using the Rome Fetcher module to retrieve feeds (fetcher)</a></li>
<li><a href="../SampleProgramsIncluded.html">Sample programs included (fetcher)</a></li></ul></div>
<div class="section">
<h3>Todo list<a name="Todo_list"></a></h3>
<ul>
<li><a href="../TodoList.html">Todo list (fetcher)</a></li></ul></div>
<div class="section">
<h3>Issues<a name="Issues"></a></h3>
<ul>
<li><a href="../KnownIssues.html">Known Issues (fetcher)</a></li></ul></div>
<div class="section">
<h3>Change Log<a name="Change_Log"></a></h3>
<ul>
<li><a href="../ChangeLog.html">Change Log (fetcher)</a></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,290 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - ROME Fetcher 1.0</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-down"></i>
Fetcher</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Dependencies/index.html" title="Dependencies">
<i class="none"></i>
Dependencies</a>
</li>
<li>
<a href="../../Fetcher/Releases/index.html" title="Releases">
<i class="icon-chevron-down"></i>
Releases</a>
<ul class="nav nav-list">
<li class="active">
<a href="#"><i class="none"></i>1.0</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0RC2.html" title="1.0RC2">
<i class="none"></i>
1.0RC2</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.9.html" title="0.9">
<i class="none"></i>
0.9</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.7.html" title="0.7">
<i class="none"></i>
0.7</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.6.html" title="0.6">
<i class="none"></i>
0.6</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.5.html" title="0.5">
<i class="none"></i>
0.5</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.4.html" title="0.4">
<i class="none"></i>
0.4</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.3.html" title="0.3">
<i class="none"></i>
0.3</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME Fetcher 1.0<a name="ROME_Fetcher_1.0"></a></h2>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-fetcher-1.0.jar">rome-fetcher-1.0.jar</a></li>
<li><a href="./rome-fetcher-1.0-javadoc.jar">rome-fetcher-1.0-javadoc.jar</a></li>
<li><a href="./rome-fetcher-1.0-sources.jar">rome-fetcher-1.0-sources.jar</a></li></ul></div>
<div class="section">
<h3>Tutorials<a name="Tutorials"></a></h3>
<ul>
<li><a href="../BuildingTheRomeFetcher.html">Building the Rome Fetcher (fetcher)</a></li>
<li><a href="../UsingTheRomeFetcherModuleToRetrieveFeeds.html">Using the Rome Fetcher module to retrieve feeds (fetcher)</a></li>
<li><a href="../SampleProgramsIncluded.html">Sample programs included (fetcher)</a></li></ul></div>
<div class="section">
<h3>API Docs<a name="API_Docs"></a></h3>
<ul>
<li><a href="./rome-fetcher-1.0-javadoc.jar">Fetcher API Docs</a></li></ul></div>
<div class="section">
<h3>Todo list<a name="Todo_list"></a></h3>
<ul>
<li><a href="../TodoList.html">Todo list (fetcher)</a></li></ul></div>
<div class="section">
<h3>Issues<a name="Issues"></a></h3>
<ul>
<li><a href="../KnownIssues.html">Known Issues (fetcher)</a></li></ul></div>
<div class="section">
<h3>Change Log<a name="Change_Log"></a></h3>
<ul>
<li><a href="../ChangeLog.html">Change Log (fetcher)</a></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,292 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - ROME Fetcher 1.0 RC2</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-down"></i>
Fetcher</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Dependencies/index.html" title="Dependencies">
<i class="none"></i>
Dependencies</a>
</li>
<li>
<a href="../../Fetcher/Releases/index.html" title="Releases">
<i class="icon-chevron-down"></i>
Releases</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0.html" title="1.0">
<i class="none"></i>
1.0</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>1.0RC2</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.9.html" title="0.9">
<i class="none"></i>
0.9</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.7.html" title="0.7">
<i class="none"></i>
0.7</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.6.html" title="0.6">
<i class="none"></i>
0.6</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.5.html" title="0.5">
<i class="none"></i>
0.5</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.4.html" title="0.4">
<i class="none"></i>
0.4</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.3.html" title="0.3">
<i class="none"></i>
0.3</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME Fetcher 1.0 RC2<a name="ROME_Fetcher_1.0_RC2"></a></h2>
<p>Note that there was no 1.0 RC1 Fetcher release</p>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-fetcher-1.0RC2-src.zip">rome-fetcher-1.0RC2-src.zip</a></li>
<li><a href="./rome-fetcher-1.0RC2.jar">rome-fetcher-1.0RC2.jar</a></li>
<li><a href="./rome-fetcher-1.0RC2-javadoc.jar">rome-fetcher-1.0RC2-javadoc.jar</a></li>
<li><a href="./rome-fetcher-1.0RC2-sources.jar">rome-fetcher-1.0RC2-sources.jar</a></li></ul></div>
<div class="section">
<h3>Tutorials<a name="Tutorials"></a></h3>
<ul>
<li><a href="../BuildingTheRomeFetcher.html">Building the Rome Fetcher (fetcher)</a></li>
<li><a href="../UsingTheRomeFetcherModuleToRetrieveFeeds.html">Using the Rome Fetcher module to retrieve feeds (fetcher)</a></li>
<li><a href="../SampleProgramsIncluded.html">Sample programs included (fetcher)</a></li></ul></div>
<div class="section">
<h3>API Docs<a name="API_Docs"></a></h3>
<ul>
<li><a href="./rome-fetcher-1.0RC2-javadoc.jar">Fetcher API Docs</a></li></ul></div>
<div class="section">
<h3>Todo list<a name="Todo_list"></a></h3>
<ul>
<li><a href="../TodoList.html">Todo list (fetcher)</a></li></ul></div>
<div class="section">
<h3>Issues<a name="Issues"></a></h3>
<ul>
<li><a href="../KnownIssues.html">Known Issues (fetcher)</a></li></ul></div>
<div class="section">
<h3>Change Log<a name="Change_Log"></a></h3>
<ul>
<li><a href="../ChangeLog.html">Change Log (fetcher)</a></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,288 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Rome Fetcher 0.3</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-down"></i>
Fetcher</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Dependencies/index.html" title="Dependencies">
<i class="none"></i>
Dependencies</a>
</li>
<li>
<a href="../../Fetcher/Releases/index.html" title="Releases">
<i class="icon-chevron-down"></i>
Releases</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0.html" title="1.0">
<i class="none"></i>
1.0</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0RC2.html" title="1.0RC2">
<i class="none"></i>
1.0RC2</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.9.html" title="0.9">
<i class="none"></i>
0.9</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.7.html" title="0.7">
<i class="none"></i>
0.7</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.6.html" title="0.6">
<i class="none"></i>
0.6</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.5.html" title="0.5">
<i class="none"></i>
0.5</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.4.html" title="0.4">
<i class="none"></i>
0.4</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>0.3</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Rome Fetcher 0.3<a name="Rome_Fetcher_0.3"></a></h2>
<p>Rome Fetcher version 0.3 is inital release of the Rome Fetcher. It is released as version 0.3 to synchronize with the version number of the core Rome project release.</p>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-fetcher-0.3-src.zip">rome-fetcher-0.3-src.zip</a></li>
<li><a href="./rome-fetcher-0.3.tar.gz">rome-fetcher-0.3.tar.gz</a></li>
<li><a href="./rome-fetcher-0.3.zip">rome-fetcher-0.3.zip</a></li>
<li><a href="./rome-fetcher-0.3-src.tar.gz">rome-fetcher-0.3-src.tar.gz</a></li></ul></div>
<div class="section">
<h3>Tutorials<a name="Tutorials"></a></h3>
<ul>
<li><a href="../BuildingTheRomeFetcher.html">Building the Rome Fetcher (fetcher)</a></li>
<li><a href="../UsingTheRomeFetcherModuleToRetrieveFeeds.html">Using the Rome Fetcher module to retrieve feeds (fetcher)</a></li>
<li><a href="../SampleProgramsIncluded.html">Sample programs included (fetcher)</a></li></ul></div>
<div class="section">
<h3>Todo list<a name="Todo_list"></a></h3>
<ul>
<li><a href="../TodoList.html">Todo list (fetcher)</a></li></ul></div>
<div class="section">
<h3>Issues<a name="Issues"></a></h3>
<ul>
<li><a href="../KnownIssues.html">Known Issues (fetcher)</a></li></ul></div>
<div class="section">
<h3>Change Log<a name="Change_Log"></a></h3>
<ul>
<li><a href="../ChangeLog.html">Change Log (fetcher)</a></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,287 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Rome Fetcher 0.4</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-down"></i>
Fetcher</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Dependencies/index.html" title="Dependencies">
<i class="none"></i>
Dependencies</a>
</li>
<li>
<a href="../../Fetcher/Releases/index.html" title="Releases">
<i class="icon-chevron-down"></i>
Releases</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0.html" title="1.0">
<i class="none"></i>
1.0</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0RC2.html" title="1.0RC2">
<i class="none"></i>
1.0RC2</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.9.html" title="0.9">
<i class="none"></i>
0.9</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.7.html" title="0.7">
<i class="none"></i>
0.7</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.6.html" title="0.6">
<i class="none"></i>
0.6</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.5.html" title="0.5">
<i class="none"></i>
0.5</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>0.4</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.3.html" title="0.3">
<i class="none"></i>
0.3</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Rome Fetcher 0.4<a name="Rome_Fetcher_0.4"></a></h2>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-fetcher-0.4-src.zip">rome-fetcher-0.4-src.zip</a></li>
<li><a href="./rome-fetcher-0.4.tar.gz">rome-fetcher-0.4.tar.gz</a></li>
<li><a href="./rome-fetcher-0.4.zip">rome-fetcher-0.4.zip</a></li>
<li><a href="./rome-fetcher-0.4-src.tar.gz">rome-fetcher-0.4-src.tar.gz</a></li></ul></div>
<div class="section">
<h3>Tutorials<a name="Tutorials"></a></h3>
<ul>
<li><a href="../BuildingTheRomeFetcher.html">Building the Rome Fetcher (fetcher)</a></li>
<li><a href="../UsingTheRomeFetcherModuleToRetrieveFeeds.html">Using the Rome Fetcher module to retrieve feeds (fetcher)</a></li>
<li><a href="../SampleProgramsIncluded.html">Sample programs included (fetcher)</a></li></ul></div>
<div class="section">
<h3>Todo list<a name="Todo_list"></a></h3>
<ul>
<li><a href="../TodoList.html">Todo list (fetcher)</a></li></ul></div>
<div class="section">
<h3>Issues<a name="Issues"></a></h3>
<ul>
<li><a href="../KnownIssues.html">Known Issues (fetcher)</a></li></ul></div>
<div class="section">
<h3>Change Log<a name="Change_Log"></a></h3>
<ul>
<li><a href="../ChangeLog.html">Change Log (fetcher)</a></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,288 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Rome Fetcher 0.5</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-down"></i>
Fetcher</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Dependencies/index.html" title="Dependencies">
<i class="none"></i>
Dependencies</a>
</li>
<li>
<a href="../../Fetcher/Releases/index.html" title="Releases">
<i class="icon-chevron-down"></i>
Releases</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0.html" title="1.0">
<i class="none"></i>
1.0</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0RC2.html" title="1.0RC2">
<i class="none"></i>
1.0RC2</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.9.html" title="0.9">
<i class="none"></i>
0.9</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.7.html" title="0.7">
<i class="none"></i>
0.7</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.6.html" title="0.6">
<i class="none"></i>
0.6</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>0.5</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.4.html" title="0.4">
<i class="none"></i>
0.4</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.3.html" title="0.3">
<i class="none"></i>
0.3</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Rome Fetcher 0.5<a name="Rome_Fetcher_0.5"></a></h2>
<p>The ROME Fetcher v 0.6 is now released. This page exists for historical purposes only.</p>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-fetcher-0.5-src.zip">rome-fetcher-0.5-src.zip</a></li>
<li><a href="./rome-fetcher-0.5.zip">rome-fetcher-0.5.zip</a></li>
<li><a href="./rome-fetcher-0.5.tar.gz">rome-fetcher-0.5.tar.gz</a></li>
<li><a href="./rome-fetcher-0.5-src.tar.gz">rome-fetcher-0.5-src.tar.gz</a></li></ul></div>
<div class="section">
<h3>Tutorials<a name="Tutorials"></a></h3>
<ul>
<li><a href="../BuildingTheRomeFetcher.html">Building the Rome Fetcher (fetcher)</a></li>
<li><a href="../UsingTheRomeFetcherModuleToRetrieveFeeds.html">Using the Rome Fetcher module to retrieve feeds (fetcher)</a></li>
<li><a href="../SampleProgramsIncluded.html">Sample programs included (fetcher)</a></li></ul></div>
<div class="section">
<h3>Todo list<a name="Todo_list"></a></h3>
<ul>
<li><a href="../TodoList.html">Todo list (fetcher)</a></li></ul></div>
<div class="section">
<h3>Issues<a name="Issues"></a></h3>
<ul>
<li><a href="../KnownIssues.html">Known Issues (fetcher)</a></li></ul></div>
<div class="section">
<h3>Change Log<a name="Change_Log"></a></h3>
<ul>
<li><a href="../ChangeLog.html">Change Log (fetcher)</a></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -1,33 +1,47 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Continuous Integration</title>
<link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="./css/site.css" />
<link rel="stylesheet" href="./css/print.css" media="print" />
<title>ROME - Releases</title>
<link rel="stylesheet" href="../../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../../css/site.css" />
<link rel="stylesheet" href="../../css/print.css" media="print" />
<script type="text/javascript" src="./js/apache-maven-fluido-1.3.0.min.js"></script>
<script type="text/javascript" src="../../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<img src="images/romelogo.png" alt="ROME"/>
<a href="../../index.html" id="bannerLeft">
<img src="../../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
@ -41,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -58,144 +72,153 @@
<li>
<a href="index.html" title="Overview">
<a href="../../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="HowRomeWorks/index.html" title="How Rome Works">
<a href="../../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<a href="../../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="ROMEReleases/index.html" title="Releases">
<a href="../../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<a href="../../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="project-info.html" title="Project Information">
<a href="../../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-down"></i>
Project Information</a>
Fetcher</a>
<ul class="nav nav-list">
<li>
<a href="index.html" title="About">
<i class="none"></i>
About</a>
</li>
<li>
<a href="plugin-management.html" title="Plugin Management">
<i class="none"></i>
Plugin Management</a>
</li>
<li>
<a href="distribution-management.html" title="Distribution Management">
<i class="none"></i>
Distribution Management</a>
</li>
<li>
<a href="dependency-info.html" title="Dependency Information">
<i class="none"></i>
Dependency Information</a>
</li>
<li>
<a href="source-repository.html" title="Source Repository">
<i class="none"></i>
Source Repository</a>
</li>
<li>
<a href="mail-lists.html" title="Mailing Lists">
<i class="none"></i>
Mailing Lists</a>
</li>
<li>
<a href="issue-tracking.html" title="Issue Tracking">
<i class="none"></i>
Issue Tracking</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>Continuous Integration</a>
</li>
<li>
<a href="plugins.html" title="Project Plugins">
<i class="none"></i>
Project Plugins</a>
</li>
<li>
<a href="license.html" title="Project License">
<i class="none"></i>
Project License</a>
</li>
<li>
<a href="dependency-management.html" title="Dependency Management">
<i class="none"></i>
Dependency Management</a>
</li>
<li>
<a href="team-list.html" title="Project Team">
<i class="none"></i>
Project Team</a>
</li>
<li>
<a href="project-summary.html" title="Project Summary">
<i class="none"></i>
Project Summary</a>
</li>
<li>
<a href="dependencies.html" title="Dependencies">
<a href="../../Fetcher/Dependencies/index.html" title="Dependencies">
<i class="none"></i>
Dependencies</a>
</li>
<li class="active">
<a href="#"><i class="icon-chevron-down"></i>Releases</a>
<ul class="nav nav-list">
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0.html" title="1.0">
<i class="none"></i>
1.0</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher1.0RC2.html" title="1.0RC2">
<i class="none"></i>
1.0RC2</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.9.html" title="0.9">
<i class="none"></i>
0.9</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.7.html" title="0.7">
<i class="none"></i>
0.7</a>
</li>
<li>
<a href="../../Fetcher/Releases/ROMEFetcher0.6.html" title="0.6">
<i class="none"></i>
0.6</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.5.html" title="0.5">
<i class="none"></i>
0.5</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.4.html" title="0.4">
<i class="none"></i>
0.4</a>
</li>
<li>
<a href="../../Fetcher/Releases/RomeFetcher0.3.html" title="0.3">
<i class="none"></i>
0.3</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="../../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
@ -207,7 +230,7 @@
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
<img class="builtBy" alt="Built by Maven" src="../../images/logos/maven-feather.png" />
</a>
</div>
</div>
@ -217,8 +240,7 @@
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Continuous Integration<a name="Continuous_Integration"></a></h2><a name="Continuous_Integration"></a>
<p>No continuous integration management system is defined. Please check back at a later date.</p></div>
<h2>Releases<a name="Releases"></a></h2></div>
</div>
</div>
</div>
@ -227,7 +249,7 @@
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -237,4 +259,4 @@
</div>
</footer>
</body>
</html>
</html>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,193 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Sample programs included</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Sample programs included<a name="Sample_programs_included"></a></h2>
<p>There are two sample programs included with Rome Fetcher.</p>
<p><a class="externalLink" href="https://github.com/rometools/rome-fetcher/tree/master/src/main/java/org/rometools/fetcher/samples/FeedReader.java">FeedReader</a> is a program which demonstrates the use of the Fetcher to retrieve a feed and then to use the conditional get support to retrieve it again only if it has changed. It also shows how to use the event API in the Fetcher. It can be run using the <tt>maven run-read</tt> target.</p>
<p><a class="externalLink" href="https://github.com/rometools/rome-fetcher/tree/master/src/main/java/org/rometools/fetcher/samples/FeedAggregator.java">FeedAggregator</a> is a program which aggregates a number of feeds together into a single feed. It can be run using the <tt>maven run-aggr</tt> target.</p></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

198
Fetcher/TodoList.html Normal file
View file

@ -0,0 +1,198 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Todo list</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Todo list<a name="Todo_list"></a></h2>
<p>Please discuss items here on the rome dev mailing list</p>
<ul>
<li>Automatically update the -<a class="externalLink" href="https://github.com/rometools/rome-fetcher/blob/master/src/java/org/rometools/fetcher/FeedFetcher.java">default User-Agent version number</a> via the build- Done: 23-June-2004</li>
<li>Listener Architecture (for URL changes via 3xx redirection etc) Done: 30-June-2004</li>
<li><a class="externalLink" href="http://radio.userland.com/userGuide/reference/howToRedirectRss">RSS Redirection</a></li>
<li>Unit Tests: smart unit tests along the lines of Mark Pilgrim's tests, in his -<a class="externalLink" href="http://diveintomark.org/projects/feed_parser/">Python Universal Feed Parser</a>. He instantiates a web server to a local directory where the samples live, and then fetches the feeds from the server, which allows him to test in depth the behavior of gzip compression and etags handling.- Done 30-June-2004</li>
<li>Better character encoding handling - See <a class="externalLink" href="http://diveintomark.org/archives/2004/02/13/xml-media-types">http://diveintomark.org/archives/2004/02/13/xml-media-types</a></li>
<li>A caching feed fetcher</li></ul></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,203 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Using the Rome Fetcher module to retrieve feeds</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Using the Rome Fetcher module to retrieve feeds<a name="Using_the_Rome_Fetcher_module_to_retrieve_feeds"></a></h2>
<p>The HttpURLFeedFetcher class does the actual HTTP request. It relies on the FeedInfoCacheI interface which stores information about each feed required for conditional gets. Currently there is a single implementation of FeedInfoCacheI supplied: <tt>HashMapFeedInfoCache</tt>.</p>
<p>The basic usage of FeedFetcher is as follows:</p>
<div class="source">
<pre>FeedFetcherCache feedInfoCache = HashMapFeedInfoCache.getInstance();
FeedFetcher feedFetcher = new HttpURLFeedFetcher(feedInfoCache);
SyndFeed feed = feedFetcher.retrieveFeed(new URL(&quot;http://blogs.sun.com/roller/rss/pat&quot;));
System.out.println(feed);</pre></div>
<p>Any subsequent fetches of <a class="externalLink" href="http://blogs.sun.com/roller/rss/pat">http://blogs.sun.com/roller/rss/pat</a> by any FeedFetcher using feedInfoCache will now only retrieve the feed if it has changed.</p>
<p>FeedFetcher can be used without a cache if required. Simply create it using the zero-parameter constructor:</p>
<div class="source">
<pre>FeedFetcher feedFetcher = new HttpURLFeedFetcher();</pre></div>
<p>A more complete sample (including the use of listener on Fetcher events) <a class="externalLink" href="https://github.com/rometools/rome-fetcher/blob/master/src/java/org/rometools/fetcher/samples/FeedReader.java">is included in the Rome Fetcher project</a></p>
<p>Note that there has been considerable discussion on the rome-dev list about the best way to manage the creation of the feed fetcher. Currently the client code needs to be responsible for creating specific implementations of the FeedFetcherI interface.</p></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

194
Fetcher/WishList.html Normal file
View file

@ -0,0 +1,194 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Wish list</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Wish list<a name="Wish_list"></a></h2>
<ul>
<li><a class="externalLink" href="http://diveintomark.org/archives/2002/05/31">RSS Autodiscovery</a></li>
<li><a class="externalLink" href="http://www.intertwingly.net/wiki/pie/PaceAutoDisco">Atom Autodiscovery</a></li>
<li>Connection timeout and read settings.</li></ul></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

239
Fetcher/index.html Normal file
View file

@ -0,0 +1,239 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110815" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Home</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li class="active">
<a href="#"><i class="icon-chevron-down"></i>Fetcher</a>
<ul class="nav nav-list">
<li>
<a href="../Fetcher/Dependencies/index.html" title="Dependencies">
<i class="none"></i>
Dependencies</a>
</li>
<li>
<a href="../Fetcher/Releases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
</ul>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Rome Fetcher<a name="Rome_Fetcher"></a></h2>
<p>The Rome Fetcher (see modules/fetcher) allows the retrieval of feeds via HTTP. It supports <a class="externalLink" href="http://fishbowl.pastiche.org/2002/10/21/http_conditional_get_for_rss_hackers">HTTP conditional gets</a> (ie: last modified and ETag handling) and GZip encoded feeds. It should enable user to write aggregators that follow the <a class="externalLink" href="http://diveintomark.org/archives/2003/07/21/atom_aggregator_behavior_http_level">Atom aggregator behaviour recommendations</a></p>
<p>As with the rest of Rome, the Fetcher subproject is ultra-lean - it requires <a href="./Dependencies/index.html">no new dependencies</a> over the requirements for Rome.</p></div>
<div class="section">
<h2>Tutorials<a name="Tutorials"></a></h2>
<ul>
<li><a href="./BuildingTheRomeFetcher.html">Building the Rome Fetcher (fetcher)</a></li>
<li><a href="./UsingTheRomeFetcherModuleToRetrieveFeeds.html">Using the Rome Fetcher module to retrieve feeds (fetcher)</a></li>
<li><a href="./SampleProgramsIncluded.html">Sample programs included (fetcher)</a></li></ul></div>
<div class="section">
<h2>Todo list<a name="Todo_list"></a></h2>
<ul>
<li><a href="./TodoList.html">Todo list (fetcher)</a></li></ul></div>
<div class="section">
<h2>Wish list<a name="Wish_list"></a></h2>
<ul>
<li><a href="./WishList.html">Wish list (fetcher)</a></li></ul></div>
<div class="section">
<h2>Issues<a name="Issues"></a></h2>
<ul>
<li><a href="./KnownIssues.html">Known Issues (fetcher)</a></li></ul></div>
<div class="section">
<h2>Releases<a name="Releases"></a></h2>
<ul>
<li><a href="./Releases/RomeFetcher0.3.html">Rome Fetcher 0.3 (fetcher)</a></li>
<li><a href="./Releases/RomeFetcher0.4.html">Rome Fetcher 0.4 (fetcher)</a></li>
<li><a href="./Releases/RomeFetcher0.5.html">Rome Fetcher 0.5 (fetcher)</a></li>
<li><a href="./Releases/ROMEFetcher0.6.html">ROME Fetcher 0.6 (fetcher)</a></li>
<li><a href="./Releases/ROMEFetcher0.7.html">ROME Fetcher 0.7 (fetcher)</a></li>
<li><a href="./Releases/ROMEFetcher0.9.html">ROME Fetcher 0.9 (fetcher)</a></li>
<li><a href="./Releases/ROMEFetcher1.0RC2.html">ROME Fetcher 1.0 RC2 (fetcher)</a></li>
<li><a href="./Releases/ROMEFetcher1.0.html">ROME Fetcher 1.0 (fetcher)</a></li></ul></div>
<div class="section">
<h2>Change Log<a name="Change_Log"></a></h2>
<ul>
<li><a href="./ChangeLog.html">Change Log (fetcher)</a></li></ul></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110814" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Rome v0.4 Tutorial, Defining a Custom Module (bean, parser and generator)</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -134,8 +146,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
@ -163,8 +210,7 @@
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Rome v0.4 Tutorial, Defining a Custom Module (bean, parser and generator)<a name="Rome_v0.4_Tutorial_Defining_a_Custom_Module_bean_parser_and_generator"></a></h2>
<p><b>Software requirements:</b> Synd J2SE 1.4+, JDOM 1.0 and Rome 0.4.</p>
<h2>Defining a Custom Module (bean, parser and generator)<a name="Defining_a_Custom_Module_bean_parser_and_generator"></a></h2>
<p>This tutorial walks through the steps of creating a custom module for syndication feeds that support additional namespaces (such as RSS 1.0, RSS 2.0 and Atom 0.3).</p>
<p>To understand this tutorial you should be familiar the with Rome API and with the use of modules in syndication feeds.</p>
<p>Out of the box Rome parsers and generators support plug-ability of modules for RSS 1.0, RSS 2.0 and Atom 0.3 at both feed and item/entry levels. Also support for the Dublin Core and Syndication modules is provided.</p>
@ -408,19 +454,19 @@ public class SampleModuleGenerator implements ModuleGenerator {
<pre>
# Parsers for RSS 1.0 feed modules
#
rss_1.0.feed.ModuleParser.classes=com.sun.syndication.samples.module.SampleModuleParser
rss_1.0.feed.ModuleParser.classes=com.rometools.rome.samples.module.SampleModuleParser
# Parsers for RSS 1.0 item modules
#
rss_1.0.item.ModuleParser.classes=com.sun.syndication.samples.module.SampleModuleParser
rss_1.0.item.ModuleParser.classes=com.rometools.rome.samples.module.SampleModuleParser
# Generators for RSS 1.0 feed modules
#
rss_1.0.feed.ModuleGenerator.classes=com.sun.syndication.samples.module.SampleModuleGenerator
rss_1.0.feed.ModuleGenerator.classes=com.rometools.rome.samples.module.SampleModuleGenerator
# Generators for RSS_1.0 entry modules
#
rss_1.0.item.ModuleGenerator.classes=com.sun.syndication.samples.module.SampleModuleGenerator
rss_1.0.item.ModuleGenerator.classes=com.rometools.rome.samples.module.SampleModuleGenerator
</pre></div>
<p>If you are defining more than one module, indicate the parser and generator implementation classes separated by commas or spaces.</p></div>
<div class="section">
@ -435,7 +481,7 @@ rss_1.0.item.ModuleGenerator.classes=com.sun.syndication.samples.module.SampleMo
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -445,4 +491,4 @@ rss_1.0.item.ModuleGenerator.classes=com.sun.syndication.samples.module.SampleMo
</div>
</footer>
</body>
</html>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110814" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Rome v0.4 Tutorial, Using Rome to aggregate many syndication feeds into a single one</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -134,8 +146,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
@ -163,9 +210,8 @@
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Rome v0.4 Tutorial, Using Rome to aggregate many syndication feeds into a single one<a name="Rome_v0.4_Tutorial_Using_Rome_to_aggregate_many_syndication_feeds_into_a_single_one"></a></h2>
<p><b>Software requirements:</b> J2SE 1.4+, JDOM 1.0 and Rome 0.4.</p>
<p>Rome represents syndication feeds (RSS and Atom) as instances of the com.sun.syndication.synd.SyndFeed interface. The SyndFeed interfaces and its properties follow the Java Bean patterns. The default implementations provided with Rome are all lightweight classes.</p>
<h2>Using Rome to aggregate many syndication feeds into a single one<a name="Using_Rome_to_aggregate_many_syndication_feeds_into_a_single_one"></a></h2>
<p>Rome represents syndication feeds (RSS and Atom) as instances of the com.rometools.rome.synd.SyndFeed interface. The SyndFeed interfaces and its properties follow the Java Bean patterns. The default implementations provided with Rome are all lightweight classes.</p>
<p>Rome includes parsers to process syndication feeds into SyndFeed instances. The SyndFeedInput class handles the parsers using the correct one based on the syndication feed being processed. The developer does not need to worry about selecting the right parser for a syndication feed, the SyndFeedInput will take care of it by peeking at the syndication feed structure. All it takes to read a syndication feed using Rome are the following 2 lines of code:</p>
<div class="source">
<pre>
@ -195,7 +241,7 @@ aggrFeed.setLink(&quot;http://www.anonymous.com&quot;);
<p>The following lines of code show how to copy the entries of a SyndFeed instance being read (inFeed) into a SyndFeed instance being created within the application (feed):</p>
<div class="source">
<pre>
package com.sun.syndication.samples;
package com.rometools.rome.samples;
import java.net.URL;
import java.io.InputStreamReader;
@ -203,11 +249,11 @@ import java.io.PrintWriter;
import java.util.List;
import java.util.ArrayList;
import com.sun.syndication.feed.synd.SyndFeed;
import com.sun.syndication.feed.synd.SyndFeedImpl;
import com.sun.syndication.io.SyndFeedOutput;
import com.sun.syndication.io.SyndFeedInput;
import com.sun.syndication.io.XmlReader;
import com.rometools.rome.feed.synd.SyndFeed;
import com.rometools.rome.feed.synd.SyndFeedImpl;
import com.rometools.rome.io.SyndFeedOutput;
import com.rometools.rome.io.SyndFeedInput;
import com.rometools.rome.io.XmlReader;
/**
* It aggregates a list of RSS/Atom feeds (they can be of different types)
@ -276,7 +322,7 @@ public class FeedAggregator {
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -286,4 +332,4 @@ public class FeedAggregator {
</div>
</footer>
</body>
</html>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110814" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Rome v0.4 Tutorial, Using Rome to convert a syndication feed from one type to another</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -134,8 +146,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
@ -163,9 +210,8 @@
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Rome v0.4 Tutorial, Using Rome to convert a syndication feed from one type to another<a name="Rome_v0.4_Tutorial_Using_Rome_to_convert_a_syndication_feed_from_one_type_to_another"></a></h2>
<p><b>Software requirements:</b> Synd J2SE 1.4+, JDOM 1.0 and Rome 0.4.</p>
<p>Rome represents syndication feeds (RSS and Atom) as instances of the com.sun.syndication.synd.SyndFeed interface. The SyndFeed interfaces and its properties follow the Java Bean patterns. The default implementations provided with Rome are all lightweight classes.</p>
<h2>Using Rome to convert a syndication feed from one type to another<a name="Using_Rome_to_convert_a_syndication_feed_from_one_type_to_another"></a></h2>
<p>Rome represents syndication feeds (RSS and Atom) as instances of the com.rometools.rome.synd.SyndFeed interface. The SyndFeed interfaces and its properties follow the Java Bean patterns. The default implementations provided with Rome are all lightweight classes.</p>
<p>Rome includes parsers to process syndication feeds into SyndFeed instances. The SyndFeedInput class handles the parsers using the correct one based on the syndication feed being processed. The developer does not need to worry about selecting the right parser for a syndication feed, the SyndFeedInput will take care of it by peeking at the syndication feed structure. All it takes to read a syndication feed using Rome are the following 2 lines of code:</p>
<div class="source">
<pre>
@ -183,15 +229,15 @@ output.output(feed,new PrintWriter(System.out));
<p>Following is the full code for a Java application that reads a syndication feed and converts it to other syndication feed type, writing the converted feed to the application's output.</p>
<div class="source">
<pre>
package com.sun.syndication.samples;
package com.rometools.rome.samples;
import java.net.URL;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import com.sun.syndication.feed.synd.SyndFeed;
import com.sun.syndication.io.SyndFeedInput;
import com.sun.syndication.io.SyndFeedOutput;
import com.sun.syndication.io.XmlReader;
import com.rometools.rome.feed.synd.SyndFeed;
import com.rometools.rome.io.SyndFeedInput;
import com.rometools.rome.io.SyndFeedOutput;
import com.rometools.rome.io.XmlReader;
/**
* It Converts any RSS/Atom feed type to a an RSS/Atom feed of the
@ -244,7 +290,7 @@ public class FeedConverter {
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -254,4 +300,4 @@ public class FeedConverter {
</div>
</footer>
</body>
</html>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110814" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Rome v0.4 Tutorial, Using Rome to create and write a syndication feed</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -134,8 +146,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
@ -163,9 +210,8 @@
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Rome v0.4 Tutorial, Using Rome to create and write a syndication feed<a name="Rome_v0.4_Tutorial_Using_Rome_to_create_and_write_a_syndication_feed"></a></h2>
<p><b>Software requirements:</b> J2SE 1.4+, JDOM 1.0 and Rome 0.4.</p>
<p>Rome represents syndication feeds (RSS and Atom) as instances of the com.sun.syndication.feed.synd.SyndFeed interface. The SyndFeed interfaces and its properties follow the Java Bean patterns. The default implementations provided with Rome are all lightweight classes.</p>
<h2>Using Rome to create and write a syndication feed<a name="Using_Rome_to_create_and_write_a_syndication_feed"></a></h2>
<p>Rome represents syndication feeds (RSS and Atom) as instances of the com.rometools.rome.feed.synd.SyndFeed interface. The SyndFeed interfaces and its properties follow the Java Bean patterns. The default implementations provided with Rome are all lightweight classes.</p>
<p>Creating a feed with SyndFeed beans consists of creating beans and setting their properties. The following code fragments show how a SyndFeed bean with 3 entries is created.</p>
<p>First the SyndFeed instance is created, the preferred syndication format is set and the feed header info (title, link, description) is also set.</p>
<div class="source">
@ -224,10 +270,10 @@
<p>Following is the full code for a Java application that creates a syndication feed and writes it to a file in the specified syndication format.</p>
<div class="source">
<pre>
package com.sun.syndication.samples;
package com.rometools.rome.samples;
import com.sun.syndication.feed.synd.*;
import com.sun.syndication.io.SyndFeedOutput;
import com.rometools.rome.feed.synd.*;
import com.rometools.rome.io.SyndFeedOutput;
import java.io.FileWriter;
import java.io.Writer;
@ -331,7 +377,7 @@ public class FeedWriter {
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -341,4 +387,4 @@ public class FeedWriter {
</div>
</footer>
</body>
</html>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110814" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Rome v0.4 Tutorial, Using Rome to read a syndication feed</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -134,8 +146,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
@ -163,9 +210,8 @@
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Rome v0.4 Tutorial, Using Rome to read a syndication feed<a name="Rome_v0.4_Tutorial_Using_Rome_to_read_a_syndication_feed"></a></h2>
<p><b>Software requirements:</b> J2SE 1.4+, JDOM 1.0 and Rome 0.4.</p>
<p>Rome represents syndication feeds (RSS and Atom) as instances of the com.sun.syndication.synd.SyndFeed interface. The SyndFeed interfaces and its properties follow the Java Bean patterns. The default implementations provided with Rome are all lightweight classes.</p>
<h2>Using Rome to read a syndication feed<a name="Using_Rome_to_read_a_syndication_feed"></a></h2>
<p>Rome represents syndication feeds (RSS and Atom) as instances of the com.rometools.rome.synd.SyndFeed interface. The SyndFeed interfaces and its properties follow the Java Bean patterns. The default implementations provided with Rome are all lightweight classes.</p>
<p>Rome includes parsers to process syndication feeds into SyndFeed instances. The SyndFeedInput class handles the parsers using the correct one based on the syndication feed being processed. The developer does not need to worry about selecting the right parser for a syndication feed, the SyndFeedInput will take care of it by peeking at the syndication feed structure. All it takes to read a syndication feed using Rome are the following 2 lines of code:</p>
<div class="source">
<pre>
@ -181,13 +227,13 @@ System.out.println(feed);
<p>Following is the full code for a Java application that reads a syndication feed and prints the SyndFeed bean to the application's output.</p>
<div class="source">
<pre>
package com.sun.syndication.samples;
package com.rometools.rome.samples;
import java.net.URL;
import java.io.InputStreamReader;
import com.sun.syndication.feed.synd.SyndFeed;
import com.sun.syndication.io.SyndFeedInput;
import com.sun.syndication.io.XmlReader;
import com.rometools.rome.feed.synd.SyndFeed;
import com.rometools.rome.io.SyndFeedInput;
import com.rometools.rome.io.XmlReader;
/**
* It Reads and prints any RSS/Atom feed type.
@ -234,7 +280,7 @@ public class FeedReader {
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -244,4 +290,4 @@ public class FeedReader {
</div>
</footer>
</body>
</html>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110814" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Understanding the Rome common classes and interfaces</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -134,8 +146,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
@ -443,7 +490,7 @@ public interface Foo extends CopyFrom {
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -453,4 +500,4 @@ public interface Foo extends CopyFrom {
</div>
</footer>
</body>
</html>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - How Rome works</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -134,8 +146,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
@ -182,7 +229,7 @@ SyndFeed feed = input.build(new InputStreamReader(feedUrl.openStream()));
</pre></div></li>
<li>SyndFeedInput delegates to WireFeedInput to do the actual parsing.</li>
<li><a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/io/WireFeedInput.html">WireFeedInput</a> uses a PluginManager of class FeedParsers to pick the right parser to use to parse the feed and then calls that parser to parse the Newsfeed.</li>
<li>The appropriate parser parses the Newsfeed parses the feed, using <a class="externalLink" href="http://www.jdom.org/">JDom</a>, into a <a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/WireFeed.html">WireFeed</a>. If the Newsfeed is in an RSS format, the the WireFeed is of class <a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/rss/Channel.html">Channel</a> and contains Items, Clouds, and other RSS things from the <a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/rss/package-summary.html">com.sun.syndication.feed.rss</a> package. Or, on the other hand, if the Newsfeed is in Atom format, then the WireFeed is of class <a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/atom/Feed.html">Feed</a> from the <a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/atom/package-summary.html">com.sun.syndication.atom</a> package. In the end, WireFeedInput returns a WireFeed.</li>
<li>The appropriate parser parses the Newsfeed parses the feed, using <a class="externalLink" href="http://www.jdom.org/">JDom</a>, into a <a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/WireFeed.html">WireFeed</a>. If the Newsfeed is in an RSS format, the the WireFeed is of class <a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/rss/Channel.html">Channel</a> and contains Items, Clouds, and other RSS things from the <a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/rss/package-summary.html">com.rometools.rome.feed.rss</a> package. Or, on the other hand, if the Newsfeed is in Atom format, then the WireFeed is of class <a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/atom/Feed.html">Feed</a> from the <a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/atom/package-summary.html">com.rometools.rome.atom</a> package. In the end, WireFeedInput returns a WireFeed.</li>
<li>SyndFeedInput uses the returned WireFeedInput to create a SyndFeedImpl. Which implements SyndFeed. SyndFeed is an interface, the root of an abstraction that represents a format independent Newsfeed.</li>
<li><a class="externalLink" href="http://rome.dev.java.net/apidocs/0_4/com/sun/syndication/feed/synd/SyndFeed.html">SyndFeedImpl</a> uses a Converter to convert between the format specific WireFeed representation and a format-independent SyndFeed.</li>
<li>SyndFeedInput returns to you a SyndFeed containing the parsed Newsfeed.</li></ol></div>
@ -210,7 +257,7 @@ SyndFeed feed = input.build(new InputStreamReader(feedUrl.openStream()));
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -220,4 +267,4 @@ SyndFeed feed = input.build(new InputStreamReader(feedUrl.openStream()));
</div>
</footer>
</body>
</html>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110814" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - How to build Rome?</title>
<link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="index.html" id="bannerLeft">
<img src="images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -92,8 +104,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="project-info.html" title="Project Information">
@ -173,7 +220,7 @@ rome/target/rome-VERSION.jar
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -183,4 +230,4 @@ rome/target/rome-VERSION.jar
</div>
</footer>
</body>
</html>
</html>

310
Modules/A9OpenSearch.html Normal file
View file

@ -0,0 +1,310 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - A9 OpenSearch</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>A9 OpenSearch<a name="A9_OpenSearch"></a></h2>
<p>This plug in is for use with <a class="externalLink" href="http://www.opensearch.org/">OpenSearch.org</a> results.</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SyndFeed feed = new SyndFeedImpl();
feed.setFeedType(feedType);
// Add the opensearch module, you would get information like totalResults from the
// return results of your search
List mods = feed.getModules();
OpenSearchModule osm = new OpenSearchModuleImpl();
osm.setItemsPerPage(1);
osm.setStartIndex(1);
osm.setTotalResults(1024);
osm.setItemsPerPage(50);
OSQuery query = new OSQuery();
query.setRole(&quot;superset&quot;);
query.setSearchTerms(&quot;Java Syndication&quot;);
query.setStartPage(1);
osm.addQuery(query);
Link link = new Link();
link.setHref(&quot;http://www.bargainstriker.com/opensearch-description.xml&quot;);
link.setType(&quot;application/opensearchdescription+xml&quot;);
osm.setLink(link);
mods.add(osm);
feed.setModules(mods);
// end add module</pre></div></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>0.1<a name="a0.1"></a></h4>
<p>Initial move to the ROME project.</p></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

291
Modules/Content.html Normal file
View file

@ -0,0 +1,291 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Content</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Content<a name="Content"></a></h2>
<p>This plug in is for use content:encoded in feeds.</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SyndFeedInput input = new SyndFeedInput();
SyndFeed syndfeed = input.build(new XmlReader(feed.toURL()));
Module module = syndfeed.getModule(&quot;http://purl.org/rss/1.0/modules/content/&quot;);
ContentModule content = (ContentModule) module;
Iterator it = content.getEncodeds().iterator();
System.out.println( it.next() );</pre></div></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>0.4<a name="a0.4"></a></h4>
<p>Initial move to the ROME project.</p></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,294 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Creative Commons</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Creative Commons<a name="Creative_Commons"></a></h2>
<p>This plug in is for use with feeds from Creative Commons license.</p>
<p>This module provides a unified rights and license system for both the RSS2/Atom and RSS/RDF namespace. However, if you wish to <b>generate</b> RDF/RSS feeds, you need to use a CVS build of ROME (or a version higher than 0.8).</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>CreativeCommons commons = new CreativeCommonsImpl();
commons.setLicense( new License[]{ License.NONCOMMERCIAL } );
// Note, you do not have to setAllLicenses right now. When the RSS1 functionality is
// added, this will be required at the Feed level only.
ArrayList modules = new ArrayList()
modules.add( commons );
syndEntry.setModules( commons );
//Alternately, to get the module:
CreativeCommons commons = (CreativeCommons) syndFeed.getModule( CreativeCommons.URI );</pre></div></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>0.2<a name="a0.2"></a></h4>
<p>Initial release from ROME.</p></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

304
Modules/GeoRSS.html Normal file
View file

@ -0,0 +1,304 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - GeoRSS</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>GeoRSS<a name="GeoRSS"></a></h2>
<p>This Rome plugin is for adding location information to RSS/Atom.</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = input.build(new XmlReader(new URL(&quot;http://www.geonames.org/recent-changes.xml&quot;)));
List&lt;SyndEntry&gt;; entries = feed.getEntries();
for (SyndEntry entry : entries) {
GeoRSSModule geoRSSModule = GeoRSSUtils.getGeoRSS(entry);
System.out.println(entry.getTitle() + &quot; : lat=&quot;
+ geoRSSModule.getLatitude() + &quot;,lng=&quot;
+ geoRSSModule.getLongitude() + &quot;, desc=&quot;
+ entry.getDescription().getValue() + &quot;; time=&quot;
+ entry.getPublishedDate());
}
//to generate a GeoRSS item
GeoRSSModule geoRSSModule = new W3CGeoModuleImpl();
//GeoRSSModule geoRSSModule = new SimpleModuleImpl();
geoRSSModule.setLatitude(47.0);
geoRSSModule.setLongitude(9.0);
entry.getModules().add(geoRSSModule);</pre></div>
<p>More information here: <a class="externalLink" href="http://georss.geonames.org/">http://georss.geonames.org/</a></p></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>0.1<a name="a0.1"></a></h4>
<p>Initial Releas from ROME</p></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

296
Modules/GoogleBase.html Normal file
View file

@ -0,0 +1,296 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Google Base</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Google Base<a name="Google_Base"></a></h2>
<p>This plug in is for use with Google Base RSS/Atom Extensions</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SyndEntry entry = new SyndEntryImpl();
// set up the entry...
Vehicle vehicle = new GoogleBaseImpl();
vehicle.setMake(&quot;Honda&quot;);
vehicle.setModel(&quot;Insight&quot;);
vehicle.setYear( new Year(&quot;2000&quot;));
List modules = new ArrayList();
modules.add( vehicle );
entry.setModules( modules );
//Optionally, to get Google Base information from a Feed:
Article article = entry.getModule( &quot;http://base.google.com/ns/1.0&quot; );
System.out.println( article.getPages() );</pre></div></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>0.2<a name="a0.2"></a></h4>
<p>Initial release from ROME project.</p></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,304 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - iPhoto Photocasting</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>iPhoto Photocasting<a name="iPhoto_Photocasting"></a></h2>
<p>This plug in is for use with iPhoto Photocast listings.</p>
<p>This module will read and write photocast feeds &quot;properly&quot;. Be advised, however, that an iPhoto photocast feed will not pass a FeedValidator test as they are not properly namespaced. If you are wanting to publish, rather than read, consider using the <a href="./MediaRSS.html">MediaRSS (modules)</a> plug in instead. iPhoto will also read <a href="./MediaRSS.html">MediaRSS (modules)</a> (Flickr Photostream) feeds as well.</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SyndFeed feed = input.build( new File( &quot;/foo.rss&quot; ) ) );
List entries = feed.getEntries();
for( int i =0; i &lt; entries.size() ; i++ ){
System.out.println( ((SyndEntry)entries.get(i)).getModule( PhotocastModule.URI ) );
}
// or to create a photocast module:
SyndFeed myFeed = new SyndFeedImpl();
myFeed.getModules().add( new PhotocastModuleImpl() );
// you need this as a placeholder so the version gets in the feed.
SyndEntry myEntry = new SyndEntryImpl();
PhotocastModule pm = new PhotocastModuleImpl();
pm.setUrl( new URL(&quot;http://foo.com/img.jpg&quot; ) );
pm.setThumnail( new URL(&quot;http://foo.com/img-small.jpg&quot; ) );
pm.setCropDate( new Date() );
pm.setPhotoDate( new Date() );
pm.setMetaData( new PhotoDate(), &quot;Some comments that I think always get ignored.&quot; );
myEntry.getModules().add( pm );</pre></div></div>
<div class="section">
<h3>Changes:<a name="Changes:"></a></h3>
<div class="section">
<h4>0.2<a name="a0.2"></a></h4>
<p>Initial move to the ROME project.</p></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,305 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - iTunes Podcasting</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li class="active">
<a href="#"><i class="none"></i>iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>iTunes Podcasting<a name="iTunes_Podcasting"></a></h2>
<p>This plug in is for use with iTunes Music Service podcast listings.</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SyndFeedInput input = new SyndFeedInput();
SyndFeed syndfeed = input.build(new XmlReader(feed.toURL()));
Module module = syndfeed.getModule(&quot;http://www.itunes.com/dtds/podcast-1.0.dtd&quot;);
FeedInformation feedInfo = (FeedInformation) module;
System.out.println( feedInfo.getImage() );
System.out.println( feedInfo.getCategory() );
// Or to create a feed..
ArrayList modules = new ArrayList();
EntryInformation e = new EntryInformationImpl();
e.setDuration( new Duration( 10000 ) );
modules.add( e );
syndEntry.setModules( modules );</pre></div></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>0.4<a name="a0.4"></a></h4>
<ul>
<li>Corrected some Feed vs Item attribute issue.</li>
<li>Keywords now comma separated instead of space.</li></ul></div>
<div class="section">
<h4>0.3<a name="a0.3"></a></h4>
<ul>
<li>Added support for the &quot;other&quot; case of podcasts. It will now correctly parse all lowercase URIs as wells as the original mixed case URIs All generated feeds use the lowercase URI. Fixed some entity problems related to the apple summary tag.</li></ul></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

306
Modules/MediaRSS.html Normal file
View file

@ -0,0 +1,306 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20111018" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - MediaRSS</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>MediaRSS<a name="MediaRSS"></a></h2>
<p>This plugin is for use with Yahoo! MediaRSS/Flickr Photostreams</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SyndFeed feed = input.build( myRSSFile );
List entries = feed.getEntries();
for( int i = 0; i &lt; entries.size(); i++ ){
System.out.println( ((SyndEntry) entries.get(i)).getModule( MediaModule.URI ) );
}
//Alternatively, to add a media item to an entry:
MediaContent[] contents = new MediaContent[1];
MediaContent myItem = new MediaContent( new UrlReference(&quot;http://me.com/movie.mpg&quot;) );
contents[0] = myItem();
Metadata md = new Metadata();
Thumbnail[] thumbs = new Thumbnail[2];
thumbs[0] = new Thumbnail( new URL(&quot;http://me.com/movie1.jpg&quot;) );
thumbs[1] = new Thumbnail( new URL(&quot;http://me.com/movie2.jpg&quot;) );
md.setThumbnail( thumbs );
myItem.setMetadata( md );
MediaEntryModuleImpl module = new MediaEntryModuleImpl();
module.setMediaContents( contents );
mySyndEntry.getModules().add( module );</pre></div></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>0.2.1<a name="a0.2.1"></a></h4>
<p>Bugfix for metadata on MediaGroups.</p></div>
<div class="section">
<h4>0.1<a name="a0.1"></a></h4>
<p>Initial release from ROME.</p></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,304 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Microsoft Simple List Extensions</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Microsoft Simple List Extensions<a name="Microsoft_Simple_List_Extensions"></a></h2>
<p>This plug in is for use with feeds ith Microsoft Simple List Extensions.</p>
<p>Note you need to use the current CVS version of ROME or 0.9 when available.</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SimpleListExtension sle = (SimpleListExtension) feed.getModule( SimpleListExtension.URI );
System.out.println( sle );
Group[] groups = sle.getGroupFields();
System.out.println( groups[0].getLabel() );
//You can use the SleUtility class to do sorting and grouping:
List sortedEntries = SleUtility.sort( feed.getEntries(), sle.getSortFields()[1], true );
SyndEntry entry = (SyndEntry) sortedEntries.get( 0 );
//You can also Group or Sort and Group
List sortedAndGroupedEntries = SleUtility.sortAndGroup( feed.getEntries, sle.getGroupFields(), sle.getSortFields()[0], false );
// If you change, for instance, module values on a feed and want to reinitialize it for
// grouping and sorting...
SleUtility.initializeForSorting( feed );
// Be aware, this is a VERY heavy operation and should not be used frequently.</pre></div></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>0.1<a name="a0.1"></a></h4>
<p>Initial release from ROME.</p></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,297 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Microsoft Simple Sharing Extensions</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Microsoft Simple Sharing Extensions<a name="Microsoft_Simple_Sharing_Extensions"></a></h2>
<p>This ROME module supports Microsoft Simple Sharing Extensions, an RSS and <a href="../opml/index.html">OPML</a> extension designed to support data synchronization between bi-directional feeds.</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SyndFeedInput input = new SyndFeedInput();
SyndFeed syndfeed = input.build(new XmlReader(feed.toURL()));
List entries = syndfeed.getEntries();
Iterator it = entries.iterator();
for (int id = 101; it.hasNext() &amp;&amp; id &lt;= 113; id++) {
SyndEntry entry = (SyndEntry) it.next();
Sync sync = (Sync) entry.getModule(SSEModule.SSE_SCHEMA_URI);
assertEquals(String.valueOf(id), sync.getId());
History history = sync.getHistory();
assertNotNull(history);
Date when = history.getWhen();
assertNotNull(when);
Date testDate = DateParser.parseRFC822(&quot;Fri, 6 Jan 2006 19:24:09 GMT&quot;);
assertEquals(testDate, when);
}</pre></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

297
Modules/Slash.html Normal file
View file

@ -0,0 +1,297 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Slash</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Slash<a name="Slash"></a></h2>
<p>This plug in is for use with feeds from Slash-based weblogs.</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SyndEntry entry = new SyndEntryImpl();
// set up the entry...
Slash slash = new SlashImpl();
slash.setComments( new Integer( 12 ) );
slash.setDepartment( &quot;look-another-rome-plugin&quot; );
slash.setSection(&quot;code&quot;);
slash.setHitParade( new Integer[] { new Integer(12), new Integer(0) } );
List modules = new ArrayList();
modules.add( slash );
entry.setModules( modules );
//Optionally, to get Slash information from a Feed:
Slash slash = entry.getModule( Slash.URI );
System.out.println( slash.getComments() );</pre></div></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>0.2<a name="a0.2"></a></h4>
<p>Initial release from ROME.</p></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

295
Modules/Weather.html Normal file
View file

@ -0,0 +1,295 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Weather</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-down"></i>
Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>Weather<a name="Weather"></a></h2>
<p>This plug in is for use the <a class="externalLink" href="http://developer.yahoo.com/weather/">Yahoo! Weather service</a>.</p>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<div class="source">
<pre>SyndFeed feed = input.build( ... );
YWeatherFeedModule yfeed = (YWeatherFeedModule) feed.getModule( YWeatherFeedModule.URI );
System.out.println( yfeed.getLocation().getCity() );
SyndEntry entry = (SyndEntry) feed.getEntries().get(0);
YWeatherEntryModule yentry = (YWeatherEntryModule) entry.getModule( YWeatherEntryModule.URI );
System.out.println( yentry.getForecasts()[0].getHigh() );
//Optionally, to add Weather information to a feed:
SyndEntry entry = new SyndEntryImpl();
YWeatherEntryModule yentry = new YWeatherModuleImpl();
yentry.setCondition( Condition(&quot;Partly Cloudy&quot;, ConditionCode.PARTLY_CLOUDY, 65, new Date() ) );
entry.getModules.add(yentry);</pre></div></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>0.1<a name="a0.1"></a></h4>
<p>Initial release from ROME.</p></div></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

326
Modules/index.html Normal file
View file

@ -0,0 +1,326 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Home</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li class="active">
<a href="#"><i class="icon-chevron-down"></i>Modules</a>
<ul class="nav nav-list">
<li>
<a href="../Modules/ITunesPodcasting.html" title="iTunes Podcasting">
<i class="none"></i>
iTunes Podcasting</a>
</li>
<li>
<a href="../Modules/GeoRSS.html" title="GeoRSS.html">
<i class="none"></i>
GeoRSS.html</a>
</li>
<li>
<a href="../Modules/Slash.html" title="Slash">
<i class="none"></i>
Slash</a>
</li>
<li>
<a href="../Modules/GoogleBase.html" title="Google Base">
<i class="none"></i>
Google Base</a>
</li>
<li>
<a href="../Modules/Content.html" title="Content">
<i class="none"></i>
Content</a>
</li>
<li>
<a href="../Modules/CreativeCommons.html" title="Creative Commons">
<i class="none"></i>
Creative Commons</a>
</li>
<li>
<a href="../Modules/MediaRSS.html" title="Yahoo! MediaRSS">
<i class="none"></i>
Yahoo! MediaRSS</a>
</li>
<li>
<a href="../Modules/IPhotoPhotocasting.html" title="iPhoto Photocasting">
<i class="none"></i>
iPhoto Photocasting</a>
</li>
<li>
<a href="../Modules/A9OpenSearch.html" title="A9 OpenSearch">
<i class="none"></i>
A9 OpenSearch</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleListExtensions.html" title="Microsoft Simple List Extensions">
<i class="none"></i>
Microsoft Simple List Extensions</a>
</li>
<li>
<a href="../Modules/MicrosoftSimpleSharingExtensions.html" title="Microsoft Simple Sharing Extensions">
<i class="none"></i>
Microsoft Simple Sharing Extensions</a>
</li>
<li>
<a href="../Modules/Weather.html" title="Yahoo! Weather">
<i class="none"></i>
Yahoo! Weather</a>
</li>
</ul>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>The ROME Modules Subproject.<a name="The_ROME_Modules_Subproject."></a></h2>
<p>The ROME Modules project is an effort to roll up contributed module support into a single distribution for users.</p>
<div class="section">
<h3>Current modules in the subproject include:<a name="Current_modules_in_the_subproject_include:"></a></h3>
<ul>
<li><a href="./ITunesPodcasting.html">iTunes Podcasting (modules)</a> &#x2013; Apples extensions for listing in the iTunes podcast directory.</li>
<li><a href="./GeoRSS.html">GeoRSS (modules)</a> &#x2013; For adding location information to RSS/Atom.</li>
<li><a href="./Slash.html">Slash (modules)</a> &#x2013; Used by Slash-based blogs.</li>
<li><a href="./GoogleBase.html">Google Base (modules)</a> &#x2013; For working with the Google Base types and custom tagsets.</li>
<li><a href="./Content.html">Content (modules)</a> &#x2013; For using content:encoded tags.</li>
<li><a href="./CreativeCommons.html">Creative Commons (modules)</a> &#x2013; A unified module for working with the RDF and RSS/Atom Creative Commons License information.</li>
<li><a href="./MediaRSS.html">Yahoo! MediaRSS</a> &#x2013; For working with Yahoo! MediaRSS feeds (and Flickr Photostreams)</li>
<li><a href="./IPhotoPhotocasting.html">iPhoto Photocasting (modules)</a> &#x2013; For working with Apple iPhoto Photocasts</li>
<li><a href="./A9OpenSearch.html">A9 OpenSearch (modules)</a> &#x2013; For working with Amazon/OpenSearch.org results.</li>
<li><a href="./MicrosoftSimpleListExtensions.html">Microsoft Simple List Extensions (modules)</a> &#x2013; for sorting and grouping entries.</li>
<li><a href="./MicrosoftSimpleSharingExtensions.html">Microsoft Simple Sharing Extensions (modules)</a> &#x2013; for synchronizing across bi-directional RSS and <a href="./index.html">OPML</a> feeds.</li>
<li><a href="./Weather.html">Yahoo! Weather</a> &#x2013; For use with the Yahoo Weather API</li></ul></div>
<div class="section">
<h3>Get it.<a name="Get_it."></a></h3>
<p>The 0.3.2 release of modules.jar (which contains all the above modules) is available.</p></div>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-modules-1.0.jar">rome-modules-1.0.jar</a></li>
<li><a href="./modules-0.3.2-javadoc.jar">modules-0.3.2-javadoc.jar</a></li>
<li><a href="./modules-0.3.2.jar">modules-0.3.2.jar</a></li>
<li><a href="./modules-0.3.1.jar">modules-0.3.1.jar</a></li>
<li><a href="./modules-0.3.1-javadoc.jar">modules-0.3.1-javadoc.jar</a></li>
<li><a href="./modules-0.3.1-sources.jar">modules-0.3.1-sources.jar</a></li>
<li><a href="./modules-0.3-sources.jar">modules-0.3-sources.jar</a></li>
<li><a href="./modules-0.3.2-sources.jar">modules-0.3.2-sources.jar</a></li>
<li><a href="./modules-0.3.jar">modules-0.3.jar</a></li>
<li><a href="./modules-0.3-javadoc.jar">modules-0.3-javadoc.jar</a></li></ul>
<p>Please don't use modules-0.3.jar. It had errors in the packaging which have been fixed in modules-0.3.1.jar and subsequent releases</p>
<p>See individual module sites for information.</p></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<div class="section">
<h4>1.0 - released 24 February 2011<a name="a1.0_-_released_24_February_2011"></a></h4>
<p>Finalized 1.0 release.</p></div>
<div class="section">
<h4>0.3.2 - released 30 Jan 2009<a name="a0.3.2_-_released_30_Jan_2009"></a></h4>
<ul>
<li><a class="externalLink" href="http://java.net/jira/browse/ROME-122">http://java.net/jira/browse/ROME-122</a></li></ul></div></div>
<div class="section">
<h3>General Guidelines for modules:<a name="General_Guidelines_for_modules:"></a></h3>
<p>This is intended to serve as a guide for contributions as well as a hint for users working with the modules.</p>
<ul>
<li>Modules are packaged in com.rometools.rome.feed.module.[Module Name].</li>
<li>Modules contain a com.rometools.rome.feed.module.[Module Name].Module.URI reference for retrieval from ROME Synd* classes.</li>
<li>Modules contain a com.rometools.rome.feed.module.[Module Name].ModuleImpl that is a concrete implementation.</li>
<li>Modules contain a com.rometools.rome.feed.module.[Module Name].types package that holds any other datatypes needed for the module. Many of these are simple immutable types to simplify clone() and copyFrom()</li>
<li>Modules contain a com.rometools.rome.feed.module.[Module Name].io package with parsers and generators.</li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Modules/modules-0.3.1.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Modules/modules-0.3.2.jar Normal file

Binary file not shown.

BIN
Modules/modules-0.3.jar Normal file

Binary file not shown.

Binary file not shown.

284
Opml/index.html Normal file
View file

@ -0,0 +1,284 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="kwebble" />
<meta name="Date-Creation-yyyymmdd" content="20110923" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Home</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME OPML<a name="ROME_OPML"></a></h2>
<p>This project provides support for <a class="externalLink" href="http://www.opml.org/">OPML</a> in ROME.</p>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./apidocs/index.html">JavaDocs</a></li></ul></div>
<div class="section">
<h3>Sample Usage<a name="Sample_Usage"></a></h3>
<p>To use this parser, simply include the jar file in your classpath as you are using ROME. Be sure it exists at the same level as ROME, such that, if ROME is in the common classpath of an application server, don't include this jar in your webapps WEB-INF/lib.</p>
<div class="source">
<pre>WireFeedInput input = new WireFeedInput();
Opml feed = (Opml) input.build( new File(&quot;myOpml.xml&quot;) );
List&lt;Outline&gt; outlines = (List&lt;Outline&gt;) feed.getOutlines();</pre></div></div>
<div class="section">
<h3>Hierarchy vs Flat<a name="Hierarchy_vs_Flat"></a></h3>
<p>Since OPML is a hierarchical format, some magic is required to preserve this information when they feed is moved to a Synd* structure. This is accomplished by adding categories indicating the tree structure to the <a class="externalLink" href="http://wiki.java.net/bin/edit/Javawsxml/SyndEntries?topicparent=Javawsxml.OPML;nowysiwyg=0">SyndEntries</a> ...</p>
<p>For example:</p>
<div class="source">
<pre>&lt;opml version=&quot;1.0&quot;&gt;
&lt;head&gt;
&lt;title&gt;Top Ten Sources for podcasting&lt;/title&gt;
&lt;ownerName&gt;Newsilike Media Group&lt;/ownerName&gt;
&lt;ownerEmail&gt;opml@TopTenSources.com&lt;/ownerEmail&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;outline type=&quot;link&quot; text=&quot;TopTenSources: podcasting&quot;
url=&quot;http://podcasting.TopTenSources.com/TopTenSources/&quot; /&gt;
&lt;outline text=&quot;CBS Technology News Podcast - Larry Magid' Tech Report&quot;&gt;
&lt;outline type=&quot;link&quot; text=&quot;Larry Magid's Tech Report&quot; url=&quot;http://www.cbsnews.com&quot; /&gt;
&lt;/outline&gt;
&lt;outline text=&quot;Adam Curry: Daily Source Code&quot;&gt;
&lt;outline type=&quot;link&quot; text=&quot;#374 Daily Source Code for Tuesday April 25th 2006&quot;
url=&quot;http://radio.weblogs.com/0001014/2006/04/26.html#a7304&quot; /&gt;
&lt;outline type=&quot;link&quot; text=&quot;#373 Daily Source Code for Monday April 24th 2006&quot;
url=&quot;http://radio.weblogs.com/0001014/2006/04/24.html#a7303&quot; /&gt;
&lt;outline type=&quot;link&quot; text=&quot;#372 Daily Source Code for Friday April 21st 2006&quot;
url=&quot;http://radio.weblogs.com/0001014/2006/04/21.html#a7302&quot; /&gt;
&lt;outline type=&quot;link&quot; text=&quot;#371 Daily Source Code for Thursday April 20th 2006&quot;
url=&quot;http://radio.weblogs.com/0001014/2006/04/20.html#a7301&quot; /&gt;
&lt;outline type=&quot;link&quot; text=&quot;#370 Daily Source Code for Wednesday April 19th 2006&quot;
url=&quot;http://radio.weblogs.com/0001014/2006/04/19.html#a7300&quot; /&gt;
&lt;/outline&gt;
&lt;outline text=&quot;Gillmor Gang&quot;&gt;
&lt;outline type=&quot;link&quot; text=&quot;Syndicate Gang Part I&quot; url=&quot;http://gillmorgang.podshow.com/?p=44&quot; /&gt;
&lt;outline type=&quot;link&quot; text=&quot;HughTrain Gang&quot; url=&quot;http://gillmorgang.podshow.com/?p=43&quot; /&gt;
&lt;outline type=&quot;link&quot; text=&quot;Phlegm at 11 Gang&quot; url=&quot;http://gillmorgang.podshow.com/?p=42&quot; /&gt;
&lt;outline type=&quot;link&quot; text=&quot;NDA Gang&quot; url=&quot;http://gillmorgang.podshow.com/?p=41&quot; /&gt;
&lt;outline type=&quot;link&quot; text=&quot;When the Music?s Over Gang&quot; url=&quot;http://gillmorgang.podshow.com/?p=40&quot; /&gt;
&lt;/outline&gt;</pre></div>
<p>...<br />When converted to RSS2 becomes:</p>
<div class="source">
<pre>&lt;channel&gt;
&lt;title&gt;Top Ten Sources for podcasting&lt;/title&gt;
&lt;link&gt;http://foo.com&lt;/link&gt;
&lt;description /&gt;
&lt;managingEditor&gt;Newsilike Media Group&lt;/managingEditor&gt;
&lt;item&gt;
&lt;title&gt;TopTenSources: podcasting&lt;/title&gt;
&lt;link&gt;http://podcasting.TopTenSources.com/TopTenSources/&lt;/link&gt;
&lt;category domain=&quot;urn:rome.tree&quot;&gt;node.-1732517202&lt;/category&gt;
&lt;category domain=&quot;urn:rome.attribute#url&quot;&gt;http://podcasting.TopTenSources.com/TopTenSources/&lt;/category&gt;
&lt;guid&gt;http://podcasting.TopTenSources.com/TopTenSources/&lt;/guid&gt;
&lt;/item&gt;
&lt;item&gt;
&lt;title&gt;CBS Technology News Podcast - Larry Magid' Tech Report&lt;/title&gt;
&lt;category domain=&quot;urn:rome.tree&quot;&gt;node.1353657827&lt;/category&gt;
&lt;/item&gt;
&lt;item&gt;
&lt;title&gt;Larry Magid's Tech Report&lt;/title&gt;
&lt;link&gt;http://www.cbsnews.com&lt;/link&gt;
&lt;category domain=&quot;urn:rome.tree&quot;&gt;node.-4085850&lt;/category&gt;
&lt;category domain=&quot;urn:rome.tree&quot;&gt;parent.1353657827&lt;/category&gt;
&lt;category domain=&quot;urn:rome.attribute#url&quot;&gt;http://www.cbsnews.com&lt;/category&gt;
&lt;guid&gt;http://www.cbsnews.com&lt;/guid&gt;
&lt;/item&gt;
&lt;item&gt;
&lt;title&gt;Adam Curry: Daily Source Code&lt;/title&gt;
&lt;category domain=&quot;urn:rome.tree&quot;&gt;node.835791399&lt;/category&gt;
&lt;/item&gt;
&lt;item&gt;
&lt;title&gt;#374 Daily Source Code for Tuesday April 25th 2006&lt;/title&gt;
&lt;link&gt;http://radio.weblogs.com/0001014/2006/04/26.html#a7304&lt;/link&gt;
&lt;category domain=&quot;urn:rome.tree&quot;&gt;node.222050897&lt;/category&gt;
&lt;category domain=&quot;urn:rome.tree&quot;&gt;parent.835791399&lt;/category&gt;
&lt;category domain=&quot;urn:rome.attribute#url&quot;&gt;http://radio.weblogs.com/0001014/2006/04/26.html#a7304&lt;/category&gt;
&lt;guid&gt;http://radio.weblogs.com/0001014/2006/04/26.html#a7304&lt;/guid&gt;
&lt;/item&gt;
&lt;item&gt;
&lt;title&gt;#373 Daily Source Code for Monday April 24th 2006&lt;/title&gt;
&lt;link&gt;http://radio.weblogs.com/0001014/2006/04/24.html#a7303&lt;/link&gt;
&lt;category domain=&quot;urn:rome.tree&quot;&gt;node.2088220478&lt;/category&gt;
&lt;category domain=&quot;urn:rome.tree&quot;&gt;parent.835791399&lt;/category&gt;
&lt;category domain=&quot;urn:rome.attribute#url&quot;&gt;http://radio.weblogs.com/0001014/2006/04/24.html#a7303&lt;/category&gt;
&lt;guid&gt;http://radio.weblogs.com/0001014/2006/04/24.html#a7303&lt;/guid&gt;
&lt;/item&gt;</pre></div>
<p>Nodes get categories with the &quot;urn:rome.tree&quot; URI that is used to maintain the tree structure.</p>
<p>The other thing you will notice is the &quot;urn:rome.attribute#url&quot;. Since OPML allows you to add arbitrary attributes to each outline element, these are used to preserve these values.</p></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110814" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Preserving WireFeeds</title>
<link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="index.html" id="bannerLeft">
<img src="images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -92,8 +104,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="project-info.html" title="Project Information">
@ -160,7 +207,7 @@ feedFetcher.setPreserveWireFeed(true);
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -170,4 +217,4 @@ feedFetcher.setPreserveWireFeed(true);
</div>
</footer>
</body>
</html>
</html>

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-04-18
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="sbasegmez" />
<meta name="Date-Creation-yyyymmdd" content="20130314" />
<meta name="Date-Revision-yyyymmdd" content="20140418" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Products or sites powered by ROME</title>
<link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@ -23,12 +23,24 @@
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="http://github.com/rometools/" id="bannerLeft">
<a href="index.html" id="bannerLeft">
<img src="images/romelogo.png" alt="ROME"/>
</a>
</div>
@ -43,8 +55,8 @@
<li id="publishDate" class="pull-right">Last Published: 2014-04-18</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.5.0-SNAPSHOT</li>
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
@ -92,8 +104,43 @@
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="project-info.html" title="Project Information">
@ -206,7 +253,7 @@
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2014.
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
@ -216,4 +263,4 @@
</div>
</footer>
</body>
</html>
</html>

View file

@ -0,0 +1,202 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - ROME Propono Version 0.4</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME Propono Version 0.4<a name="ROME_Propono_Version_0.4"></a></h2>
<p>This is the first release of the <a href="./index.html">Rome Propono</a> publishing library. It's a beta release and will be followed closely by Propono 0.5.</p>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-propono-0.4-src.zip">rome-propono-0.4-src.zip</a></li>
<li><a href="./rome-propono-0.4.tar.gz">rome-propono-0.4.tar.gz</a></li>
<li><a href="./rome-propono-0.4.zip">rome-propono-0.4.zip</a></li>
<li><a href="./rome-propono-0.4-src.tar.gz">rome-propono-0.4-src.tar.gz</a></li></ul></div>
<div class="section">
<h3>API Docs<a name="API_Docs"></a></h3>
<ul>
<li><a class="externalLink" href="https://rome.dev.java.net/apidocs/subprojects/propono/0.4/overview-summary.html">Propono 0.4 API Docs</a></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,207 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - ROME Propono Version 0.5</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME Propono Version 0.5<a name="ROME_Propono_Version_0.5"></a></h2>
<p>This is the second release of the <a href="./index.html">Rome Propono</a> publishing library. It's a bug fix release follow-on to 0.4. Here are the changes:</p>
<ul>
<li>Fixes in Blog Client constructors</li>
<li>AtomServlet uses application/atomsvc+xml for the Service Document</li>
<li>Fixed issue #66: don't expect entry to be returned from update</li>
<li>Made example builds more configurable</li></ul>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-propono-0.5-src.zip">rome-propono-0.5-src.zip</a></li>
<li><a href="./rome-propono-0.5.tar.gz">rome-propono-0.5.tar.gz</a></li>
<li><a href="./rome-propono-0.5.zip">rome-propono-0.5.zip</a></li>
<li><a href="./rome-propono-0.5-src.tar.gz">rome-propono-0.5-src.tar.gz</a></li></ul></div>
<div class="section">
<h3>API Docs<a name="API_Docs"></a></h3>
<ul>
<li><a class="externalLink" href="https://rome.dev.java.net/apidocs/subprojects/propono/0.5/overview-summary.html">Propono 0.5 API Docs</a></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,236 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - ROME Propono Version 0.6</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME Propono Version 0.6<a name="ROME_Propono_Version_0.6"></a></h2>
<p>September 30, 2007</p>
<p>This is the third release of the <a href="./index.html">Rome Propono</a> publishing library. It includes major changes to add support for the final Atom Publishing Protocol specification relative URIs and out-of-line categories. It's an an interim release it includes a pre-release version of ROME 0.9.1-dev. A new version will follow as soon as ROME 0.9.1 (or 1.0) has been finalized.</p>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-propono-0.6-src.zip">rome-propono-0.6-src.zip</a></li>
<li><a href="./rome-propono-0.6.tar.gz">rome-propono-0.6.tar.gz</a></li>
<li><a href="./rome-propono-0.6.zip">rome-propono-0.6.zip</a></li>
<li><a href="./rome-propono-0.6-src.tar.gz">rome-propono-0.6-src.tar.gz</a></li></ul></div>
<div class="section">
<h3>API Docs<a name="API_Docs"></a></h3>
<ul>
<li><a class="externalLink" href="https://rome.dev.java.net/apidocs/subprojects/propono/0.6/overview-summary.html">Propono 0.6 API Docs</a></li></ul></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<ul>
<li>Updated for APP final (draft #17) w/new APP URI &quot;http://www.w3.org/2007/app&quot;</li>
<li>Tested file-based server against Tim Bray's Ape (from CVS September 30, 2007).</li>
<li>Now includes pre-release of ROME 0.9.1 with key Atom parse fixes.</li>
<li>Changed arguements in Atom server's AtomHandler interface to accept AtomRequest objects instead of String[] pathinfo arrays.</li>
<li>Added support for relative URIs in the Service Document
<ul>
<li>Fixes <a class="externalLink" href="http://java.net/jira/browse/ROME-67">http://java.net/jira/browse/ROME-67</a></li>
<li>Added Collection.getHrefResolved()</li>
<li>Added Categories.getHrefResolved()</li></ul></li>
<li>Added new options to the file-based server's propono.properties file so you can turn on/off relative URIs and inline categories.
<ul>
<li>propono.atomserver.filebased.relativeURIs=true</li>
<li>propono.atomserver.filebased.inlineCategories=true</li></ul></li>
<li>Added support for out-of-line categories in Atom client classes
<ul>
<li>Added new Categories.href property</li>
<li>New ClientCategories classes can fetch remote categories from href URI</li>
<li>Fixes <a class="externalLink" href="http://java.net/jira/browse/ROME-68">http://java.net/jira/browse/ROME-68</a></li></ul></li>
<li>Added support for out-of-line categories in Atom server classes
<ul>
<li>New AtomHandler.getCategoriesDocument(String[] pathInfo) method</li>
<li>New AtomHandler.isCategoriesDocumentURI(String[] pathInfo) method</li></ul></li>
<li>Renamed Introspection to Service Document
<ul>
<li>AtomHandler.isIntrospectionURI() -&gt; AtomHandler.isSerivceDocumentURI()</li>
<li>AtomHandler.getIntrospection() -&gt; AtomHandler.getServiceDocument()</li>
<li>Added String[] pathInfo argument to getServiceDocument()</li></ul></li>
<li>Renamed PubControlModule to AppModule becuase it also supports app:edited
<ul>
<li>Added rome.properties file to configure AppModule</li></ul></li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,209 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - ROME Propono Version 1.0</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li>
<a href="../Propono/index.html" title="Propono">
<i class="none"></i>
Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME Propono Version 1.0<a name="ROME_Propono_Version_1.0"></a></h2>
<p>April 2009</p>
<p>ROME Propono 1.0 is coming soon. If you'd like to help out, you can try 1.0 RC1 and provide feedback to us on the ROME dev mail list.</p>
<div class="section">
<h3>Downloads<a name="Downloads"></a></h3>
<ul>
<li><a href="./rome-propono-1.0RC1-src.zip">rome-propono-1.0RC1-src.zip</a></li>
<li><a href="./rome-propono-1.0RC1.tar.gz">rome-propono-1.0RC1.tar.gz</a></li>
<li><a href="./rome-propono-1.0RC1.zip">rome-propono-1.0RC1.zip</a></li>
<li><a href="./rome-propono-1.0RC1-src.tar.gz">rome-propono-1.0RC1-src.tar.gz</a></li></ul></div>
<div class="section">
<h3>API Docs<a name="API_Docs"></a></h3>
<ul>
<li><a class="externalLink" href="https://rome.dev.java.net/apidocs/subprojects/propono/1.0/overview-summary.html">Propono 1.0 API Docs</a></li></ul></div>
<div class="section">
<h3>Changes<a name="Changes"></a></h3>
<ul>
<li>Updated to ROME 1.0</li>
<li>Added support for pluggable authentication in the AtomPub client</li>
<li>Added support for OAuth in the AtomPub client, see Javadocs for details</li></ul></div></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

200
Propono/index.html Normal file
View file

@ -0,0 +1,200 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-04-24
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="mkurz" />
<meta name="Date-Creation-yyyymmdd" content="20110816" />
<meta name="Date-Revision-yyyymmdd" content="20160424" />
<meta http-equiv="Content-Language" content="en" />
<title>ROME - Home</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
</head>
<body class="topBarDisabled">
<a href="http://github.com/rometools/rome">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<a href="../index.html" id="bannerLeft">
<img src="../images/romelogo.png" alt="ROME"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right">Last Published: 2016-04-24</li> <li class="divider pull-right">|</li>
<li id="projectVersion" class="pull-right">Version: 1.7.0-SNAPSHOT</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Rome</li>
<li>
<a href="../index.html" title="Overview">
<i class="none"></i>
Overview</a>
</li>
<li>
<a href="../HowRomeWorks/index.html" title="How Rome Works">
<i class="icon-chevron-right"></i>
How Rome Works</a>
</li>
<li>
<a href="../RssAndAtOMUtilitiEsROMEV0.5AndAboveTutorialsAndArticles/index.html" title="Tutorials And Articles">
<i class="none"></i>
Tutorials And Articles</a>
</li>
<li>
<a href="../ROMEReleases/index.html" title="Releases">
<i class="icon-chevron-right"></i>
Releases</a>
</li>
<li>
<a href="../ROMEDevelopmentProposals/index.html" title="ROME Development Proposals">
<i class="none"></i>
ROME Development Proposals</a>
</li>
<li>
<a href="../Modules/index.html" title="Modules">
<i class="icon-chevron-right"></i>
Modules</a>
</li>
<li>
<a href="../Fetcher/index.html" title="Fetcher">
<i class="icon-chevron-right"></i>
Fetcher</a>
</li>
<li>
<a href="../Opml/index.html" title="OPML">
<i class="none"></i>
OPML</a>
</li>
<li class="active">
<a href="#"><i class="none"></i>Propono</a>
</li>
<li>
<a href="../Certiorem/index.html" title="Certiorem">
<i class="icon-chevron-right"></i>
Certiorem</a>
</li>
<li class="nav-header">Project Documentation</li>
<li>
<a href="../project-info.html" title="Project Information">
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
</ul>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>ROME Propono<a name="ROME_Propono"></a></h2>
<p>The ROME Propono subproject is a Java class library that supports publishing protocols, specifically the Atom Publishing Protocol and the legacy MetaWeblog API. Propono includes an Atom client library, an Atom server framework and a Blog client that supports both Atom protocol and the MetaWeblog API.</p></div>
<div class="section">
<h2>Documentation<a name="Documentation"></a></h2>
<ul>
<li>See the <a href="./apidocs/overview-summary.html">Propono API docs</a> for an explanation of Propono usage, diagrams and code examples.</li></ul></div>
<div class="section">
<h2>Releases<a name="Releases"></a></h2>
<ul>
<li><a href="./ROMEProponoVersion1.0.html">ROME Propono Version 1.0 (propono)</a></li>
<li><a href="./ROMEProponoVersion0.6.html">ROME Propono Version 0.6 (propono)</a></li>
<li><a href="./ROMEProponoVersion0.5.html">ROME Propono Version 0.5 (propono)</a></li>
<li><a href="./ROMEProponoVersion0.4.html">ROME Propono Version 0.4 (propono)</a></li></ul></div>
</div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span12">Copyright &copy; 2016.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more