diff --git a/collects/meta/web/README b/collects/meta/web/README index 201017f07c..2ab36948c6 100644 --- a/collects/meta/web/README +++ b/collects/meta/web/README @@ -1,16 +1,16 @@ -* common: specific code for the PLT web pages. +* common: specific code for the racket web pages. * www: actual content of main site. * download: content of download site (only installer pages and such) * */all.rkt: files that just require all the necessary modules to build - the ahole site + the whole site * */resources.rkt: files that define the resources for a site (icon, css, logo) -* minis: smaller sites which are implemented in one-file each +* minis: smaller one-source-file sites * stubs: template "sites" that are intended to be hooked into other - systems to get the plt look. + systems to get the racket look. diff --git a/collects/meta/web/download/download-pages.rkt b/collects/meta/web/download/download-pages.rkt index bfb1fe731f..cc1b2f0eb6 100644 --- a/collects/meta/web/download/download-pages.rkt +++ b/collects/meta/web/download/download-pages.rkt @@ -65,7 +65,9 @@ @(map (lambda (v) (tr (map (lambda (p) (td align: 'center (make-page v p))) all-packages))) - all-versions)}}})) + all-versions) + @tr{@td[align: 'center colspan: 2 style: "border-top: solid 1px;"]{ + @pre:installers}}}}})) (define license @page[#:title "Software License" #:part-of 'download]{ diff --git a/collects/meta/web/stubs/git.rkt b/collects/meta/web/stubs/git.rkt index d4cf9e4842..eafbd6dab3 100644 --- a/collects/meta/web/stubs/git.rkt +++ b/collects/meta/web/stubs/git.rkt @@ -81,9 +81,6 @@ ;; ---------------------------------------------------------------------------- ;; git "guide" -;; TODO: link man pages -;; @man and other occurrences of "man page" -;; @v for meta-vars (define intro (let () (define (cmd . text) (span class: "code" text)) @@ -99,9 +96,6 @@ (define (npre . text) (apply pre style: "margin-left: 0;" text)) (define style @style/inline[type: 'text/css]{ - a:link, a:visited { - text-decoration: underline; - } .p { display: block; margin: 1em 0; @@ -116,6 +110,9 @@ .code, .path, .man { white-space: nowrap; } + .the_text a:link, .the_text a:visited { + text-decoration: underline; + } .the_text pre { margin-left: 2em; padding: 0.6em 0 0.6em 0.6em;