Saturday 13 January 2007 6:40:50 pm
Artturi,
The RSS feed module works great. The documentation is at: http://ez.no/doc/ez_publish/technical_manual/3_8/reference/modules/rss I did create a custom class to receive the feed, and simple templates to display the data. <b>rss_full.tpl</b>
<h1>{$node.name}</h1>
{if $node.object.data_map.item_author.has_content}
by {attribute_view_gui attribute=$node.object.data_map.item_author}
<br />
{/if}
<em>Date:</em>{attribute_view_gui attribute=$node.object.data_map.item_pub_date}<br /><br />
{$node.object.data_map.item_description.content}
<br />
<br />
<strong><a href="{$node.object.data_map.item_link.content}" target="_blank">Click for full text</a></strong>
<hr />
<h3>Source</h3>
<a href="{attribute_view_gui attribute=$node.object.data_map.channel_link}" target="_blank">
{attribute_view_gui attribute=$node.object.data_map.channel_title}</a><br />
{attribute_view_gui attribute=$node.object.data_map.channel_description}
|