Category:P4toP5

From TEIWiki
Revision as of 16:47, 19 June 2006 by James (talk | contribs)
Jump to navigation Jump to search


Stylesheets in this subcategory should handle a particular aspect of P4 to P5 translation. That is, the stylesheet should expect to read in an XML instance that conforms to a P4:2004 vanilla DTD, and write out the same document with one particular aspect changed so that it (the particular aspect) would conform to P5. (Which release, you ask? Whichever one is current at the time you write the stylesheet will have to do — but please document the release number in your stylesheet.)

The idea is not to build a single, monolithic stylesheet that converts P4 to P5, but rather to build a long pipeline of smaller transformations that will do the job. This makes division of labor easier, makes debugging much easier, and permits multiple possibilities for a given task (e.g., one person might write a stylesheet that converts lang= to xml:lang=, and just deletes all <language> elements; another might write a similar stylesheet that retains <language> elements).

Because all of these stylesheets need to copy all elements that they are not dealing with, you should include a <xsl:import href="Copy-All.xsl"/> at the beginning of your stylesheets as the others below do. If you are going to use any of the stylesheets, then you should also download that one.

(For one method of executing a sequence of stylesheets one after the other, see PipedStylesheets.bash.)

There is no need to put "P4toP5" or anything like that in the name of your stylesheet — that much is implied by its being on this page!

To make your stylesheet appear in this sub-section simply include at the top of the page:

 [[Category:P4toP5]]

If your stylesheet is also of use to those doing something other than just P4 to P5 conversion, you might also want to include:

 [[Category:XSLT]]