From e222407a1d055a0c6e4cd1dc8469e8b2d8d702d4 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Thu, 16 Sep 2010 13:59:46 -0400 Subject: [PATCH] Minor reorganization --- collects/meta/web/www/learning.rkt | 16 +++------------- collects/meta/web/www/techreports.rkt | 13 +++++++++++-- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/collects/meta/web/www/learning.rkt b/collects/meta/web/www/learning.rkt index 851a6e08a9..4ca5ab4d85 100644 --- a/collects/meta/web/www/learning.rkt +++ b/collects/meta/web/www/learning.rkt @@ -15,7 +15,7 @@ (provide learning) (define learning - @page{ + @page[#:part-of 'learning]{ @parlist[@strong{Resources for Learning} (apply parlist @text{Documentation for getting started:} intros) @text{@-cookbook — useful recipes, many of which apply to Racket.} @@ -35,7 +35,7 @@ @|graduate-study|.}]}) (define graduate-study - @page[#:file "common-plt-app.html" #:part-of learning]{ + @page[#:file "common-plt-app.html" #:part-of 'learning]{ @(define (box-style border-width color) @list{border: @|border-width|px solid black; padding: 5px; @; background: @|color|@";"}) @@ -88,20 +88,10 @@ @a[href: "http://www.cs.brown.edu/~sk/"]{Shriram}}}) (require "techreports.rkt") -(define techreports - @page[#:file "techreports/" #:part-of learning - #:title "Technical Reports"]{ - @p{PLT publishes technical reports about some of its tools and libraries so - that scholars who wish to give proper credit to some of our innovations - have a definite citation. Each entry below provides the full pdf and a - bibtex entry; some of the bibtex entries provide additional citations to - published papers.} - - @make-bib-table{}}) ;; redirection page for the previous name of this page (define outreach+research - @page[#:part-of learning + @page[#:part-of 'learning #:title "Outreach & Research" #:link-title @list{Outreach@|nbsp|&@|nbsp|Research} #:extra-headers diff --git a/collects/meta/web/www/techreports.rkt b/collects/meta/web/www/techreports.rkt index 16853bd66a..ddecff4f53 100644 --- a/collects/meta/web/www/techreports.rkt +++ b/collects/meta/web/www/techreports.rkt @@ -3,9 +3,18 @@ (require "bib.rkt" (prefix-in - version/utils) racket/list "../download/data.rkt") -;; Old style TR entries, for compatibility ------------------------------------ +(provide techreports) +(define techreports + @page[#:file "techreports/" #:part-of 'learning + #:title "Technical Reports"]{ + @p{PLT publishes technical reports about some of its tools and libraries so + that scholars who wish to give proper credit to some of our innovations + have a definite citation. Each entry below provides the full pdf and a + bibtex entry; some of the bibtex entries provide additional citations to + published papers.} + @make-bib-table{}}) -(provide make-bib-table) +;; Old style TR entries, for compatibility ------------------------------------ (define last-old-tr "4.9")