[Bf-docboard] Converting DocBook to HTML/PDF/...

Stefano Selleri bf-docboard@blender.org
Wed, 29 Jan 2003 09:02:11 +0100


This is a multi-part message in MIME format.

------=_NextPart_000_001B_01C2C775.1BD57430
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

> Looking at the makefile in CVS the conversion is done with various
> docbook2* commands.
> I just get tons of errors.

Karsten, I'm getting TONS of error too,

here I attach my Makefile. only html conversion work...

B@rt... I think we can upload this makefile too, if it works for someone
else than me...

Stefano

------=_NextPart_000_001B_01C2C775.1BD57430
Content-Type: application/octet-stream;
	name="Makefile"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
	filename="Makefile"

###############################################=0A=
# Blender Documentation Project Makefile      #=0A=
###############################################=0A=
# V. 0.0.1 08-01-2003 S68                     #=0A=
# Targets: html, pdf                          #=0A=
###############################################=0A=
JADE	=3D jade=0A=
FLAGS 	=3D -t sgml =0A=
# Modify the following to match your DocBook Install=0A=
DSL     =3D -d /usr/share/sgml/docbook/dsssl-stylesheets/html/docbook.dsl=0A=
DCL 	=3D /usr/share/sgml/openjade-1.3.1/pubtext/xml.dcl=0A=
#=0A=
Source =3D BlenderManual.xml=0A=
=0A=
all:=0A=
=0A=
pdf:=0A=
	$(JADE) -t rtf  $(DSL) $(DCL) $(Source)=0A=
=0A=
=0A=
html:	$(Source)=0A=
	$(JADE) $(FLAGS) -i html -o html $(DSL) $(DCL) $(Source)=0A=
	mv *.htm html=0A=
	tar -cvf BlenderManual.html.tar html=0A=
	gzip BlenderManual.html=0A=

------=_NextPart_000_001B_01C2C775.1BD57430--