]> Sergey Matveev's repositories - public-inbox.git/commitdiff
feed: remove dead code and unneeded use
authorEric Wong <e@80x24.org>
Sat, 9 Jul 2016 03:18:32 +0000 (03:18 +0000)
committerEric Wong <e@80x24.org>
Sat, 9 Jul 2016 03:20:20 +0000 (03:20 +0000)
We've cleaned up our code in recent days and WwwStream
provides a consistent header for our HTML pages.

lib/PublicInbox/Feed.pm

index 3b0ae42263c9dda20b46fec1d674e967430370eb..a697a4326fcaefcb64f2be0a17432f71cd1a2163 100644 (file)
@@ -8,7 +8,6 @@ use warnings;
 use Email::MIME;
 use Date::Parse qw(strptime);
 use PublicInbox::Hval qw/ascii_html/;
-use PublicInbox::Git;
 use PublicInbox::View;
 use PublicInbox::MID qw/mid_clean mid2path/;
 use PublicInbox::Address;
@@ -150,27 +149,6 @@ sub emit_atom_thread {
        end_feed($fh);
 }
 
-sub _html_index_top {
-       my ($feed_opts, $srch) = @_;
-
-       my $title = ascii_html($feed_opts->{description} || '');
-       my $top = "<b>$title</b> (<a\nhref=\"new.atom\">Atom feed</a>)";
-       if ($srch) {
-               $top = qq{<form\naction=""><pre>$top} .
-                         qq{ <input\nname=q\ntype=text />} .
-                         qq{<input\ntype=submit\nvalue=search />} .
-                         q{</pre></form><pre>}
-       } else {
-               $top = '<pre>' . $top . "\n";
-       }
-
-       "<html><head><title>$title</title>" .
-               "<link\nrel=alternate\ntitle=\"Atom feed\"\n".
-               "href=\"new.atom\"\ntype=\"application/atom+xml\"/>" .
-               PublicInbox::Hval::STYLE .
-               "</head><body>$top";
-}
-
 sub new_html_footer {
        my ($ctx, $last) = @_;
        my $qp = delete $ctx->{qp} or return;