<!--
  @author Ryan Flint
  @url http://screwedbydesign.com
  @description Shows current conditions and temperature.
  @usage Bookmark your local weather forecast at weather.com/weather/today/<location>
-->
<generator name="Weather.com" xmlns="http://www.mozilla.org/microsummaries/0.1" uri="http://screwedbydesign.com/mozilla/microsummaries/weathercom.xml">
	<template>
		<transform version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform">
			<output method="text"/>
			<template match="/">
				<variable name="temp" select="//div[@class='twc-animated-icon']/following-sibling::text()"/>
        <value-of select="normalize-space($temp)"/>
				<text>, </text>
				<value-of select="//div[@class='twc-forecast-temperature']/strong/text()"/>
			</template>
		</transform>
	</template>
	<pages>
		<include>http://www\.weather\.com/weather/today/*</include>
	</pages>
	<update interval="5"/>
</generator>

