Page MenuHomeCode

makedoc
No OneTemporary

#!/bin/sh
#
# Generates the Zed source code documentation
# http://scherzo.dereckson.be/doc/zed
#
#For any debug purpose, the initial command line were:
#phpdoc -d /home/dereckson/dev/zed/zed-repo -dn Zed --title "Zed. The source code to build a world." -s -ric README -o HTML:Smarty:HandS -i apps/,cache/,content/,css/,dev/,doc/ img/,js/,lang/,skins/,includes/Smarty -t /home/wwwroot/dereckson.be/scherzo/doc/zed
#Config
PHPDOC=/opt/phpDocumentor/bin/phpdoc
REPO=/home/dereckson/dev/zed/zed
TARGETDOC=/var/wwwroot/dereckson.be/scherzo/doc/zed
#Deletes previous doc
echo Deleting previous documentation...
rm -f -R "${TARGETDOC:?}/"*
#Make doc
echo Building new documentation...
$PHPDOC -d $REPO \
--template="default" -s template.color=deep-purple \
--title "Zed. The source code to build a world." \
-i apps -i cache/compiled -i content -i css -i dev -i doc -i img -i js -i lang -i skins -i vendor \
--target $TARGETDOC

File Metadata

Mime Type
text/x-shellscript
Expires
Tue, Jul 15, 02:42 (2 w, 23 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
21324
Default Alt Text
makedoc (943 B)

Event Timeline