<- -c- ->

a 2013 test suite
for project gutenberg

a document which contains the
full range of features found
in project gutenberg e-texts

by bowerbird intelligentleman

greetings, earthling...

this is a test suite created for
e-texts from project gutenberg,
a 40-year-old volunteer effort to
put public-domain literature online.

please go visit their web-site for
the latest news and information on
usage conditions for their e-texts,
volunteering for them, and more...

http://gutenberg.org

you can "view source" for this document here:

http://zenmagiclove.com/zml/analyze.zml

  ^^     -x-     ->  





    <-     -c-     ->  

table of contents

a 2013 test suite for project gutenberg
table of contents
dedication
chapter 1 -- welcome aboard
chapter 2 -- the sections of the book
chapter 3 -- text "styling"
chapter 4 -- plain ascii versus unicode
chapter 5 -- poetry and other silly things
chapter 6 -- tables in your e-texts
chapter 7 -- centered text
chapter 8 -- pictures in your book
chapter 9 -- footnotes and endnotes
chapter 10 -- hotlinks in your e-texts
chapter 11 -- hyphens and dashes
chapter 12 -- hyphenation stinks
chapter 13 -- unlucky number 13
chapter 14 -- two spaces after a sentence
chapter 15 -- multi-purpose block-quotes
chapter 16 -- the play is the thing
chapter 17 -- epigraphs and epitaphs
chapter 18 -- lists in your book
a subsection of chapter 18
another subsection of chapter 18
chapter 19 -- the meta-data chapter
chapter 20 -- zen markup language
chapter 21 -- the end
the notes section
meta-data for this book

  ^^     -x-     ->  





    <-     -c-     ->  

dedication

to michael hart

for his bold vision
and his persistence

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 1

welcome aboard

welcome!

this is a document intended to demonstrate the range of features common throughout the e-texts in the project gutenberg library, and indeed to the majority of printed books.

project gutenberg is a volunteer effort for digitizing the text of public-domain books, for viewing and distribution in cyberspace.

http://gutenberg.org

it was begun by michael hart back in 1971, with the goal of creating 10,000 e-texts, a milestone achieved in 2003, thanks to a big boost from distributed proofreaders, which allows people to proofread online -- thousands of them doing a page at a time, volunteering bits and pieces of their time.

http://pgdp.net

if you want to support the p.g. library with software, a markup system, or so on, you should be able to handle its features, and you can use this file as a "test suite" to verify that your system is fully capable.

this document should be self-explanatory. tabs have been substituted with "~tab~", so that they will become visible to you, so they could be changed back for your testing. other than that, no changes should be needed.

this is the test of a link in the middle of a normal paragraph, to http://pgdp.net, to see if it works correctly...

if you find inconsistencies in this test suite, do please let me know immediately. thank you.

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 2

the sections of the book

first, you should be able to handle headings of different levels, such as the book, chapters, and subsections.

you may label the levels as you like.

html can support 6 different levels, so that's a good number to shoot for.

one of the things that users find handy is a table of contents for the e-book, so you must be capable of generating one, in cases where an e-text doesn't have one.

because of their experience with the web, people often expect this table of contents to be hotlinked to the appropriate sections, so your markup system should facilitate that. a nice touch is then to have chapter headings then link back to the table of contents...

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 3

text "styling"

project gutenberg was born a very long time ago, before word-processors and personal computers... a rumor is that michael used a keypunch machine (it's ok if you're too young to know what that is) to enter a good number of the original e-texts...

computers didn't even have lowercase characters in the early days, so the whole book was capitalized! luckily, before long we got lowercase characters.

but still, "luxuries" like italicized and *bold* text were not possible, so michael developed a convention where a word that was *bold* or italics in the original was entered in all-uppercase, to show that emphasis.

because the e-texts are stored as raw ascii text, that convention lives on, to this day, in some files. by this time, however, we need to be able to handle styled text, so your systems must be able to do so.

ho-hum, i guess i'm going to have to finally put it the capacity to mark `code,` or someone will raise a stink about it, and act like the absence of it is something that `negates` everything else.

`
`this is a line of code.`
`here is another.`
`var varx = "x" ;`
`if ( varx == "x" ) : varx = "y" ;`
`i hope you're happy now.`

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 4

plain ascii versus unicode

most english e-texts in the library can be represented in the lower-ascii characters, but future e-texts are likely to require some unicode characters, so you should without question be able to handle unicode.

one space at the start of a line. (centered)

two spaces at the start of a line. (left)

three spaces at the start of a line. (centered)

