Atom Feeds

Wikipedia : Atom (web standard)

W3C : Introduction to Atom

XSL file – “case-study-feeds/atom.xsl”
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:atom="http://www.w3.org/2005/Atom" version="1.0" exclude-result-prefixes="atom">

    <xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:include href="../../plugins/tenandtwo-xslt-processor/xsl/date.xsl"/>

    <!-- main -->
    <xsl:template match="/">
        <xsl:apply-templates select="atom:feed"/>
    </xsl:template>

    <!-- feed -->
    <xsl:template match="atom:feed">
        <!-- header -->
        <h3><xsl:value-of select="atom:title"/></h3>
        <h5><xsl:value-of select="atom:subtitle"/></h5>

        <!-- body -->
        <xsl:apply-templates select="atom:entry"/>

        <!-- footer -->
        <hr size="1"/>
        <div>
            <xsl:text>Updated : </xsl:text>
            <time>
                <xsl:attribute name="datetime"><xsl:value-of select="atom:updated"/></xsl:attribute>
                <xsl:call-template name="date-format">
                    <xsl:with-param name="value" select="atom:updated"/>
                    <xsl:with-param name="format" select="'Y-m-d h:i A'"/>
                </xsl:call-template>
            </time>

            <xsl:for-each select="atom:author/*">  <!-- name, email, uri -->
                <br/>
                <xsl:text>Author : </xsl:text>
                <xsl:value-of select="text()"/>
            </xsl:for-each>

            <xsl:if test="string-length(atom:link[@rel='alternate']/@href) &gt; 0">
                <br/>
                <a target="_blank">
                    <xsl:attribute name="href"><xsl:value-of select="atom:link[@rel='alternate']/@href"/></xsl:attribute>
                    <xsl:text>Visit Website →</xsl:text>
                </a>
            </xsl:if>
        </div>
    </xsl:template>

    <!-- entry -->
    <xsl:template match="atom:entry">
        <hr size="1"/>
        <h5>
            <time>
                <xsl:attribute name="datetime"><xsl:value-of select="atom:updated"/></xsl:attribute>
                <xsl:call-template name="date-format">
                    <xsl:with-param name="value" select="atom:updated"/>
                    <xsl:with-param name="format" select="'Y-m-d h:i A'"/>
                </xsl:call-template>
            </time>
        </h5>
        <h4>
            <a target="_blank">
                <xsl:attribute name="href">
                    <xsl:choose>
                        <xsl:when test="string-length(atom:link[@rel='alternate']/@href) &gt; 0">
                            <xsl:value-of select="atom:link[@rel='alternate']/@href"/>
                        </xsl:when>
                        <xsl:when test="string-length(atom:link/@href) &gt; 0">
                            <xsl:value-of select="atom:link/@href"/>
                        </xsl:when>
                        <xsl:otherwise><xsl:value-of select="atom:id"/></xsl:otherwise>
                    </xsl:choose>
                </xsl:attribute>
                <xsl:value-of disable-output-escaping="yes" select="atom:title"/>
            </a>
        </h4>
        <div>
            <xsl:choose>
                <xsl:when test="string-length(.//atom:content) &gt; 0">
                    <xsl:value-of disable-output-escaping="yes" select=".//atom:content"/>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:value-of disable-output-escaping="yes" select=".//atom:summary"/>
                </xsl:otherwise>
            </xsl:choose>
        </div>
    </xsl:template>

</xsl:stylesheet><!-- end atom.xsl -->

National Weather Service Alerts for OR

[xslt_transform_xml xsl="case-study-feeds/atom.xsl" xml="https://alerts.weather.gov/cap/or.php?x=0" /]
Output

Current watches, warnings, and advisories for Oregon


Flood Warning issued April 3 at 1:26PM PDT by NWS Boise ID

…The Flood Warning continues for the following rivers in Oregon… Silvies River Near Burns affecting Harney County. .Flooding will continue along the Silvies River near Burns Oregon. River levels will gradually decline, dropping below flood stage today. However, flooding impacts will likely extend into the weekend and more rises are possible next week due to additional rainfall and warmer temperatures over the weekend increasing snowmelt. For the Silvies River…including Burns…flooding is forecast to continue. * WHAT…Flooding is occurring and flooding is forecast. * WHERE…Silvies River near Burns. * WHEN…Until further notice. * IMPACTS…Extensive flooding is occurring and affecting roads and homes. * ADDITIONAL DETAILS… – At 1:00 PM PDT Thursday the stage was 11.5 feet. – Bankfull stage is 10.5 feet. – Forecast…The Silvies River is expected to fall below flood stage on Thursday. However, it will remain elevated through the weekend with forecast rises back above flood stage next week with additional rainfall expected Monday. – Flood stage is 12.0 feet. – https://www.weather.gov/safety/flood

Frost Advisory issued April 3 at 12:28PM PDT until April 4 at 9:00AM PDT by NWS Portland OR

* WHAT…Temperatures as low as 32 will result in frost formation. * WHERE…Foothills of the Northern and Central Oregon Cascades, North and Central Coast Range Valleys of Oregon, and South Washington Cascade Foothills. * WHEN…From midnight tonight to 9 AM PDT Friday. * IMPACTS…Frost could harm sensitive outdoor vegetation. Sensitive outdoor plants may be killed if left uncovered.

Frost Advisory issued April 3 at 12:28PM PDT until April 4 at 9:00AM PDT by NWS Portland OR

* WHAT…Temperatures as low as 33 will result in frost formation. * WHERE…Central and Southern Willamette Valley, Tualatin Valley, Outer Southeast Portland Metro, Upper Hood River Valley, and North Clark County Lowlands. * WHEN…From midnight tonight to 9 AM PDT Friday. * IMPACTS…Frost could harm sensitive outdoor vegetation. Sensitive outdoor plants may be killed if left uncovered.

Updated :
Author : w-nws.webmaster@noaa.gov