admin
doz
html2pdf_v4.03
htmlpurifier-4.10.0
art
benchmarks
configdoc
docs
extras
library
maintenance
.htaccess
PH5P.php
add-vimline.php
common.php
compile-doxygen.sh
config-scanner.php
flush-definition-cache.php
flush.php
generate-entity-file.php
generate-includes.php
generate-ph5p-patch.php
generate-schema-cache.php
generate-standalone.php
merge-library.php
old-extract-schema.php
old-remove-require-once.php
old-remove-schema-def.php
regenerate-docs.sh
remove-trailing-whitespace.php
rename-config.php
update-config.php
plugins
smoketests
tests
.gitattributes
.gitignore
.travis.yml
CREDITS
Doxyfile
INSTALL
INSTALL.fr.utf8
LICENSE
NEWS
README.md
TODO
VERSION
WHATSNEW
WYSIWYG
composer.json
phpdoc.ini
images
prints
prints3
stud
Kennwortwechsel.php
hauptframe.php
htmlpurifier-4.10.0.zip
index.php
index_alt.php
index_db.php
index_frame.htm
index_ldap.php
login.php
logout.php
menuframe.htm
styles_pc.css
testpdf.php
topframe.php
12 lines
231 B
Bash
Executable File
12 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
cd ..
|
|
mkdir docs/doxygen
|
|
rm -Rf docs/doxygen/*
|
|
doxygen 1>docs/doxygen/info.log 2>docs/doxygen/errors.log
|
|
if [ "$?" != 0 ]; then
|
|
cat docs/doxygen/errors.log
|
|
exit
|
|
fi
|
|
cd docs
|
|
tar czf doxygen.tgz doxygen
|