<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="[% install_dir %]/stylesheets/stylesheet.css"?>
<rss version="2.0">
	<channel>
		<title>[% ontology_name %]: New term feed</title>
		<link>[% ontology_url %]</link>
		<description>RSS feed of new terms added to the [% ontology_name %]</description>
		<language>en</language>
		<pubDate>[% full_date %]</pubDate>
		<lastBuildDate>[% full_date %]</lastBuildDate>
		<webMaster>[% webmaster %]</webMaster>
[%	FOREACH t IN f2_only.keys.sort;
%]		<item>
			<title>[% t %] ; [% f2_term_hash.$t.name.0 %]</title>
			<link>[% primary.url_prefix _ t _ primary.url_suffix %]</link>
			<description>
			<![CDATA[<p>[% f2_term_hash.$t.namespace.0 %]<br>
			[% f2_term_hash.$t.def.0 %]<br>
[%				## list of links to term in different browsers
				tlt = [];
				str = '';
				FOREACH l IN term_links.keys.sort;
					str = '<a href="' _ term_links.$l.url_prefix _ t _ term_links.$l.url_suffix _ '">' _ term_links.$l.text _ '</a>';
					tlt.push(str);
				END;
				IF tlt.size > 0;
					tlt.join("&nbsp;| ");
				END;
			%]</p>]]>
			</description>
			<pubDate>[% full_date %]</pubDate>
			<guid>[% primary.url_prefix _ t _ primary.url_suffix %]</guid>
		</item>
[%	END;
	old_data;
%]	</channel>
</rss>