Thank you very much for the reply.
I created the directory SlimServer/server/Plugins and unzipped SuperDateTime into Plugins. All of the SuperDateTime subdirectories and their contents look OK, but SlimServer doesn't recognize the plugin.
Results 671 to 680 of 2685
-
2007-08-13, 11:39 #671Member
- Join Date
- Aug 2007
- Posts
- 31
-
2007-08-13, 19:02 #672
-
2007-08-13, 23:11 #673
Announce: SuperDateTime - CurrentDate/Temperature and/or Baseball Screensaver
> I know the current beta build worked with the 7.0 nightly dated 7/16.
> 7.0 is a moving target so something probably changed recently that is
> preventing it from loading. When I have some time I'll fetch the
> latest nightly build and see what I can determine.
Greg - there have been little to know changes in the plugin code. Do you
distribute a .par package with the plugin?
robbiex - sometimes SlimServer isn't recognizing new plugins reliably.
Please remove Caches/plugin-data.yaml and restart SlimServer. This often
does help.
--
Michael
-----------------------------------------------------------------
http://www.herger.net/SlimCD - your SlimServer on a CD
http://www.herger.net/slim - AlbumReview, Biography, MusicInfoSCR
-
2007-08-14, 10:27 #674Member
- Join Date
- Aug 2007
- Posts
- 31
Hi Greg & Michael,
Thank you very much for your assistance.
After deleting plugin-data.yaml and re-starting SlimServer, the SuperDateTime plugin is correctly recognized.
Robbie
-
2007-08-22, 00:27 #675Junior Member
- Join Date
- Aug 2007
- Posts
- 3
SuperDateTime v5.0.10 stopped updating temperature and humidity
Hello,
I've used the SuperDateTime plugin on my SB3 for some week now without any problems. Since yesterday the temperature (%T) and the humidity (%h) are not updated anymore.
Is it possible that the website has changed its format and therefore SuperDateTime is unable to read the values properly?
Thanks,
Juergen
-
2007-08-22, 02:17 #676Junior Member
- Join Date
- Dec 2005
- Posts
- 13
I'm seeing the same thing as well.
-
2007-08-22, 10:39 #677Senior Member
- Join Date
- Apr 2005
- Posts
- 180
Yup. Same here. My weather is for London, UK if that helps.
'Low' temp and 'Prec %' are still displaying OK.
Chippy
-
2007-08-22, 10:57 #678Kim B. HeinoGuest
Announce: SuperDateTime -Current Date/Temperature and/or Baseball Screensaver
> Yup. Same here. My weather is for London, UK if that helps.
Same here too. Looks like weather.com has changed their html code. Until
Greg updates his plugin, you can use this small patch to parse at least
temperature, feels like, humidity and wind data.
--- Plugin.orig 2007-08-22 19:52:25.000000000 +0300
+++ Plugin.pm 2007-08-22 20:26:29.000000000 +0300
@@ -2501,17 +2501,18 @@
@btmLinePreSpace = (); #Wipe old bottom line pre spaces (although
they probably wont change)
for (@ary) {
- if (/obsTempTextA>(-*\d+)\s*°\;F.+Feels
Like<BR>\s*(-*\d+)\s*\&d/) {
+ if (/obsTempTextA">(-*\d+)\s*°\;F/) {
$temperatureF = $1;
- $feelslikeF = $2;
-
$temperatureC = FtoC($temperatureF);
- $feelslikeC = FtoC($feelslikeF);
}
- elsif (/<TD VALIGN="top" CLASS="obsTextA">(\d+%)<\/td>/) {
+ elsif (/Feels Like<br.>(-*\d+)\s*°\;F/) {
+ $feelslikeF = $1;
+ $feelslikeC = FtoC($feelslikeF);
+ }
+ elsif (/Humidity.*crowval">(\d+%)<\/div>/) {
$humidity = $1;
}
- elsif (/CLASS="obsTextA">From (.+) at (\d+) mph/) {
+ elsif (/class="crowval">From (.+) at (\d+) mph/) {
if ($windspeedUnit == 0) { #miles/hr
$windspeed = $1 . $2;
}
-
2007-08-22, 17:29 #679
It seems like weather.com has changed something on their site that is affecting the display of this plugin. After working well for some time, and with no changes in the version of Slimserver (6.5.2), the temperatures have suddenly disappeared for Montreal, Canada. The forecast itself seems intact however.
Any solution?
-
2007-08-23, 00:58 #680

Reply With Quote

