|
@@ -247,13 +247,27 @@ sub get_time
|
|
|
sub _htmlfooter
|
|
sub _htmlfooter
|
|
|
{
|
|
{
|
|
|
my $self = shift;
|
|
my $self = shift;
|
|
|
|
|
+
|
|
|
|
|
+ my %hash;
|
|
|
|
|
+
|
|
|
my $pisg_hp = $self->_template_text('pisghomepage');
|
|
my $pisg_hp = $self->_template_text('pisghomepage');
|
|
|
|
|
+ $hash{pisg_url} = "<a href=\"http://pisg.sourceforge.net/\" title=\"$pisg_hp\" class=\"background\">pisg</a>";
|
|
|
|
|
+
|
|
|
my $author_hp = $self->_template_text('authorhomepage');
|
|
my $author_hp = $self->_template_text('authorhomepage');
|
|
|
|
|
+ $hash{author_url} = "<a href=\"http://www.wtf.dk/hp/\" title=\"$author_hp\" class=\"background\">Morten Brix Pedersen</a>";
|
|
|
|
|
+
|
|
|
|
|
+ $hash{version} = $self->{cfg}->{version};
|
|
|
|
|
+ $hash{time} = $self->{stats}->{processtime};
|
|
|
|
|
+
|
|
|
|
|
+ my $stats_gen = $self->_template_text('stats_gen_by', %hash);
|
|
|
|
|
+ my $author_text = $self->_template_text('author', %hash);
|
|
|
|
|
+ my $stats_text = $self->_template_text('stats_gen_in', %hash);
|
|
|
|
|
+
|
|
|
print OUTPUT <<HTML;
|
|
print OUTPUT <<HTML;
|
|
|
<span class="small">
|
|
<span class="small">
|
|
|
-Stats generated by <a href="http://pisg.sourceforge.net/" title="$pisg_hp" class="background">pisg</a> v$self->{cfg}->{version}<br />
|
|
|
|
|
-pisg by <a href="http://www.wtf.dk/hp/" title="$author_hp" class="background">Morten Brix Pedersen</a> and others<br />
|
|
|
|
|
-Stats generated in $self->{stats}->{processtime}
|
|
|
|
|
|
|
+$stats_gen<br />
|
|
|
|
|
+$author_text<br />
|
|
|
|
|
+$stats_text
|
|
|
</span>
|
|
</span>
|
|
|
</div>
|
|
</div>
|
|
|
</body>
|
|
</body>
|