<!--
Author : Valacar
Date   : June 18th, 2008
Usage  : Go to http://www.simpleweather.com/xxxxx where xxxxxx is your postal code (like 90210), and hit ctrl-D to bookmark it and use the Name drop down box to change to the Live Title.
-->
<generator name='Local Temperature on simpleweather.com' xmlns='http://www.mozilla.org/microsummaries/0.1'>

	<template>
		<transform version='1.0' xmlns='http://www.w3.org/1999/XSL/Transform'>
			<output method='text'/>
			<template match='/'>
				<!-- Type of day (e.g. Sunny) -->
				<value-of select='normalize-space(string(//div[@id=&apos;divleft&apos;]/div[1]/table/tbody/tr[2]/td[1]/b[1]))'/>
				<text>, </text>
				<!-- Temperature -->
				<value-of select='normalize-space(string(//span[@id=&apos;currenttemp&apos;]))'/>
				<value-of select='normalize-space(string(//div[@id=&apos;topdeg&apos;]))'/>
				</template>
		</transform>
	</template>

	<pages>
		<include>^http://www\.simpleweather\.com/*</include>
	</pages>

	<!-- Update every 30 minutes -->
	<update interval='30'/>

</generator>