| @@ -709,10 +709,13 @@ sub WeatherIconIMGTag($) { | |||||||
| ##################################### | ##################################### | ||||||
|  |  | ||||||
| sub WeatherAsHtmlV($;$$) { | sub WeatherAsHtmlV($;$$) { | ||||||
|     my ( $d, $items, $f ) = @_; |     my ( $d, $f, $items ) = @_; | ||||||
|  |  | ||||||
|     $d     = "<none>" if ( !$d ); |     $f =~ tr/dh/./cd; | ||||||
|  |     $f = "h" if ( !$f || length($f) > 1); | ||||||
|  |     $items =~ tr/0-9/./cd; | ||||||
|     $items = 6   if ( !$items ); |     $items = 6   if ( !$items ); | ||||||
|  |      | ||||||
|     return "$d is not a Weather instance<br>" |     return "$d is not a Weather instance<br>" | ||||||
|       if ( !$defs{$d} || $defs{$d}->{TYPE} ne "Weather" ); |       if ( !$defs{$d} || $defs{$d}->{TYPE} ne "Weather" ); | ||||||
|  |  | ||||||
| @@ -749,32 +752,53 @@ sub WeatherAsHtmlV($;$$) { | |||||||
|     ); |     ); | ||||||
|  |  | ||||||
|     for ( my $i = 1 ; $i < $items ; $i++ ) { |     for ( my $i = 1 ; $i < $items ; $i++ ) { | ||||||
|  |         if(defined($h->{READINGS}->{"${fc}${i}_low_c"}) and $h->{READINGS}->{"${fc}${i}_low_c"}){ | ||||||
|             $ret .= sprintf( |             $ret .= sprintf( | ||||||
| '<tr><td class="weatherIcon" width=%d>%s</td><td class="weatherValue"><span class="weatherDay">%s: %s</span><br><span class="weatherMin">min %s°C</span> <span class="weatherMax">max %s°C</span></td></tr>', |     '<tr><td class="weatherIcon" width=%d>%s</td><td class="weatherValue"><span class="weatherDay">%s: %s</span><br><span class="weatherMin">min %s°C</span> <span class="weatherMax">max %s°C</span><br>%s</td></tr>', | ||||||
|  |                 $width, | ||||||
|  |                 WeatherIconIMGTag( ReadingsVal( $d, "${fc}${i}_icon", "" ) ), | ||||||
|  |                 ReadingsVal( $d, "${fc}${i}_day_of_week", "" ),<br>%s | ||||||
|  |                 ReadingsVal( $d, "${fc}${i}_condition",   "" ), | ||||||
|  |                 ReadingsVal( $d, "${fc}${i}_low_c",       " - " ), | ||||||
|  |                 ReadingsVal( $d, "${fc}${i}_high_c",      " - " ) | ||||||
|  |                 ReadingsVal( $d, "${fc}${i}_wind_condition",      " - " ) | ||||||
|  |             ); | ||||||
|  |         }else{ | ||||||
|  |             $ret .= sprintf( | ||||||
|  |       '<tr><td class="weatherIcon" width=%d>%s</td><td class="weatherValue"><span class="weatherDay">%s: %s</span><br><span class="weatherTemp"> %s°C</span><br>%s</td></tr>', | ||||||
|                 $width, |                 $width, | ||||||
|                 WeatherIconIMGTag( ReadingsVal( $d, "${fc}${i}_icon", "" ) ), |                 WeatherIconIMGTag( ReadingsVal( $d, "${fc}${i}_icon", "" ) ), | ||||||
|                 ReadingsVal( $d, "${fc}${i}_day_of_week", "" ), |                 ReadingsVal( $d, "${fc}${i}_day_of_week", "" ), | ||||||
|                 ReadingsVal( $d, "${fc}${i}_condition",   "" ), |                 ReadingsVal( $d, "${fc}${i}_condition",   "" ), | ||||||
|             ReadingsVal( $d, "${fc}${i}_low_c",       " - " ), |                 ReadingsVal( $d, "${fc}${i}_temperature",       " - " ) | ||||||
|             ReadingsVal( $d, "${fc}${i}_high_c",      " - " ) |                 ReadingsVal( $d, "${fc}${i}_wind_condition",      " - " ) | ||||||
|             ); |             ); | ||||||
|         } |         } | ||||||
|  |     } | ||||||
|  |  | ||||||
|     $ret .= "</table>"; |     $ret .= "</table>"; | ||||||
|     return $ret; |     return $ret; | ||||||
| } | } | ||||||
|  |  | ||||||
| sub WeatherAsHtml($;$$) { | sub WeatherAsHtml($;$$) { | ||||||
|     my ( $d, $items, $i ) = @_; |     my ( $d, $f, $items ) = @_; | ||||||
|  |  | ||||||
|     WeatherAsHtmlV( $d, $items, $i ); |     $f =~ tr/dh/./cd; | ||||||
|  |     $f = "h" if ( !$f || length($f) > 1); | ||||||
|  |     $items =~ tr/0-9/./cd; | ||||||
|  |     $items = 6   if ( !$items ); | ||||||
|  |  | ||||||
|  |     WeatherAsHtmlV( $d, $f, $items ); | ||||||
| } | } | ||||||
|  |  | ||||||
| sub WeatherAsHtmlH($;$$) { | sub WeatherAsHtmlH($;$$) { | ||||||
|     my ( $d, $items, $f ) = @_; |     my ( $d, $f, $items ) = @_; | ||||||
|  |  | ||||||
|     $d     = "<none>" if ( !$d ); |     $f =~ tr/dh/./cd; | ||||||
|  |     $f = "h" if ( !$f || length($f) > 1); | ||||||
|  |     $items =~ tr/0-9/./cd; | ||||||
|     $items = 6   if ( !$items ); |     $items = 6   if ( !$items ); | ||||||
|  |      | ||||||
|     return "$d is not a Weather instance<br>" |     return "$d is not a Weather instance<br>" | ||||||
|       if ( !$defs{$d} || $defs{$d}->{TYPE} ne "Weather" ); |       if ( !$defs{$d} || $defs{$d}->{TYPE} ne "Weather" ); | ||||||
|  |  | ||||||
| @@ -860,13 +884,18 @@ sub WeatherAsHtmlH($;$$) { | |||||||
| } | } | ||||||
|  |  | ||||||
| sub WeatherAsHtmlD($;$$) { | sub WeatherAsHtmlD($;$$) { | ||||||
|     my ( $d, $items, $i ) = @_; |     my ( $d, $f, $items ) = @_; | ||||||
|  |  | ||||||
|  |     $f =~ tr/dh/./cd; | ||||||
|  |     $f = "h" if ( !$f || length($f) > 1); | ||||||
|  |     $items =~ tr/0-9/./cd; | ||||||
|  |     $items = 6   if ( !$items ); | ||||||
|  |  | ||||||
|     if ($FW_ss) { |     if ($FW_ss) { | ||||||
|         WeatherAsHtmlV( $d, $items, $i ); |         WeatherAsHtmlV( $d, $f , $items); | ||||||
|     } |     } | ||||||
|     else { |     else { | ||||||
|         WeatherAsHtmlH( $d, $items, $i ); |         WeatherAsHtmlH( $d, $f , $items); | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -967,7 +996,7 @@ sub WeatherAsHtmlD($;$$) { | |||||||
|     to limit the numer of icons to display.<br><br> |     to limit the numer of icons to display.<br><br> | ||||||
|     Example: |     Example: | ||||||
|     <pre> |     <pre> | ||||||
|       define MyWeatherWeblink weblink htmlCode { WeatherAsHtmlH("MyWeather",10,"h") } |       define MyWeatherWeblink weblink htmlCode { WeatherAsHtmlH("MyWeather","h",10) } | ||||||
|     </pre> |     </pre> | ||||||
|  |  | ||||||
|  |  | ||||||
| @@ -1140,7 +1169,7 @@ sub WeatherAsHtmlD($;$$) { | |||||||
|     Wird der dritte Parameter verwendet muss auch der zweite Parameter für die Anzahl der darzustellenden Icons gesetzt werden.<br><br> |     Wird der dritte Parameter verwendet muss auch der zweite Parameter für die Anzahl der darzustellenden Icons gesetzt werden.<br><br> | ||||||
|     Beispiel: |     Beispiel: | ||||||
|     <pre> |     <pre> | ||||||
|       define MyWeatherWeblink weblink htmlCode { WeatherAsHtmlH("MyWeather",10,"h") } |       define MyWeatherWeblink weblink htmlCode { WeatherAsHtmlH("MyWeather","h",10) } | ||||||
|     </pre> |     </pre> | ||||||
|  |  | ||||||
|   </ul> |   </ul> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user