2007-02-22 Alex Roitman <shura@gramps-project.org>
* output/Makefile.am: Write rule for manual website creation. svn: r8215
This commit is contained in:
parent
59c2affe2d
commit
c0e88026fc
@ -1,3 +1,6 @@
|
||||
2007-02-22 Alex Roitman <shura@gramps-project.org>
|
||||
* output/Makefile.am: Write rule for manual website creation.
|
||||
|
||||
2007-02-16 Alex Roitman <shura@gramps-project.org>
|
||||
* help/nl: Add svn:ignore property.
|
||||
* various: Add stuff for generating html and pdf output.
|
||||
|
@ -1,8 +1,43 @@
|
||||
# This is the help/output level Makefile for gramps
|
||||
# $Id$
|
||||
|
||||
BRANCH = 2.2
|
||||
HELP_LINGUAS = C fr nb sk nl
|
||||
|
||||
# admon images to copy
|
||||
ADMON_IMAGES = note.png tip.png warning.png
|
||||
|
||||
# Docbook stuff
|
||||
chunkxsl = /usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl
|
||||
admonimgdir = /usr/share/xml/docbook/stylesheet/nwalsh/images/
|
||||
|
||||
html:
|
||||
echo "This is a placeholder for making HTML"
|
||||
rm -rf gramps-manual # Clean up the output dir
|
||||
for lang in $(HELP_LINGUAS) ; do \
|
||||
xsltproc -o gramps-manual/$(BRANCH)/$$lang/index.html \
|
||||
--stringparam chunker.output.encoding UTF-8 \
|
||||
--stringparam html.stylesheet ../../gramps-help-screen.css \
|
||||
--stringparam admon.graphics 1 \
|
||||
--stringparam admon.graphics.path ../../images/ \
|
||||
--stringparam navig.graphics 1 \
|
||||
--stringparam navig.graphics.extension .png \
|
||||
--stringparam navig.graphics.path ../../images/ \
|
||||
$(chunkxsl) ../$$lang/gramps.xml ; \
|
||||
mkdir gramps-manual/$(BRANCH)/$$lang/figures ; \
|
||||
cp -R ../$$lang/figures/*.png \
|
||||
gramps-manual/$(BRANCH)/$$lang/figures/ ; \
|
||||
echo "Done with html for $$lang" ; \
|
||||
done
|
||||
|
||||
mv gramps-manual/$(BRANCH)/C gramps-manual/$(BRANCH)/en
|
||||
|
||||
mkdir gramps-manual/images
|
||||
cp htmlpic/* gramps-manual/images/
|
||||
for img in $(ADMON_IMAGES) ; do \
|
||||
cp $(admonimgdir)/$$img gramps-manual/images/ ; \
|
||||
done
|
||||
|
||||
cp gramps-help-screen.css gramps-manual/
|
||||
|
||||
pdf:
|
||||
echo "This is a placeholder for making PDF"
|
||||
|
Loading…
Reference in New Issue
Block a user