]> Sergey Matveev's repositories - public-inbox.git/commitdiff
www: use HTML <hr> instead of XHTML <hr />
authorEric Wong <e@80x24.org>
Wed, 6 Jul 2016 02:32:07 +0000 (02:32 +0000)
committerEric Wong <e@80x24.org>
Wed, 6 Jul 2016 07:12:45 +0000 (07:12 +0000)
We only need XHTML-compatibility inside Atom feeds, as
anecdotally, feed readers are stricter than normal browsers and
some do not support HTML, only XHTML.  So we will continue to
accomodate them.  However we favor HTML elsewhere since it
tends to be smaller than the equivalent well-formed XHTML.

lib/PublicInbox/Feed.pm
lib/PublicInbox/SearchView.pm
lib/PublicInbox/Unsubscribe.pm
lib/PublicInbox/View.pm

index 2983514c83c26af19882d87a9f7b7a42cb50b88b..1f88abaa47cf02b53843b2da8ad3418a04e40d9e 100644 (file)
@@ -188,7 +188,7 @@ sub emit_html_index {
        if ($footer) {
                my $list_footer = $ctx->{footer};
                $footer .= "\n\n" . $list_footer if $list_footer;
-               $footer = "<hr /><pre>$footer</pre>";
+               $footer = "<hr><pre>$footer</pre>";
        }
        $fh->write("$footer</body></html>");
        $fh->close;
index 15bb8232ec430ecd99883a3827bba40f78d0e6f3..80a2ff7c28e68ab9fe178919f481d24fcde8e708 100644 (file)
@@ -38,11 +38,11 @@ sub sres_top_html {
        my $cb;
        if ($err) {
                $code = 400;
-               $ctx->{-html_tip} = '<pre>'.err_txt($ctx, $err).'</pre><hr />';
+               $ctx->{-html_tip} = '<pre>'.err_txt($ctx, $err).'</pre><hr>';
                $cb = *noop;
        } elsif ($total == 0) {
                $code = 404;
-               $ctx->{-html_tip} = "<pre>\n[No results found]</pre><hr />";
+               $ctx->{-html_tip} = "<pre>\n[No results found]</pre><hr>";
                $cb = *noop;
        } else {
                my $x = $q->{x};
@@ -126,7 +126,7 @@ sub search_nav_bot {
        my $o = $q->{o};
        my $end = $o + $nr;
        my $beg = $o + 1;
-       my $rv = "</pre><hr /><pre>Results $beg-$end of $total";
+       my $rv = "</pre><hr><pre>Results $beg-$end of $total";
        my $n = $o + $LIM;
 
        if ($n < $total) {
index 46d5d8d7ea286844eb8f353650fc9ba1067d324a..fca300e5b67102592334cf99a97709494ca99470 100644 (file)
@@ -136,7 +136,7 @@ sub r {
        my ($self, $code, $title, @body) = @_;
        [ $code, [ @CT_HTML ], [
                "<html><head><title>$title</title></head><body><pre>".
-               join("\n", "<b>$title</b>\n", @body) . '</pre><hr />'.
+               join("\n", "<b>$title</b>\n", @body) . '</pre><hr>'.
                "<pre>This page is available under AGPL-3.0+\n" .
                "git clone $self->{code_url}\n" .
                qq(Email $self->{contact} if you have any questions).
index c230836d0fc9b48eca24785c9fc54c162128f92b..7ff3b40308935c737c3b5f03429076a245cbae27 100644 (file)
@@ -30,8 +30,7 @@ sub msg_html {
        PublicInbox::WwwStream->response($ctx, 200, sub {
                my ($nr, undef) = @_;
                if ($nr == 1) {
-                       $tip . multipart_text_as_html($mime, '') .
-                               '</pre><hr />'
+                       $tip . multipart_text_as_html($mime, '') . '</pre><hr>'
                } elsif ($nr == 2) {
                        # fake an EOF if generating the footer fails;
                        # we want to at least show the message if something
@@ -321,7 +320,7 @@ sub thread_html {
        my $msgs = load_results($sres);
        my $nr = $sres->{total};
        return missing_thread($ctx) if $nr == 0;
-       my $skel = '<hr /><pre>';
+       my $skel = '<hr><pre>';
        $skel .= $nr == 1 ? 'only message in thread' : 'end of thread';
        $skel .= ", back to <a\nhref=\"../../\">index</a>";
        $skel .= "\n<a\nid=t>$nr+ messages in thread:</a> (download: ";