]> Sergey Matveev's repositories - public-inbox.git/blob - Documentation/design_www.txt
fix quoted URL generation in feeds
[public-inbox.git] / Documentation / design_www.txt
1 URL naming
2 ----------
3
4 ### Unstable endpoints
5 /$LISTNAME/?r=$GIT_COMMIT                       -> HTML only
6 /$LISTNAME/atom.xml                             -> Atom feed
7
8 ### Stable endpoints
9 /$LISTNAME/m/$MESSAGE_ID.html                   -> HTML content (short quotes)
10 /$LISTNAME/m/$MESSAGE_ID.txt                    -> raw original
11 /$LISTNAME/m/$MESSAGE_ID                        -> 301 to .html version
12 /$LISTNAME/f/$MESSAGE_ID.html                   -> HTML content (full quotes)
13 /$LISTNAME/f/$MESSAGE_ID                        -> 301 to .html version
14 /$LISTNAME/f/$MESSAGE_ID.txt                    -> 301 to m/$MESSAGE_ID.txt
15
16 FIXME: we must refactor/cleanup/add tests for most of our CGI before
17 adding more endpoints and features.
18
19 Maybe TODO (these might be expensive)
20 -------------------------------------
21 /$LISTNAME/t/$MESSAGE_ID.html                   -> HTML content of thread
22 /$LISTNAME/t/$MESSAGE_ID.mbox                   -> mbox content of thread
23
24 We use file name suffixes on all of these (except /) so URLs may easily
25 cached/memoized using a static file server.
26
27 Guidelines for using limited HTML
28 ---------------------------------
29 We mainly use HTML for linking pages together with <a>.
30 We also set <title> to make window management easier.
31
32 We favor <pre>-formatted text since public-inbox is intended as a place
33 to share and discuss patches and code.  Unfortunately, long paragraphs
34 tends to be less readable with fixed-width serif fonts which GUI
35 browsers default to.  So perhaps we will add different endpoints for
36 variable-width fonts.
37
38 * Do not build <a> links from user-generated-content, this prevents
39   public-inbox deployments from being turned into a spam linkfarm.
40
41 * No graphics, images, or icons at all.  We tolerate, but do not
42   encourage the use of GUIs.
43
44 * No setting colors or font sizes, power to users to decide those.
45
46 * No JavaScript. JS is historically too buggy and insecure, and we will
47   never expect our readers to do either of the following:
48   a) read and audit all our code for on every single page load
49   b) trust us and and run code without reading it
50
51 * We only use CSS for one reason: wrapping pre-formatted text
52   This is necessary because unfortunate GUI browsers tend to be
53   prone to layout widening.  lynx is fine here without CSS :)
54   No other CSS is allowed, especially with scary things like:
55
56         http://thejh.net/misc/website-terminal-copy-paste