Bugs page skeleton.

This commit is contained in:
Eli Barzilay 2010-06-23 07:35:14 -04:00
parent 0ffe4c1efb
commit 049913fdef
6 changed files with 27 additions and 1 deletions

View File

@ -5,6 +5,7 @@
'(("www" "http://racket-lang.org/")
("download" "http://download.racket-lang.org/")
("lists" "http://lists.racket-lang.org/")
("bugs" "http://bugs.racket-lang.org/")
;; stubs usually use absolute paths for resources, since they're
;; templates that often get used in sub-dir pages too
("stubs/planet" "http://planet.racket-lang.org/" abs)

Binary file not shown.

After

Width:  |  Height:  |  Size: 691 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 729 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 745 B

View File

@ -0,0 +1,25 @@
#lang at-exp s-exp "../common.rkt"
(define-context "bugs")
(define planet-bugs "http://planet.racket-lang.org/trac/newticket")
(require "../www/main.rkt")
(define query
@page[#:title "Query Bug Reports" #:file "query/"]{
@em{TODO}})
(define index
@page[#:title "Bug Reports"]{
@p[style: "padding: 5px; color: #a00; border: 1px solid;"]{@em{
If you can, please use the Bug Report item in DrRacket's Help menu. It
works better than this page, because it helps you supply precise
information about your Racket installation and working environment.}}
@p{@strong{Note:} Bug reports for PLaneT packages are submitted on the
@a[href: planet-bugs]{PLaneT server}.}
@p{Before submitting a bug report, you may wish to:
@ul{@li{Consult the @-docs,}
@li{@download a newer Racket version if there is one (Racket
displays its version number on startup),}
@li{@query{Query existing bug reports}.}}}})

View File

@ -1,3 +1,3 @@
#lang at-exp s-exp "../common.rkt"
(require "lists.rkt")
(require "lists.rkt" "bugs.rkt")