]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Feed.pm
www: redefinable project name and URL
[public-inbox.git] / lib / PublicInbox / Feed.pm
index 65adf373a7400d42b63e1acd85f951db1d0b2298..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;
@@ -253,7 +231,6 @@ sub each_recent_blob {
 # private functions below
 sub get_feedopts {
        my ($ctx) = @_;
-       my $pi_config = $ctx->{pi_config};
        my $inbox = $ctx->{inbox};
        my $obj = $ctx->{-inbox};
        my %rv = ( description => $obj->description );