diff options
author | Stefan Rotsch <ritschie@cvs.gnome.org> | 2004-03-28 18:55:03 +0800 |
---|---|---|
committer | Stefan Rotsch <ritschie@src.gnome.org> | 2004-03-28 18:55:03 +0800 |
commit | 9fbeeb11841b48f0cbecac27631951a2f2f7cc61 (patch) | |
tree | 3263a8f333f3e732092003dc82549ba91d1bf55d /doc/plan/README | |
parent | d207cb82f1d61dc09701945bcbca26f07dfb76a3 (diff) | |
download | gsoc2013-epiphany-9fbeeb11841b48f0cbecac27631951a2f2f7cc61.tar gsoc2013-epiphany-9fbeeb11841b48f0cbecac27631951a2f2f7cc61.tar.gz gsoc2013-epiphany-9fbeeb11841b48f0cbecac27631951a2f2f7cc61.tar.bz2 gsoc2013-epiphany-9fbeeb11841b48f0cbecac27631951a2f2f7cc61.tar.lz gsoc2013-epiphany-9fbeeb11841b48f0cbecac27631951a2f2f7cc61.tar.xz gsoc2013-epiphany-9fbeeb11841b48f0cbecac27631951a2f2f7cc61.tar.zst gsoc2013-epiphany-9fbeeb11841b48f0cbecac27631951a2f2f7cc61.zip |
moved to doc/plan/plan.xml Makefile for transforming plan.xml to html
2004-03-28 Stefan Rotsch <ritschie@cvs.gnome.org>
* doc/plan.xml: moved to doc/plan/plan.xml
* doc/plan/Makefile: Makefile for transforming plan.xml to html
using xsltproc and xmllint
* doc/plan/README: README containing some plan-related information
* doc/plan/ephyplan.dtd: DTD describing plan.xml's content
* doc/plan/plan.xml: formerly located at doc/plan.xml
* doc/plan/plan2table.xsl: XSLT stylesheet for plan.xml
Diffstat (limited to 'doc/plan/README')
-rw-r--r-- | doc/plan/README | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/plan/README b/doc/plan/README new file mode 100644 index 000000000..c5a3d00ae --- /dev/null +++ b/doc/plan/README @@ -0,0 +1,36 @@ +Epiphany Plan README + + +ITEM STATUS INFORMATION +======================= + +Each <item> needs to have a status assigned; possible values are: + + orphan + pending + delayed + designed + implementing + completed + + +HTML TRANSFORMATION +=================== + +The XSLT stylesheet shipped with the plan, plan2table.xsl, will +transform the plan's XML into a nice HTML table by using: + + xsltproc -o plan.html plan2table.xsl plan.xml + + +VALIDATION +========== + +There's a DTD associated with the Epiphany plan, ephyplan.dtd. +To prevent typos, you could validate the plan before commiting changes +to CVS by using: + + xmllint --noout --valid plan.xml + +You could also simply run "make" in this directory, which will +validate the xml input file first, and then transform it to html. |