This repository contains the ODD source files for Best Practices for TEI in Libraries: A guide for mass digitization, automated workflows, and promotion of interoperability with XML using the TEI.
The derived documentation and schemas from these source ODD files may be available on Syd’s temporary build page. Note that all builds until beta testing are version “4.0.0a” (and we expect the beta test versions will all be “4.0.0b” :-), so that page is just a landing page that forwards you to the latest build directory, using the timestamp as part of the directory name so you can tell which version you are reading.
If they are not available there, or if you are looking for different derived output, you can build the outputs yourself. See “Building” below.
To check out a copy of this repository to your local system use:
git clone https://github.com/kshawkin/Best-Practices-for-TEI-in-Libraries.git
You can look at, play with, and even modify the files to your heart’s content. If you like to submit your changes to the editors for inclusion, issue a pull request. (I.e., surf over to the pull URL and click on “New pull request”.)
If you’d like to submit a bug report or feature request, use the GitHub issue tracker.
The main method for generating
- HTML documentation for the entire system
- An HTML documentation file for each level
- A RELAX NG closed schema for each level
- A Schematron open schema for each level
is to create a clone of the repository on a GNU/Linux system,
switch to the Best-Practices-for-TEI-in-Libraries/BestPractices/
directory, and then use the bptl-build-script.bash
command.
That command is not written to be particularly friendly like a
typical Debian package, or even like the typical ./configure ; make ; make install
. If there is sufficient demand we can put time into
doing that, but for the moment it seems human resources could be spent
better elsewhere.
SO, the bptl-build-script.bash
command is not the easiest thing in
the world to use. It needs to know where to find a variety of
resources including:
- A local copy of the TEI Stylesheets
- A local copy of the source to TEI P5 (but you won’t find it in that repository, it has to be built from the source in that repository)
- A local copy of the RELAX NG schema for RELAX NG (there is a copy in the TEI P5 directory, above)
- The
jing
command JAR file
It takes a wild stab at where these might be, but is more often wrong than right. So to use the command, you need to supply the proper locations of these things. This is done by setting a shell variable immediately prior to command invocation. E.g.
XSLDIR=/home/syd/Documents/Stylesheets P5SRC=../TEIC_TEI/P5/p5subset.xml bptl-build-script.bash
sets the $XSLDIR and $P5SRC environment variables before calling the
command. The command takes a special switch, -p
(for “print paths”)
which just writes out a commandline with all environment variables set
to their defaults. So a typical way to use this command is to:
- Just issue it at the commandline, cross your fingers, and hope it works.
- If not, issue the command again with the
-p
switch. - Copy the output of the above step to the commandline, and change the paths as needed.
Note that
- The $P5SRC variable should be a complete path to the p5subset.xml or p5.xml file, not to a directory
- If $P5SRC is not set, the command will download a copy of P5 from the web (12 times, so this is pretty inefficient)
- Any of these resources (except the
jing
JAR file) may be specified as a URL; however, this has not been very well tested
The -h
switch will give you 1-line help, the -H
switch long-winded
help, and the -d
switch will generate lots of debugging code.
There are a variety of other ways to generate schemas from the ODD which may work for you. (And remember to generate both ISO Schematron and RELAX NG; or, if for some reason you can’t use RELAX NG you can also generate DTDs or W3C XML Schema).
- Submit the ODD files the TEI Roma website
- Install
roma
[1] on your machine[2] issue something likeroma2 --patternprefix=lib3_ --noxsd --dochtml --nodtd --isoschematron lib3.odd .
- In oXygen, use the TEI ODD transformation scenarios.
To generate the main HTML documentation for the entire system, use something like
xmllint --xinclude main-driver.odd > /tmp/main-driver.odd
~/Documents/Stylesheets/teitohtml /tmp/main-driver.odd
If teitohtml
does not run on your system, you could submit the /tmp/main-driver.odd file to OxGarage instead.
[1] See page in the TEI wiki; this is the program that combines customization ODDs with the TEI Guidelines and produces schemas and reference documentation.
[2] If you don’t already have roma
on your Mac OS X system, you may find these unofficial instructions useful. They likely work on a GNU/Linux system, too.