four spaces at the start of a line. (right)

     five spaces at the start of a line. (25%)
      six spaces at the start of a line. (30%)
       seven spaces at the start of a line. (35%)
        eight spaces at the start of a line. (40%)
         nine spaces at the start of a line. (45%)
          ten spaces at the start of a line. (50%)

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 5

poetry and other silly things

many of the e-texts contain *poetry,* or verse of some type, so your system must be able to handle silliness like that.

some poems want to be left-justified, so you should be able to handle that:

               a haiku for you
               (by bowerbird intelligentleman)
               haiku have three lines
               and seventeen syllables
               five, seven, and five

other poems want to be centered instead:

t.v. will eat you
(by bowerbird intelligentleman)

t.v. will eat you
out of a satellite dish
with a tuning fork

and some poems want to alternate...

      six spaces at the start of this line
            12 spaces at the start of this line
      six spaces at the start of this line
            12 spaces at the start of this line
      six spaces at the start of this line
            12 spaces at the start of this line
      six spaces at the start of this line
            12 spaces at the start of this line

and some poems want to get fweaky!

      six spaces at the start of this line
          ten spaces at the start of this line
              14 spaces at the start of this line
                  18 spaces at the start of this line
                      22 spaces at the start of this line
                          26 spaces at the start of this line
                      22 spaces at the start of this line
                  18 spaces at the start of this line
              14 spaces at the start of this line
          ten spaces at the start of this line
      six spaces at the start of this line

in general, lines of a poem prefer to stay together, that is, to be kept all on a page whenever possible, so your system should attempt to accomplish that...

if it's not possible to keep the whole poem on a page, try to make the page-break occur between the verses...

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 6

tables in your e-texts

there aren't a whole lot of tables in the e-texts -- we're talking literature, not spreadsheets -- but your system should handle tables anyway; not really big and hairy ones, just simple ones.

 |  table 1           column 1         column 2
 |  plain-text          yes              yes
 |  x.m.l.              no               yes
 |  html                yes              no
 |  .rtf                no               yes
 |  .pdf                no               no

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 7

centered text

~tab~~tab~ center me please! ~tab~~tab~

sometimes, for one reason or another, some of an e-text's lines are centered. so your system should be able to do that.

~tab~~tab~ center me as well, please! ~tab~~tab~

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 8

pictures in your book

most of the p.g. e-texts are text-only. but some of them do have pictures, so your system must be able to show 'em.

graphic

http://z-m-l.com/go/alice/checking_watch.png

put a picture here, or maybe a button that someone could click in order to view that picture...

graphic

http://z-m-l.com/go/alice/cat_fades.png

"what is the use of a book," thought alice, "without pictures or conversation?"

graphic

http://z-m-l.com/go/alice/alice_cramped.png

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 9

footnotes and endnotes

some of the e-texts have footnotes.[1]

your system must be able to handle them. how it might do that is up to you, captain.

graphic

http://z-m-l.com/go/alice/alice_holding.png

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 10

hotlinks in your e-texts

remember how, in chapter 2, we said that the table of contents should be hot-linked to the appropriate spots?

that is one type of link you'll need. there are several other types as well.

your system should also be able to make the jump to an internet site. most of the e-texts are quite old, so of course it's not like they have a bunch of internet url's in them; but every e-text will indeed contain a link to project gutenberg's website, so you must be able to execute links...

quite often there are places in an e-text that reference other parts of the e-text. in these cases, it's nice to have a hotlink close to (or on) that reference point that transports the reader directly to the place that is being referenced; it is convenient. your system should facilitate such linking, preferably making it happen automatically.

for instance, the beginning of this chapter has a reference to chapter 2. if a reader clicked on those words -- "chapter 2" -- they should automatically go to chapter 2.

(and likewise with each of the references to "chapter 2" here in this paragraph too.)

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 11

hyphens and dashes

i use a hyphen between "e" and "text" in "e-text". not everyone does, but i think that it looks nicer.

a hyphen -- as you know -- differs from a dash. and you probably know that there are even two (and some people say more!) types of dashes...

the first - called an "en-dash" - is a narrow one. you will see these in a fair number of the e-texts. it's called an "en" dash because it was traditionally defined as being exactly as wide as the letter "n". (or, some say, as wide as a letter "n" is high, so you can take your pick between those choices.)

the second -- called an "em-dash" -- is wider, and yes, it's called that because it's as wide as an "m", or so the story goes, according to some people...

