mirror of
https://github.com/johnkerl/miller.git
synced 2026-08-04 21:43:38 +00:00
Make HTML pages PDF-renderable
This commit is contained in:
parent
af147f2eb5
commit
e54c4d8229
19 changed files with 685 additions and 22 deletions
|
|
@ -36,14 +36,15 @@ TOP OF LIST
|
|||
o docs:
|
||||
- manpage is now autogenned
|
||||
- precedence & semantics docs
|
||||
- HTML pages are now PDF-renderable
|
||||
|
||||
* full-int64 I/O & math:
|
||||
o visually check all precedence stackings (horiz/vert) in the grammars
|
||||
against the operator prec/assoc table
|
||||
o dsls bake deps
|
||||
* visually check all precedence stackings (horiz/vert) in the grammars
|
||||
against the operator prec/assoc table
|
||||
* dsls bake deps
|
||||
|
||||
----------------------------------------------------------------
|
||||
* etc feature:
|
||||
-> or maybe just cookbook entry ... and/or xref to estdonetime
|
||||
- in1 optional: t (epoch seconds); default systime()
|
||||
- in2: nleft
|
||||
- in3 optional: target #/field name
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Compiling, portability, dependencies, and testing </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Contact information </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll;
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Data examples </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Why call it Miller? </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
41
doc/faq.html
41
doc/faq.html
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> FAQ </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Miller features in the context of the Unix toolkit </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> File formats </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> About Miller </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Internationalization </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> How original is Miller? </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Performance </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Record-heterogeneity </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Reference </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Documents by release </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -68,7 +68,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> POKI_PUT_TITLE_HERE </titleinbody> </center>
|
||||
<p/>
|
||||
POKI_PUT_BODY_HERE
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Things to do </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,46 @@ Miller commands were run with pretty-print-tabular output format.
|
|||
|
||||
<!-- page body -->
|
||||
<td>
|
||||
<div style="overflow-y:scroll;height:1500px">
|
||||
<!--
|
||||
This is a visually gorgeous feature (here & in the CSS): it allows for
|
||||
independent scroll of the nav and body panels. In particular the nav
|
||||
stays on-screen as you scroll the body.
|
||||
|
||||
However, two problems:
|
||||
|
||||
(1) In Firefox & Chrome both I get janky end-of-body scrolls: there is
|
||||
more content but I can't scroll down to it unless I repeatedly retry the
|
||||
scrolldown. Which is weird.
|
||||
|
||||
(2) Worse, only the first page renders in PDF (again, Firefox & Chrome).
|
||||
|
||||
For now I'm disabling this separate-scroll feature. A frontender, I am
|
||||
not ... maybe someday I'll find a config which gets *all* the features
|
||||
I want; for now, it's a tradeoff.
|
||||
-->
|
||||
|
||||
<!-- Implementation details: one bit is right here:
|
||||
|
||||
div style="overflow-y:scroll;height:1500px"
|
||||
|
||||
and the other bit is in css/poki-callbacks.css:
|
||||
|
||||
.pokinav {
|
||||
display: inline-block;
|
||||
background: #e8d9bc;
|
||||
border: 1;
|
||||
box-shadow: 0px 0px 3px 3px #C9C9C9;
|
||||
margin: 10px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
overflow-y: scroll; < - - - - - - here
|
||||
height: 1500px;
|
||||
}
|
||||
|
||||
-->
|
||||
<div>
|
||||
<center> <titleinbody> Why C? </titleinbody> </center>
|
||||
<p/>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue