--- trunk/lib/Frey/Web.pm 2008/11/25 17:15:18 519 +++ trunk/lib/Frey/Web.pm 2008/11/26 00:45:52 524 @@ -220,6 +220,8 @@ my $revision = Frey::SVK->info->{Revision} || ''; $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)}; + $self->add_icon; + my $html = join("\n", qq||, $self->_head_html, @@ -317,4 +319,30 @@ cluck "## DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status; } +sub add_icon { + my $self = shift; + my $icon = ref($self); + $icon = $self->class if $self->can('class'); + $icon =~ s{::}{/}g; + + my $icon_path = "static/icons/$icon.png"; + + if ( -e $icon_path ) { + $self->add_head( qq|| ); + warn "# using icon $icon_path"; + + # FIXME http://en.wikipedia.org/wiki/Favicon suggest just rel="icon" but that doesn't seem to work! + my $ico_path = $icon_path; + $ico_path =~ s{png$}{ico}; + if ( ! -e $ico_path ) { + system "convert $icon_path $ico_path"; + warn "# convert $icon_path $ico_path : $@"; + } + $self->add_head( qq|| ) if -e $ico_path; + + } else { + warn "can't find $icon_path"; + } +} + 1;