By default, Django expects URLs to end with a "/" but if it
accepts a request without a trailing slash, it will issue a
permanent redirect with the slash appended. While this is great,
it does mean an extra request to the server.
This patch adds a "/" to anchor tags that did not have one
already appended to it, thus helping to save time for a user
browsing .org as well as for the server.
The semantics of <b> and <i> tags have changed as the web has
evolved. <b> is specified to only be used as a last resort
whereas <i> can be used for other purposes (e.g. rendering icons).
Bold and italic text should be rendered using <strong> and <em>
respectively.
This patch makes this replacement in all pages except for pages
that will be deprecrated soon and in the presskits.
Now that we have more metadata, we can render this on the main page instead of
on the wiki. This commit copies all the text from the current wiki page, and
uses the new fields in the Version model to render the table on the same URL
as the reference was on before.