generally, try to use an em-dash, not an en-dash... the en-dash looks too much like a hyphen, especially when it is run into the words that are surrounding it.

now, the convention says that you should not have spaces on the sides of a dash. the convention is wrong. it looks much nicer if you put spaces around a dash.

perhaps even more importantly, the search capability of many programs is thrown off if you don't use spaces.

so are the re-margination routines in many programs, so -- to avoid these problems -- put spaces around dashes.

a problem arises, though, because there is no em-dash in the lower-ascii codes. so you have to use a double-dash -- like these here -- for an em-dash. ok, problem solved. your system should be able to convert the double-dash into a proper em-dash, if the user chooses that option.

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 12

hyphenation stinks

hyphenation is another thing that messes up e-book search capabilities. e-books don't need hyphenation. so turn hyphenation off when you make an e-book.

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 13

unlucky number 13

there is no 13th floor in most buildings.

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 14

two spaces after a sentence

back in the old typewriter days, students were instructed to put two spaces after each sentence.

ever since wordprocessing, though, some people have said two spaces are no longer required, that it is an unnecessary leftover from earlier times.

those people were wrong. if you have one space after a period, sentences run together too much.

but...

the thing is, it's actually a lot easier to edit text if you only have one space after a period... that way, you can do a search for two spaces, and that search should come up totally empty.

thus, to make life easier on the writers out there, your software should create the smidgen of space necessary to separate two sentences sufficiently.

so, if you're making an e-book, use just one space.

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 15

multi-purpose block-quotes

sometimes you want to quote a whole block of stuff from someone. this is often called a "block-quote". clever, the guy who came up with that name...

many of the project gutenberg e-texts contain block-quotes of one various type or another.

here's an example of a block-quote, a letter.

~tab~dear leslie,
~tab~
~tab~how are you? i am fine.
~tab~the weather is nice here.
~tab~but i wish it was half
~tab~as beautiful as you are.
~tab~
~tab~and i wish you were here.
~tab~
~tab~love,
~tab~bowerbird

typically, block-quotes are indented on both the left and right sides.

here's another block-quote, from a speech.

our score and seven years ago, our forefathers set forth upon this continent a new nation, conceived in liberty and dedicated to the proposition that all men[2] are created equal.

there are a number of different situations throughout the e-texts that might call for this type of indentation. for now, we will just subsume them all under "block-quote"; perhaps later we will see fit to break out a more finely-grained analysis, if we find any special cases merit their own class.

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 16

the play is the thing

there are plays in the library. gotta be able to handle plays.

dale:~tab~ that's not what p.g. is all about.

bowerbird:~tab~ i think it's important to give people a good e-book experience.

dale:~tab~ that's your opinion.

bowerbird:~tab~ yes it is.

steve:~tab~ (weakly) i can't...

dale:~tab~ no it isn't.

steve:~tab~ (weakly) get a...

bowerbird:~tab~ is too.

steve:~tab~ (weakly) word in edgewise...

dale:~tab~ is not.

lurkers:~tab~ will you two cut it out?

bowerbird:~tab~ is so.

dale:~tab~ is not...

fade to black.[3]

gotta be able to handle plays. dialog, instructions to actors, stage directions, that kind of stuff...

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 17

epigraphs and epitaphs

~tab~~tab~~tab~ there's an old proverb ~tab~
~tab~~tab~~tab~ that says just about ~tab~
~tab~~tab~~tab~ whatever you want it to... ~tab~
~tab~~tab~~tab~ -- slashdot ~tab~

sometimes a chapter starts with a nice pithy quote, which is usually italicized, and often right-justified.

so you wanna be able to handle that kind of thing.[4]

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 18

lists in your book

i like lists. here's a list:

gotta be able to handle lists...

  ^^     -x-     ->  





    <-     -c-     ->  

a subsection of chapter 18

sometimes you want a numbered list...

here's an example of a numbered list, with the number specifically included.

here's another numbered list, again with the number specifically included, where we mix things up a bit...

here's another numbered list, except this time it's an "ordered list", which means the browser provides numbering...

still gotta be able to handle lists...

  ^^     -x-     ->  





    <-     -c-     ->  

another subsection of chapter 18

here's another example of a list:

like poems, items in a list generally want to stick together on the same page, if possible.

still gotta be able to handle lists...

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 19

the meta-data chapter

a lot of people think "meta-data" is important. i think they're full of poop, but why not make 'em happy?

so give them their own section -- call it the "meta-data section" -- and then let them put whatever makes 'em happy into that section.

you will find the meta-data section toward the very end of this document, where it belongs, after the "real" data.

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 20

