about summary refs log tree commit homepage
path: root/public-inbox-cgi
DateCommit message (Collapse)
2014-04-10cgi: implement get_mid_txt
This is essential when telling people to use something like: curl $URL | git am
2014-04-10cgi: wire up index + tests
Remove the specified /all.html while we're at it, we only have /all.atom.xml because it's convenient for feed readers.
2014-04-10cgi: do not specify charset in Atom HTTP header
The feed itself already specifies it in XML, and we risk confusing clients if XML::Atom::SimpleFeed changes in the future. This also increases consistency for CGI vs static-file serving.
2014-04-10cgi: remove some redundant logic
We'll be reusing more validation logic for per-message and per-thread pages.
2014-04-08cgi: cleanup dependencies
We do not need to use CGI::Util internals here.
2014-04-07cgi: make internal interface more Plack-like
This should make it easier to support non-CGI uses, as well as making it easier to generate static sites.
2014-04-07feed: generate takes a hashref for args
Passing a giant argument list is to error prone and hard-to-document.
2014-04-05get a basic CGI feed sender running
We should be able to wire up the rest, soon.