Add RSS feeds to your WebCT course section
For more information on what an RSS feed is and it’s role in education, download the Seven Things you Should Know About RSS], or go to http://www.weblogg-ed.com/ and click on the RSS tab near the top to download Will Richardsons introduction to RSS. For quick browsing, go to the ”Finding and Adding Feeds section”
How to add an RSS Feed Reader to your WebCT course section.
- Log in as a Section Designer and go to the section.
- From Course Content Home, click Add Content Link and choose RSS Feed Reader from the dropdown menu.
- Click Create RSS Feed Reader.
- Add the RSS URL in field #3
- Click save and preview in the Student View
The settings
The easiest way to add an RSS feed is to use the default options available. Just remember to add your RSS URL in field #3. For more information on how to find an RSS URL, please consult the resources listed above.
Advanced setting changes
If you are an advanced user of RSS feeds, there are other settings that you can change for your own needs.
The proxy tool settings consist of the following:
- Title: The proxy tool title that appears in the Course Content Home.
- Operational Timeout: Leave this set to the default (10).
- RSS/RDF URL: This must be set to the URL of the RSS feed. (e.g. http://feeds.macworld.com/macworld/all, http://rss.cnn.com/services/podcasting/newscast/rss.xml))
- XSL Transform Can be set to:
- Default RSS: use the built-in RSS transform to convert the RSS to HTML. If this is selected, the XSL URL setting is ignored.
- Default RDF: use the built-in RDF transform to convert the RSS to HTML. If this is selected, the XSL URL setting is ignored.
- Custom: use a custom transform to convert the RSS to HTML. If this is selected, you must also set the XSL URL setting.
- XSL URL: If XSL Transform is set to Custom, this setting must contain the URL of an XSL transform capable of converting the RSS feed to HTML.
- CSS URL: Can be used to specify a custom cascading stylesheet (CSS) file. If empty, the built-in CSS is used.
- Window title: The text to display in the title bar of the popup window (when applicable).
- Title contains HTML: Set this to true if item titles in the RSS feed contain HTML (otherwise the HTML code is displayed).
- Description contains HTML: Set this to true if item descriptions in the RSS feed contain HTML (otherwise the HTML code is displayed).
- Custom parameter x: These five settings can be used to set parameters for the XSLT engine. This is only useful if you have a custom transform.-The format of each Custom parameter setting is:
<parameter_name>=<parameter_value>
-So if you want to pass the current username and the learning context name to the transform, you would enter
Custom parameter 1: username=$USER$.name
Custom parameter 2: lcname=$LC$.name
-In your XSL transform, you’d have something like this:
<xsl:param name=”username”/>
<xsl:param name=”lcname”/>
…
<xsl:template match=”channel”>
<p class=”channeldescription”>Hello, <xsl:value-of select=”$username”/> from <xsl:value-of select=”$lcname”/>!</p>
… - Open in new window