mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-19 06:36:04 +00:00
SVG: added hour to fixedrange as requested by fhainz
git-svn-id: https://svn.fhem.de/fhem/trunk@4951 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
696b92be9d
commit
759ef78def
@ -610,15 +610,17 @@ SVG_calcOffsets($$)
|
|||||||
if($defs{$wl}) {
|
if($defs{$wl}) {
|
||||||
$fr = AttrVal($wl, "fixedrange", undef);
|
$fr = AttrVal($wl, "fixedrange", undef);
|
||||||
if($fr) {
|
if($fr) {
|
||||||
if($fr =~ "^day" || $fr =~ "^week" || $fr =~ "^month" || $fr =~ "^year" ||
|
if($fr =~ "^hour" || $fr =~ "^day" || $fr =~ "^week" || $fr =~ "^month" ||
|
||||||
$fr =~ m/^\d+days$/ ) { #fixedrange with offset
|
$fr =~ "^year" || $fr =~ m/^\d+days$/ ) { #fixedrange with offset
|
||||||
$frx=$fr; #fixedrange with offset
|
$frx=$fr; #fixedrange with offset
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
my @range = split(" ", $fr);
|
my @range = split(" ", $fr);
|
||||||
my @t = localtime;
|
my @t = localtime;
|
||||||
$SVG_devs{$d}{from} = ResolveDateWildcards($range[0], @t);
|
$SVG_devs{$d}{from} = ResolveDateWildcards($range[0], @t);
|
||||||
$SVG_devs{$d}{to} = ResolveDateWildcards($range[1], @t);
|
$SVG_devs{$d}{to} = ResolveDateWildcards($range[1], @t);
|
||||||
return;
|
return;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -653,7 +655,6 @@ SVG_calcOffsets($$)
|
|||||||
$SVG_devs{$d}{from} = SVG_tspec(1,0,@l);
|
$SVG_devs{$d}{from} = SVG_tspec(1,0,@l);
|
||||||
@l = localtime($t+3600);
|
@l = localtime($t+3600);
|
||||||
$SVG_devs{$d}{to} = SVG_tspec(1,1,@l);
|
$SVG_devs{$d}{to} = SVG_tspec(1,1,@l);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
my $t = $now + $off*3600;
|
my $t = $now + $off*3600;
|
||||||
my @l = localtime($t);
|
my @l = localtime($t);
|
||||||
@ -661,6 +662,7 @@ SVG_calcOffsets($$)
|
|||||||
@l = localtime($t+3600);
|
@l = localtime($t+3600);
|
||||||
$SVG_devs{$d}{to} = SVG_tspec(2,1,@l);
|
$SVG_devs{$d}{to} = SVG_tspec(2,1,@l);
|
||||||
}
|
}
|
||||||
|
|
||||||
} elsif($zoom eq "qday") {
|
} elsif($zoom eq "qday") {
|
||||||
if($endPlotNow) {
|
if($endPlotNow) {
|
||||||
my $t = int(($now + $off*21600 - 21600)/300.0)*300 + 300;
|
my $t = int(($now + $off*21600 - 21600)/300.0)*300 + 300;
|
||||||
@ -677,6 +679,7 @@ SVG_calcOffsets($$)
|
|||||||
$l[2] = int($l[2]/6)*6;
|
$l[2] = int($l[2]/6)*6;
|
||||||
$SVG_devs{$d}{to} = SVG_tspec(2,1,@l);
|
$SVG_devs{$d}{to} = SVG_tspec(2,1,@l);
|
||||||
}
|
}
|
||||||
|
|
||||||
} elsif($zoom =~ m/^(\d+)?day/) {
|
} elsif($zoom =~ m/^(\d+)?day/) {
|
||||||
my $nDays = $1 ? ($1-1) : 0;
|
my $nDays = $1 ? ($1-1) : 0;
|
||||||
if($endPlotNow) {
|
if($endPlotNow) {
|
||||||
@ -692,6 +695,7 @@ SVG_calcOffsets($$)
|
|||||||
@l = localtime($t+(1+$nDays)*86400);
|
@l = localtime($t+(1+$nDays)*86400);
|
||||||
$SVG_devs{$d}{to} = SVG_tspec(3,1,@l);
|
$SVG_devs{$d}{to} = SVG_tspec(3,1,@l);
|
||||||
}
|
}
|
||||||
|
|
||||||
} elsif($zoom eq "week") {
|
} elsif($zoom eq "week") {
|
||||||
my @l = localtime($now);
|
my @l = localtime($now);
|
||||||
my $start = (AttrVal($FW_wname, "endPlotToday", undef) ? 6 : $l[6]);
|
my $start = (AttrVal($FW_wname, "endPlotToday", undef) ? 6 : $l[6]);
|
||||||
@ -1676,13 +1680,15 @@ plotAsPng(@)
|
|||||||
In plotmode gnuplot-scroll or SVG the given time-range will be used,
|
In plotmode gnuplot-scroll or SVG the given time-range will be used,
|
||||||
and no scrolling for this SVG will be possible. Needed e.g. for
|
and no scrolling for this SVG will be possible. Needed e.g. for
|
||||||
looking at last-years data without scrolling.<br><br>
|
looking at last-years data without scrolling.<br><br>
|
||||||
If the value is one of day, <N>days, week, month, year than set
|
If the value is one of hour, day, <N>days, week, month, year than
|
||||||
the zoom level for this SVG independently of the user specified
|
set the zoom level for this SVG independently of the user specified
|
||||||
zoom-level. This is useful for pages with multiple plots: one of the
|
zoom-level. This is useful for pages with multiple plots: one of the
|
||||||
plots is best viewed in with the default (day) zoom, the other one with
|
plots is best viewed in with the default (day) zoom, the other one with
|
||||||
a week zoom.
|
a week zoom.<br>
|
||||||
If given, the optional integer parameter offset refers to a different period
|
|
||||||
(e.g. last year: fixedrange year -1, 2 days ago: fixedrange day -2).
|
If given, the optional integer parameter offset refers to a different
|
||||||
|
period (e.g. last year: fixedrange year -1, 2 days ago: fixedrange day
|
||||||
|
-2).
|
||||||
|
|
||||||
</li><br>
|
</li><br>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user