From: Eric Wong Date: Wed, 18 Nov 2015 21:18:41 +0000 (+0000) Subject: feed: capitalize "Atom" consistently X-Git-Tag: v1.0.0~786 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=3137d85fe7f7cd7c506858a9e8fe99a34900c9ac;p=public-inbox.git feed: capitalize "Atom" consistently This is the official name of the spec, so refer to it as such despite the file extension being lower-cased --- diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm index 85c598e5..e66b678b 100644 --- a/lib/PublicInbox/Feed.pm +++ b/lib/PublicInbox/Feed.pm @@ -12,7 +12,7 @@ use PublicInbox::View; use PublicInbox::MID qw/mid_clean mid2path/; use POSIX qw/strftime/; use constant { - DATEFMT => '%Y-%m-%dT%H:%M:%SZ', # atom standard + DATEFMT => '%Y-%m-%dT%H:%M:%SZ', # Atom standard MAX_PER_PAGE => 25, # this needs to be tunable }; @@ -194,7 +194,7 @@ sub nav_footer { $head = $cgi->path_info; $head = qq!head!; } - my $atom = "{atomurl}\">atom"; + my $atom = "{atomurl}\">Atom"; "page: $next $head $atom"; }