No release in over 3 years
Low commit activity in last 3 years
Simple support to render RSS content in Concerto 2.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 3.0
>= 0
~> 0.9
 Project Readme

Concerto 2 Simple RSS Plugin

This plugin provides support to pull dynamic content from RSS and other XML feeds.

To install this plugin, go to the Plugin management page in concerto, select RubyGems as the source and "concerto_simple_rss" as the gem name.

Concerto 2 Simple RSS is licensed under the Apache License, Version 2.0.

Example

Url: https://w1.weather.gov/xml/current_obs/PASX.xml

Display Format: XSLT

Display Type: Ticker

Reverse Order of Items: NO

XSLT:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="text"/>
  <xsl:template match="/current_observation">
      <xsl:value-of select="./temperature_string"/>
      <xsl:value-of select="'. '"/>
      <xsl:value-of select="./weather"/> 
      <xsl:value-of select="'. '"/>
      <xsl:value-of select="./wind_string"/> 
      <xsl:value-of select="'. '"/>
  </xsl:template>
</xsl:stylesheet>