2009-11-07 18:08:11 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# Copyright (C) 2009 Roland Gruber
|
|
|
|
# This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
|
|
|
|
|
|
|
# This script is run to create the LAM manual.
|
|
|
|
|
|
|
|
|
|
|
|
rm -rf ../manual
|
|
|
|
mkdir ../manual
|
|
|
|
xsltproc -o ../manual/ --stringparam html.stylesheet.type text/css --stringparam html.stylesheet style.css /usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl howto.xml
|
|
|
|
mkdir ../manual/images
|
|
|
|
# cp images/*.jpg ../manual/images
|
|
|
|
cp images/*.png ../manual/images
|
2010-03-24 18:15:24 +00:00
|
|
|
cp images/*.jpg ../manual/images
|
2009-11-07 18:08:11 +00:00
|
|
|
cp style.css ../manual
|