]> Sergey Matveev's repositories - public-inbox.git/blob - Documentation/design_www.txt
0f63fdf2a3b301d5e3112b7e0349234a8734be2d
[public-inbox.git] / Documentation / design_www.txt
1 URL naming
2 ----------
3
4 /$LISTNAME/?r=$GIT_COMMIT                       -> HTML only
5 /$LISTNAME/index.atom.xml                       -> Atom feed
6 /$LISTNAME/all.atom.xml                         -> Atom feed, includes replies
7 /$LISTNAME/m/$MESSAGE_ID.html                   -> HTML content (short quotes)
8 /$LISTNAME/m/$MESSAGE_ID.txt                    -> raw original
9 /$LISTNAME/m/$MESSAGE_ID                        -> 301 to .html version
10 /$LISTNAME/f/$MESSAGE_ID.html                   -> HTML content (full quotes)
11 /$LISTNAME/f/$MESSAGE_ID                        -> 301 to .html version
12 /$LISTNAME/f/$MESSAGE_ID.txt                    -> 301 to m/$MESSAGE_ID.txt
13 /$LISTNAME/t/$MESSAGE_ID.html                   -> HTML content of thread
14 /$LISTNAME/t/$MESSAGE_ID.mbox                   -> mbox content of thread
15
16 We use file name suffixes on all of these (except /) so URLs may easily
17 cached/memoized using a static file server.