mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-13 10:06:33 +01:00
and consistant aswell as a configuration file. When I converted the manual to docbook I was using an old version that I'd modified to insert tabs rather than spaces so using it on the existing documentation will appear to reformat the whole file. I don't think that matters at this stage and I'm tempted to reformat everything now while it isn't an issue. Rewrote the Makefile that builds the docs so that: - building the html only depends on having xsltproc installed. - the xsl and xml files aren't copied to the build directory. - make test does not remove an existing build of the docs. Changed the glossary so that the acronym/abbreviations are the glossary terms, which I've discovered is how it is generally done. It makes total sense now that I actually think about it because you need to find the terms based on their use in the manual. Added a bit of xsl to add the status attribute as a class attribute in the html so that the css can use a draft watermark(or any other watermark). DocBook supports the draft status without the xsl but it has problems, which I've described in the xsl file. Minor tweak to the css to make the glossary terms and any other definition lists bold(that includes the index). git-svn-id: svn://localhost/ardour2/trunk@1457 d708f5d6-7413-0410-9779-e7cbd77b26cf |
||
|---|---|---|
| .. | ||
| BUGS | ||
| ChangeLog | ||
| INSTALL | ||
| LICENSE | ||
| README | ||
| xmlformat-ardour.conf | ||
| xmlformat.pl | ||
xmlformat - an XML document formatter Paul DuBois paul@kitebird.com This is the distribution for xmlformat 1.04. If you find bugs, please let me know. The current version of xmlformat is always available at: http://www.kitebird.com/software/ xmlformat is free software, distributed under a BSD-style license. For specific licensing information, see the LICENSE file. For installation instructions, see the INSTALL file. xmlformat has two implementations, one in Ruby and one in Perl. They should produce identical output in all cases. Documentation is in the docs subdirectory. Tests are in the tests directory, though you run them in the main xmlformat directory: - To run all tests: make test - To run all tests for the Ruby version: ./runtest all - To run all tests for the Perl version: ./runtest -p all - To run an individual test for the Ruby version: ./runtest testname - To run an individual test for the Perl version: ./runtest -p testname A test name is the name of its .xml file, minus the .xml suffix. For more information, see tests/Notes.