]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Feed.pm
remove direct CGI.pm support
[public-inbox.git] / lib / PublicInbox / Feed.pm
index 7ebc0505602f5e11d6ce5b39fc8d8b4ebf461805..a5828a8e16bf9f475c1897b60f7cd4279e064c24 100644 (file)
@@ -55,7 +55,8 @@ sub atom_header {
        qq(<?xml version="1.0" encoding="us-ascii"?>\n) .
        qq{<feed\nxmlns="http://www.w3.org/2005/Atom">} .
        qq{$title} .
-       qq(<link\nhref="$feed_opts->{url}"/>) .
+       qq(<link\nrel="alternate"\ntype="text/html") .
+               qq(\nhref="$feed_opts->{url}"/>) .
        qq(<link\nrel="self"\nhref="$feed_opts->{atomurl}"/>) .
        qq(<id>mailto:$feed_opts->{id_addr}</id>);
 }
@@ -120,12 +121,11 @@ sub emit_html_index {
 
        my $title = $feed_opts->{description} || '';
        $title = PublicInbox::Hval->new_oneline($title)->as_html;
-       my $atom_url = $feed_opts->{atomurl};
        my ($footer, $param, $last);
        my $state = { ctx => $ctx, seen => {}, anchor_idx => 0 };
        my $srch = $ctx->{srch};
 
-       my $top = "<b>$title</b> (<a\nhref=\"$atom_url\">Atom feed</a>)";
+       my $top = "<b>$title</b> (<a\nhref=\"new.atom\">Atom feed</a>)";
 
        if ($srch) {
                $top = qq{<form\naction=""><pre>$top} .
@@ -138,7 +138,7 @@ sub emit_html_index {
 
        $fh->write("<html><head><title>$title</title>" .
                   "<link\nrel=alternate\ntitle=\"Atom feed\"\n".
-                  "href=\"$atom_url\"\ntype=\"application/atom+xml\"/>" .
+                  "href=\"new.atom\"\ntype=\"application/atom+xml\"/>" .
                   PublicInbox::Hval::STYLE .
                   "</head><body>$top");
 
@@ -194,7 +194,7 @@ sub nav_footer {
                $head = $cgi->path_info;
                $head = qq!<a\nhref="$head">head</a>!;
        }
-       my $atom = "<a\nhref=\"$feed_opts->{atomurl}\">Atom</a>";
+       my $atom = "<a\nhref=\"$feed_opts->{atomurl}\">Atom feed</a>";
        "<a\nname=\"s$anchor\">page:</a> $next $head $atom";
 }
 
@@ -284,14 +284,7 @@ sub get_feedopts {
 
        my $url_base;
        if ($cgi) {
-               my $base;
-               if (ref($cgi) eq 'CGI') {
-                       $base = $cgi->url(-base);
-               } else {
-                       $base = $cgi->base->as_string;
-                       $base =~ s!/\z!!;
-               }
-               $url_base = "$base/$listname";
+               $url_base = $cgi->base->as_string . $listname;
                if (my $mid = $ctx->{mid}) { # per-thread feed:
                        $rv{atomurl} = "$url_base/$mid/t.atom";
                } else {