about summary refs log tree commit homepage
path: root/lib/PublicInbox/Repobrowse.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-01-29 03:23:39 +0000
committerEric Wong <e@80x24.org>2016-04-05 18:58:27 +0000
commit74bdccb25e66298c3f9c81af0f611ad3adfc5a01 (patch)
tree88d3ab5ba71af5e2be08e679262595dbe7a95c1c /lib/PublicInbox/Repobrowse.pm
parent7d8cc28839176b7fa67c509aae2b4c050e3abbd1 (diff)
downloadpublic-inbox-74bdccb25e66298c3f9c81af0f611ad3adfc5a01.tar.gz
Mostly following cgit, except we do not serve redundant
text-only output which wastes bandwidth and doesn't preserve
pre-formatting layout which is critical to some messages.
Diffstat (limited to 'lib/PublicInbox/Repobrowse.pm')
-rw-r--r--lib/PublicInbox/Repobrowse.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/Repobrowse.pm b/lib/PublicInbox/Repobrowse.pm
index 91d0ab20..82d38f90 100644
--- a/lib/PublicInbox/Repobrowse.pm
+++ b/lib/PublicInbox/Repobrowse.pm
@@ -23,7 +23,7 @@ use warnings;
 use URI::Escape qw(uri_escape_utf8 uri_unescape);
 use PublicInbox::RepobrowseConfig;
 
-my %CMD = map { lc($_) => $_ } qw(Log Commit Tree Patch Blob Plain Tag);
+my %CMD = map { lc($_) => $_ } qw(Log Commit Tree Patch Blob Plain Tag Atom);
 my %VCS = (git => 'Git');
 my %LOADED;