Publishing a News Feed

THESE PAGES ARE STILL UNDER CONSTRUCTION AND DO NOT NECESSARELY REFLECT THE CURRENT VERSION OF TÓPICO

RSS is a family of xml file formats for web syndication used by news websites and weblogs. They are used to provide items containing short descriptions of web content together with a link to the full version of the content.

Although you can choose many versions of RSS to publish your news feed, it is strongly suggested that you select the Atom format.

Editing news feed publishing properties

Publishing a news feed

Learn how to publish a news feed in this tutorial.

THIS TOPIC IS A WORK IN PROGRESS

News feed template

To get complete control over the news feed image link placement in your publication, you can move the makup found in the template. The part you should move is:

XSLT
			<!-- insert feed link -->
			<xsl:if test="$feed_root">
			<xsl:call-template name="feed_link"/>
			</xsl:if>
		

The above makup checks if the rss file is being published and if it is, it call the template below:

XSLT
			<!-- feed template -->
			<xsl:template name="feed_link">
			<div class="feed_link">
			<a href="{$feed_root}.xml">
			<img src="images/{$feed_image}" alt="news feed icon"/>
			</a>
			</div>
			</xsl:template>
		

This template uses two parameters: $feed_root and $feed_image that are sent to the XSL processor by Tópico

Navigating news feed entries

To use the navigation buttons nav back buttonnav back button within the news feed items only, select Feed from the drop down list beside the navigation buttons in the toolbar. This selection also applies to the navigation button that are found at the top right of the editor.

To restore the normal behavior of the navigation buttons, which is to browse through all topics, select All from the same drop down list.

THESE PAGES ARE STILL UNDER CONSTRUCTION AND DO NOT NECESSARELY REFLECT THE CURRENT VERSION OF TÓPICO

122 / 194