2009-11-13 17:04:59 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# List of local files which will be install in web root
|
|
|
|
LOCAL_FILES="
|
|
|
|
"
|
|
|
|
|
|
|
|
LOG_FILE="$ROOT_DIR/upgrade.log"
|
|
|
|
|
|
|
|
# The theme name to install (optional)
|
|
|
|
#THEME="mytheme"
|
|
|
|
|
2009-12-15 18:33:22 +01:00
|
|
|
# The theme name in reference for template/CSS/image files
|
|
|
|
THEME_TPL_REF="default"
|
|
|
|
THEME_CSS_REF="default"
|
|
|
|
THEME_IMG_REF="default"
|
|
|
|
|
2009-11-13 17:04:59 +01:00
|
|
|
# Do doc export ?
|
2009-11-13 18:05:59 +01:00
|
|
|
BUILD_DOC=1
|
2009-11-13 17:04:59 +01:00
|
|
|
|
2009-11-13 18:05:59 +01:00
|
|
|
# The export dir
|
|
|
|
# If EXPORT_DIR is a zero length string, will not export doc
|
|
|
|
EXPORT_DOC_DIR=/var/www/ldapsaisie-doc
|
|
|
|
|
|
|
|
# PDF export name file
|
|
|
|
# If PDF is a zero length string, pdf doc export will not build
|
|
|
|
PDF=LdapSaisie.pdf
|
|
|
|
|
|
|
|
# ALL_IN_ONE export name
|
|
|
|
# If ALL_IN_ONE is a zero length string, all-in-one doc export will not build
|
|
|
|
ALL_IN_ONE=all-in-one
|
|
|
|
|
|
|
|
# On-line export name
|
|
|
|
# If ONLINE is a zero length string, on-line doc export will not build
|
|
|
|
ONLINE=online
|
|
|
|
|
|
|
|
# Docbook export name
|
|
|
|
# If DOCBOOK is a zero length string, docbook doc export will not buil
|
|
|
|
DOCBOOK=docbook
|
|
|
|
|
|
|
|
# The CSS file to use in export
|
2009-11-13 18:47:28 +01:00
|
|
|
CSS=$ROOT_DIR/doc/styles/LS.css
|
2009-11-13 18:05:59 +01:00
|
|
|
|
|
|
|
# The image doc directory
|
2009-11-13 18:47:28 +01:00
|
|
|
IMAGES=$ROOT_DIR/doc/images
|
2009-11-13 18:05:59 +01:00
|
|
|
|
|
|
|
# The name of last update file
|
2009-11-13 18:56:58 +01:00
|
|
|
LAST_UPDATE_FILE=$EXPORT_DOC_DIR/last_update.txt
|