change path->main-collects-relative, and change output directory of start document

svn: r8301

original commit: 05434ec54da3cd9362493c024d73de5ec3f516a8
This commit is contained in:
Matthew Flatt 2008-01-11 19:54:38 +00:00
parent b4f706247f
commit 0732affece
2 changed files with 516 additions and 579 deletions

View File

@ -76,6 +76,8 @@
format-number format-number
quiet-table-of-contents) quiet-table-of-contents)
(init-field [css-path #f])
(define/override (get-suffix) #".html") (define/override (get-suffix) #".html")
;; ---------------------------------------- ;; ----------------------------------------
@ -132,6 +134,9 @@
(define/private (reveal-subparts? p) (define/private (reveal-subparts? p)
(part-style? p 'reveal)) (part-style? p 'reveal))
(define/public (toc-wrap table)
null)
(define/public (render-toc-view d ri) (define/public (render-toc-view d ri)
(let-values ([(top mine) (let-values ([(top mine)
@ -185,10 +190,11 @@
(class "tocviewlink")) (class "tocviewlink"))
,@(render-content (or (part-title-content top) '("???")) d ri))) ,@(render-content (or (part-title-content top) '("???")) d ri)))
(div nbsp) (div nbsp)
(table ,@(toc-wrap
((class "tocviewlist") `(table
(cellspacing "0")) ((class "tocviewlist")
,@toc-content))))) (cellspacing "0"))
,@toc-content))))))
,@(render-onthispage-contents d ri top) ,@(render-onthispage-contents d ri top)
,@(apply append ,@(apply append
(map (lambda (t) (map (lambda (t)
@ -311,18 +317,31 @@
null)) null))
(link ((rel "stylesheet") (link ((rel "stylesheet")
(type "text/css") (type "text/css")
(href "scribble.css") (href ,(or css-path "scribble.css"))
(title "default")))) (title "default"))))
(body ,@(render-toc-view d ri) (body ,@(render-toc-view d ri)
(div ((class "maincolumn")) (div ((class "maincolumn"))
(div ((class "main")) ,@(render-part d ri)))))]) (div ((class "main"))
(install-file scribble-css) ,@(render-version d ri)
,@(render-part d ri)))))])
(unless css-path
(install-file scribble-css))
(printf "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n") (printf "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n")
(xml:write-xml/content (xml:xexpr->xml xpr))))) (xml:write-xml/content (xml:xexpr->xml xpr)))))
(define/override (render-one d ri fn) (define/override (render-one d ri fn)
(render-one-part d ri fn null)) (render-one-part d ri fn null))
(define/public (render-version d ri)
`((div ([class "versionbox"])
,@(render-content
(list
(make-element "version"
(list "Version: "
(current-version))))
d
ri))))
(define/override (render-part d ri) (define/override (render-part d ri)
(let ([number (collected-info-number (part-collected-info d ri))]) (let ([number (collected-info-number (part-collected-info d ri))])
`(,@(if (and (not (part-title-content d)) `(,@(if (and (not (part-title-content d))
@ -645,6 +664,9 @@
(define/override (get-onthispage-label) (define/override (get-onthispage-label)
`((div ((class "tocsubtitle")) `((div ((class "tocsubtitle"))
"On this page:"))) "On this page:")))
(define/override (toc-wrap p)
(list p))
(define contents-content '("contents")) (define contents-content '("contents"))
(define index-content '("index")) (define index-content '("index"))
@ -654,7 +676,11 @@
(define no-next-content next-content) (define no-next-content next-content)
(define sep-element (make-element #f '(nbsp nbsp))) (define sep-element (make-element #f '(nbsp nbsp)))
(inherit render-table) (inherit render-table
render-paragraph)
(define/override (render-version r i)
null)
(define/private (find-siblings d ri) (define/private (find-siblings d ri)
(let ([parent (collected-info-parent (part-collected-info d ri))]) (let ([parent (collected-info-parent (part-collected-info d ri))])
@ -705,68 +731,56 @@
(let ([d (car (last-pair subs))]) (let ([d (car (last-pair subs))])
(and (part-style? d 'index) (and (part-style? d 'index)
d)))))))]) d)))))))])
`(,@(render-table (make-table `((div ([class "navleft"])
'at-left ,@(render-content
(list (append
(cons (list
(make-flow (make-element
(list (if parent
(make-paragraph (make-target-url "index.html")
(list "nonavigation")
(make-element contents-content))
(if parent (if index
(make-target-url "index.html") (list
"nonavigation") 'nbsp
contents-content))))) (if (eq? d index)
(if index (make-element
(list "nonavigation"
(make-flow index-content)
(list (make-link-element
(make-paragraph #f
(list index-content
'nbsp (car (part-tags index)))))
(if (eq? d index) null))
(make-element d
"nonavigation" ri))
index-content) (div ([class "navright"])
(make-link-element ,@(render-content
#f (list
index-content (make-element
(car (part-tags index))))))))) (if parent
null)))) (make-target-url (if prev
d ri) (derive-filename prev)
,@(render-table (make-table "index.html"))
'at-right "nonavigation")
(list prev-content)
(list sep-element
(make-flow (make-element
(list (if parent
(make-paragraph (make-target-url
(list (if (toc-part? parent)
(make-element (derive-filename parent)
(if parent "index.html"))
(make-target-url (if prev "nonavigation")
(derive-filename prev) up-content)
"index.html")) sep-element
"nonavigation") (make-element
prev-content) (if next
sep-element (make-target-url (derive-filename next))
(make-element "nonavigation")
(if parent next-content))
(make-target-url d
(if (toc-part? parent) ri))))))
(derive-filename parent)
"index.html"))
"nonavigation")
up-content)
sep-element
(make-element
(if next
(make-target-url (derive-filename next))
"nonavigation")
next-content))))))))
d
ri)))))
(define/override (render-part d ri) (define/override (render-part d ri)
(parameterize ([current-version (parameterize ([current-version
@ -796,20 +810,9 @@
[on-separate-page #f]) [on-separate-page #f])
(if sep? (if sep?
;; Navigation bars; ;; Navigation bars;
`(,@(navigation d ri) `(,@(super render-version d ri)
,@(navigation d ri)
(p nbsp) (p nbsp)
,@(render-table (make-table
"versionbox"
(list
(list
(make-flow
(list
(make-paragraph (list
(make-element "version"
(list "Version: "
(current-version))))))))))
d
ri)
,@(super render-part d ri) ,@(super render-part d ri)
(p nbsp) (p nbsp)
,@(navigation d ri) ,@(navigation d ri)

View File

@ -1,497 +1,431 @@
body { body {
color: black; color: black;
background-color: #ffffff; background-color: #ffffff;
} }
table td { table td {
padding-left: 0; padding-left: 0;
padding-right: 0; padding-right: 0;
} }
.maincolumn { .maincolumn {
font-family: monospace; font-family: monospace;
width: 43em; width: 43em;
margin-right: -40em; margin-right: -40em;
margin-left: 15em; margin-left: 15em;
} }
.main { .main {
font-family: serif; font-family: serif;
text-align: left; text-align: left;
} }
.versionbox { .navleft {
position: relative; position: relative;
float: right; float: left;
left: 3em; }
top: -2em; .navright {
height: 0em; position: relative;
width: 13em; float: right;
margin: 0em -13em 0em 0em; }
}
.version { .versionbox {
font-family: sans-serif; position: relative;
float: right;
} left: 3em;
height: 0em;
.refpara { width: 13em;
font-family: monospace; margin: 0em -13em 0em 0em;
position: relative; }
float: right; .version {
left: 1em; font-family: sans-serif;
top: -1em; font-size: small;
height: 0em; }
width: 13em;
margin: 0em -13em 0em 0em; .refpara {
} font-family: monospace;
position: relative;
.refcolumn { float: right;
background-color: #F5F5DC; left: 1em;
display: block; top: -1em;
position: relative; height: 0em;
width: 13em; width: 13em;
font-size: 85%; margin: 0em -13em 0em 0em;
border: 0.5em solid #F5F5DC; }
}
.refcolumn {
.refcontent { background-color: #F5F5DC;
font-family: serif; display: block;
} position: relative;
width: 13em;
.tocset { font-size: 85%;
font-family: monospace; border: 0.5em solid #F5F5DC;
position: relative; }
float: left;
width: 12.5em; .refcontent {
margin-right: 2em; font-family: serif;
} }
.tocview { .tocset {
font-family: serif; font-family: monospace;
text-align: left; position: relative;
background-color: #F5F5DC; float: left;
} width: 12.5em;
margin-right: 2em;
.tocsub { }
font-family: serif;
margin-top: 1em; .tocview {
text-align: left; font-family: serif;
background-color: #DCF5F5; text-align: left;
} background-color: #F5F5DC;
}
.tocviewtitle {
font-size: 80%; .tocsub {
font-weight: bold; font-family: serif;
margin: 0.2em 0.2em 0.2em 0.2em; margin-top: 1em;
} text-align: left;
background-color: #DCF5F5;
.tocviewlist { }
margin: 0.2em 0.2em 0.2em 0.2em;
} .tocviewtitle {
font-size: 80%;
.tocviewlist td { font-weight: bold;
font-size: 80%; margin: 0.2em 0.2em 0.2em 0.2em;
vertical-align: top; }
}
.tocviewlist {
.tocviewlink { margin: 0.2em 0.2em 0.2em 0.2em;
text-decoration: none; }
}
.tocviewlist td {
.tocsublist { font-size: 80%;
margin: 0.2em 0.2em 0.2em 0.2em; vertical-align: top;
} }
.tocsublist td { .tocviewlink {
vertical-align: top; text-decoration: none;
padding-left: 1em; }
text-indent: -1em;
} .tocsublist {
margin: 0.2em 0.2em 0.2em 0.2em;
.tocsublinknumber { }
font-size: 80%;
} .tocsublist td {
vertical-align: top;
.tocsublink { padding-left: 1em;
text-decoration: none; text-indent: -1em;
} }
.tocsubseclink { .tocsublinknumber {
font-size: 80%; font-size: 80%;
text-decoration: none; }
}
.tocsublink {
.tocsubtitle { text-decoration: none;
font-size: 80%; }
font-style: italic;
margin: 0.2em 0.2em 0.2em 0.2em; .tocsubseclink {
} font-size: 80%;
text-decoration: none;
.leftindent { }
margin-left: 1em;
margin-right: 0em; .tocsubtitle {
} font-size: 80%;
font-style: italic;
.insetpara { margin: 0.2em 0.2em 0.2em 0.2em;
margin-left: 1em; }
margin-right: 1em;
} .leftindent {
margin-left: 1em;
.toclink { margin-right: 0em;
text-decoration: none; }
color: blue;
font-size: 85%; .insetpara {
} margin-left: 1em;
margin-right: 1em;
.toptoclink { }
text-decoration: none;
color: blue; .toclink {
font-weight: bold; text-decoration: none;
} color: blue;
font-size: 85%;
.inherited { }
width: 100%;
margin-top: 1em; .toptoclink {
text-align: left; text-decoration: none;
background-color: #ECF5F5; color: blue;
} font-weight: bold;
}
.inherited td {
padding-left: 1em; .inherited {
text-indent: -0.8em; width: 100%;
padding-right: 0.2em; margin-top: 1em;
} text-align: left;
background-color: #ECF5F5;
.inheritedlbl { }
font-style: italic;
font-size: 85%; .inherited td {
} padding-left: 1em;
text-indent: -0.8em;
.indexlink { padding-right: 0.2em;
text-decoration: none; }
}
.inheritedlbl {
.nobreak { font-style: italic;
white-space: nowrap; font-size: 85%;
} }
.stt { .indexlink {
font-family: monospace; text-decoration: none;
} }
.title { .nobreak {
font-size: 200%; white-space: nowrap;
font-weight: normal; }
margin-top: 2.8em;
text-align: center; .stt {
} font-family: monospace;
}
.partheading {
font-size: 100%; .title {
} font-size: 200%;
font-weight: normal;
.chapterheading { margin-top: 2.8em;
font-size: 100%; text-align: center;
} }
.beginsection { .partheading {
font-size: 110%; font-size: 100%;
} }
.tiny { .chapterheading {
font-size: 40%; font-size: 100%;
} }
.scriptsize { .beginsection {
font-size: 60%; font-size: 110%;
} }
.footnotesize { pre {
font-size: 75%; margin-left: 2em;
} }
.small { blockquote {
font-size: 90%; margin-left: 2em;
} }
.normalsize { ol {
font-size: 100%; list-style-type: decimal;
} }
.large { ol ol {
font-size: 120%; list-style-type: lower-alpha;
} }
.largecap { ol ol ol {
font-size: 150%; list-style-type: lower-roman;
} }
.largeup { ol ol ol ol {
font-size: 200%; list-style-type: upper-alpha;
} }
.huge { i {
font-size: 300%; font-family: serif;
} }
.hugecap { .boxed {
font-size: 350%; width: 100%;
} background-color: #E8E8FF;
}
pre {
margin-left: 2em; .together {
} width: 100%;
}
blockquote {
margin-left: 2em; .prototype td {
} vertical-align: top;
}
ol { .longprototype td {
list-style-type: decimal; vertical-align: bottom;
} }
ol ol { .schemeblock td {
list-style-type: lower-alpha; vertical-align: baseline;
} }
ol ol ol { .argcontract td {
list-style-type: lower-roman; vertical-align: top;
} }
ol ol ol ol { .centered {
list-style-type: upper-alpha; horiz-align: center;
} }
i { .verbatim em {
font-family: serif; font-family: serif;
} }
.boxed { .ghost {
width: 100%; color: white;
background-color: #E8E8FF; }
}
.scheme em {
.together { color: black;
width: 100%; font-family: serif;
} }
.prototype td { .highlighted {
vertical-align: top; background-color: #ddddff;
} }
.longprototype td {
vertical-align: bottom; .defmodule {
} width: 100%;
background-color: #F5F5DC;
.schemeblock td { }
vertical-align: baseline;
} .specgrammar {
float: right;
.argcontract td { }
vertical-align: top;
} .hspace {
font-family: monospace;
.centered { }
horiz-align: center;
} .inferencetop td {
border-bottom: 1px solid black;
.verbatim em { text-align: center;
font-family: serif; }
} .inferencebottom td {
text-align: center;
.ghost { }
color: white;
} .schemeinput {
color: brown;
.scheme em { background-color: #eeeeee;
color: black; font-family: monospace;
font-family: serif; }
}
.schemeinputbg {
.highlighted { background-color: #eeeeee;
background-color: #ddddff; }
}
.schemereader {
.defmodule { font-family: monospace;
width: 100%; }
background-color: #F5F5DC;
} .schemeparen {
color: #843c24;
.specgrammar { font-family: monospace;
float: right; }
}
.schememeta {
.hspace { color: #262680;
font-family: monospace; font-family: monospace;
} }
.small { .schememod {
font-size: 80%; color: black;
} font-family: monospace;
}
.inferencetop td {
border-bottom: 1px solid black; .schemeopt {
text-align: center; color: black;
} }
.inferencebottom td {
text-align: center; .schemekeyword {
} color: black;
font-weight: bold;
.schemeinput { font-family: monospace;
color: brown; }
background-color: #eeeeee;
font-family: monospace; .schemeerror {
} color: red;
font-style: italic;
.schemeinputbg { }
background-color: #eeeeee;
} .schemevariable {
color: #262680;
.schemereader { font-style: italic;
font-family: monospace; font-family: monospace;
} }
.schemeparen { .schemesymbol {
color: #843c24; color: #262680;
font-family: monospace; font-family: monospace;
} }
.schememeta { .schemevaluelink {
color: #262680; text-decoration: none;
font-family: monospace; color: blue;
} }
.schememod { .schememodlink {
color: black; text-decoration: none;
font-family: monospace; color: blue;
} }
.schemeopt { .schemesyntaxlink {
color: black; text-decoration: none;
} color: black;
font-weight: bold;
.schemekeyword { }
color: black;
font-weight: bold; .badlink {
font-family: monospace; text-decoration: underline;
} color: red;
}
.schemeerror {
color: red; .plainlink {
font-style: italic; text-decoration: none;
} color: blue;
}
.schemevariable {
color: #262680; .techlink {
font-style: italic; text-decoration: none;
font-family: monospace; color: black;
} }
.schemesymbol { .techlink:hover {
color: #262680; text-decoration: underline;
font-family: monospace; color: blue;
} }
.schemevaluelink { .schemeresult {
text-decoration: none; color: #0000af;
color: blue; font-family: monospace;
} }
.schememodlink { .schemestdout {
text-decoration: none; color: #960096;
color: blue; font-family: monospace;
} }
.schemesyntaxlink { .schemecomment {
text-decoration: none; color: #c2741f;
color: black; font-family: monospace;
font-weight: bold; }
}
.schemevalue {
.badlink { color: #228b22;
text-decoration: underline; font-family: monospace;
color: red; }
}
.bibliography td {
.plainlink { vertical-align: top;
text-decoration: none; }
color: blue;
} .imageleft {
float: left;
.techlink { margin-right: 0.3em;
text-decoration: none; }
color: black;
} .nonavigation {
.techlink:hover { color: #EEEEEE;
text-decoration: underline; }
color: blue;
} .mywbr {
width: 0;
.schemeresult { font-size: 1px;
color: #0000af; }
font-family: monospace;
}
.schemestdout {
color: #960096;
font-family: monospace;
}
.schemecomment {
color: #c2741f;
font-family: monospace;
}
.schemevalue {
color: #228b22;
font-family: monospace;
}
.bibliography td {
vertical-align: top;
}
.imageleft {
float: left;
margin-right: 0.3em;
}
.nonavigation {
color: #EEEEEE;
}
.disable {
/* color: #e5e5e5; */
color: gray;
}
.smallcaps {
font-size: 75%;
}
.smallprint {
color: gray;
font-size: 75%;
text-align: right;
}
.footnoterule {
text-align: left;
width: 40%;
}
.colophon {
color: gray;
font-size: 80%;
font-style: italic;
text-align: right;
}
.colophon a {
color: gray;
}
.mywbr {
width: 0;
font-size: 1px;
}