MarkB wrote: Modify your template files to add any of the new features you want to incorporate.
This is pretty much the way I saw it working. You're either using the supplied pages as-is, or you're not. If you're not and you see anything in any updated pages that you want to use, feel free to use it. I don't propose to start documenting in detail any changes, because the pages are there for you to see and the changes are obvious. If I do any 'invisible' changes - bug fixes or whatever, I'll try to remember to mention them.
Basically, the changes are:
1. The section between the location and the "welcome..." bit of all of the files has changed. In the indexT.htm file, it has become:
Code: Select all
<h2 style="text-align: left; text-transform: none;"> Latitude <#latitude> Longitude <#longitude> Elevation <#altitude></h2>
<!-- NEW Almanac -->
<table width="100%" border="0" cellpadding="10">
<tbody><tr>
<td class="labels">Dawn:</td>
<td class="site_data" style="text-align: left;"><#dawn></td>
<td class="labels">Sunrise:</td>
<td class="site_data" style="text-align: left;"><#sunrise></td>
<td class="labels">Moonrise:</td>
<td class="site_data" style="text-align: left;"><#moonrise></td>
<td rowspan="3"><img src="images/moon.bmp" alt="Moon" width="64" align="left" border="0" height="64" hspace="10"></td>
</tr>
<tr>
<td class="labels">Dusk:</td>
<td class="site_data" style="text-align: left;"><#dusk></td>
<td class="labels">Sunset: </td>
<td class="site_data" style="text-align: left;"><#sunset></td>
<td class="labels">Moonset:</td>
<td class="site_data" style="text-align: left;"><#moonset></td>
</tr>
<tr>
<td class="labels">Daylight:</td>
<td class="site_data" style="text-align: left;"><#daylightlength></td>
<td class="labels">Day length:</td>
<td class="site_data" style="text-align: left;"><#daylength></td>
<td class="labels">Moon Phase:</td>
<td class="site_data" style="text-align: left;"><#moonphase></td>
</tr>
</tbody></table>
<!-- END Almanac -->
In all of the other files, it is simply:
Code: Select all
<h2 style="text-align: left; text-transform: none;"> Latitude <#latitude> Longitude <#longitude> Elevation <#altitude></h2>
2. "Rainfall last hour" has been added to the rainfall section of the indexT.htm file:
Code: Select all
<tr class="td_rainfall_data">
<td>Rainfall Last Hour</td>
<td><#rhour> <#rainunit></td>
<td> </td>
<td> </td>
</tr>
3. The footer on each file has become:
Code: Select all
<p class="credits"><br>
Page updated <#update><br>
powered by
<a href="http://sandaysoft.com/products/cumulus" target="_blank">Cumulus</a> v<#version> (<#build>)
</p>
The only change to weatherstyle.css is because the pages are now using the <h2> tags. This was set to a green colour from the old-style pages from years ago. I've changed it to a blue colour to fit better with the latest colour scheme:
color: #555555;
background-color: #c0cad3;
I've just noticed that there are two h2 definitions in the style sheet; I'm not actually sure what the effect of this is, it probably ought to be fixed. The above change is to the
second one.
Steve