mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 03:06:37 +00:00
added a note for a minor bug
git-svn-id: https://svn.fhem.de/fhem/trunk@1477 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
4f974b656d
commit
04e39978b5
@ -891,6 +891,7 @@ FW_roomOverview($)
|
||||
|
||||
########################
|
||||
# Show the overview of devices in one room
|
||||
# room can be a room, all or Unsorted
|
||||
sub
|
||||
FW_showRoom()
|
||||
{
|
||||
@ -903,6 +904,11 @@ FW_showRoom()
|
||||
FW_pO "<div id=\"content\">";
|
||||
FW_pO "<table>"; # Need for equal width of subtables
|
||||
|
||||
foreach my $ty (sort keys %FW_types) {
|
||||
FW_pO "$ty<BR>\n";
|
||||
}
|
||||
|
||||
|
||||
my $rf = ($FW_room ? "&room=$FW_room" : ""); # stay in the room
|
||||
my $row=1;
|
||||
foreach my $type (sort keys %FW_types) {
|
||||
@ -997,7 +1003,13 @@ FW_fileList($)
|
||||
$fname =~ m,^(.*)/([^/]*)$,; # Split into dir and file
|
||||
my ($dir,$re) = ($1, $2);
|
||||
return if(!$re);
|
||||
$re =~ s/%./\.*/g;
|
||||
# note: this fails if the filenames of several FileLogs match the same regexp.
|
||||
# This is the case e.g. fore
|
||||
# /var/log/fhem/foo-%Y.log
|
||||
# /var/log/fhem/foo-%Y-%m-%d.log
|
||||
# I do not fix it because this could easily be avoided by using a different naming.
|
||||
# BN 2012-04-22
|
||||
$re =~ s/%./\.*/g;
|
||||
my @ret;
|
||||
return @ret if(!opendir(DH, $dir));
|
||||
while(my $f = readdir(DH)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user