zen markup language

this test suite document is a demonstration of z.m.l. -- "zen markup language" -- a system by which a set of simple formatting rules can take the place of complicated markup languages.

this document is "marked up" in z.m.l. and will spring to life when displayed by a z.m.l.-viewer.

furthermore, a z.m.l.-viewer can perform all of the tasks necessary to implement the features that this test suite represents: the hot-linking, the styling, different layouts, tables, pictures, formatting for plays, the lists, the whole thing, without the difficulty of heavy markup languages.

  ^^     -x-     ->  





    <-     -c-     ->  

chapter 21

the end

we hope you've enjoyed this test suite document. if you have any questions, feel free to ask them.

this is a draft, so please suggest improvements. and if you want to make your own test suite, do!

sadly, michael hart passed away in 2011, so he is no longer with us. he's up in heaven now, where there are no typos, and every book is available...

but after he attained his 10,000 e-texts goal, michael got a new goal -- a *million* e-texts!

maybe you can serve michael's memory, and say "thanks", by helping to reach his new goal? :+)

~tab~~tab~http://gutenberg.org~tab~~tab~

*have* *a* *nice* *day.*

the end.

  ^^     -x-     ->  





    <-     -c-     ->  

the notes section

[1] personally, i don't think we need to make a distinction between footnotes and endnotes any more, i believe that all the types of notes should be stored at the end of the file, like these notes, but i think the person should be able to display them at the point of reference in the actual body of the text. therefore, they are actually a sort of hybrid between footnotes and endnotes, combining the strengths and convenience of both types.

[2] in later years, it was made clear that lincoln was referring to all "people", and not just men, that women are equally equal.

[3] this is a test footnote. because of that, it's going to go on and on and on. this is a test footnote. because of that, it's going to go on and on and on. this is a test footnote. because of that, it's going to go on and on and on. this is a test footnote. because of that, it's going to go on and on and on. this is a test footnote. because of that, it's going to go on and on and on.

look, it even has a second paragraph! this is a test footnote. because of that, it's going to go on and on and on. this is a test footnote. because of that, it's going to go on and on and on. this is a test footnote. because of that, it's going to go on and on and on.boogi pfc

oh no! a third paragraph. way too long! this is a test footnote. because of that, it's going to go on and on and on. this is a test footnote. because of that, it's going to go on and on and on. this is a test footnote. because of that, it's going to go on and on and on. this is a test footnote. because of that, it's going to go on and on and on. this is a test footnote. because of that, it's going to go on and on and on.boogi pfc

[4] this is another test footnote. but it will be short.

  ^^     -x-     ->  





    <-     -c-     ->  

meta-data for this book

here's the meta-data...

http://gutenberg.org

here's a test of some of the formatting commands.

~tab~left-justified~tab~~tab~~tab~

~tab~~tab~centered~tab~~tab~

~tab~~tab~~tab~right-justified~tab~

~tab~left-justified~tab~centered~tab~~tab~

~tab~~tab~centered~tab~right-justified~tab~

~tab~left~tab~centered~tab~right-justified~tab~

~tab~this just has one tab...

.

all of them in one paragraph:
http://google.com
http://zenmagiclove.com/test-suite-2013.zml
http://pgdp.net
http://gutenberg.org

.

http://google.com

http://zenmagiclove.com/test-suite-2013.zml

http://pgdp.net

http://gutenberg.org

graphic

http://z-m-l.com/go/alice/checking_watch.png

graphic

http://z-m-l.com/go/alice/cat_fades.png

graphic

http://z-m-l.com/go/alice/alice_cramped.png

graphic

http://z-m-l.com/go/alice/alice_holding.png

goodbye!

graphic

http://z-m-l.com/go/alice/checking_watch.png

graphic

http://z-m-l.com/go/alice/cat_fades.png

graphic

http://z-m-l.com/go/alice/alice_cramped.png

graphic

http://z-m-l.com/go/alice/checking_watch.png

graphic

http://z-m-l.com/go/alice/cat_fades.png

graphic

http://z-m-l.com/go/alice/alice_cramped.png

graphic

http://z-m-l.com/go/alice/checking_watch.png

graphic

http://z-m-l.com/go/alice/cat_fades.png

graphic

http://z-m-l.com/go/alice/alice_cramped.png

graphic

http://z-m-l.com/go/alice/checking_watch.png

graphic

http://z-m-l.com/go/alice/cat_fades.png

graphic

http://z-m-l.com/go/alice/alice_cramped.png