2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-16 04:36:02 +00:00

favicon is working again

git-svn-id: https://svn.fhem.de/fhem/trunk@1893 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2012-09-27 09:09:37 +00:00
parent 7c98c18027
commit e156127cf8

View File

@ -307,7 +307,6 @@ FW_Read($)
(int(@enc) == 1 && $enc[0] =~ m/gzip/) &&
$try_zlib &&
AttrVal($FW_wname, "fwcompress", 1)) {
Log $ll, "OLEN:".length($FW_RET);
$FW_RET = Compress::Zlib::memGzip($FW_RET);
$compressed = "Content-Encoding: gzip\r\n";
}
@ -428,9 +427,6 @@ FW_AnswerCall($)
} elsif($arg =~ m,^${FW_ME}/js/(.*)\.js$,) {
return FW_ServeSpecial($1,"js",$FW_jsdir);
} elsif($arg =~ m,^/(favicon.ico)$,) {
return 0; # TODO!
} elsif($arg =~ m,^$FW_ME/icons/(.*)$,) {
my ($icon,$cachable) = ($1, 1);
#Debug "You want $icon which is " . $FW_icons{$icon};
@ -562,6 +558,7 @@ FW_AnswerCall($)
FW_pO '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
FW_pO '<html xmlns="http://www.w3.org/1999/xhtml">';
FW_pO "<head>\n<title>$t</title>";
FW_pO "<link rel=\"shortcut icon\" href=\"$FW_ME/icons/favicon.ico\" />";
# Enable WebApp
if($FW_tp || $FW_ss) {