Code Search for Developers
 
 
  

generate-code-doc.sh from SME Web Application Framework at Krugle


Show generate-code-doc.sh syntax highlighted

#!/bin/bash

### set application name
appname=menushpk

### go to this directory
cd $(dirname $0)

### create directory download
rm -rf download/
mkdir download

### generate HTML and PDF documentation using phpDocumentor
rm -rf phpdocu/
./phpdoc_html.sh
./phpdoc_pdf.sh

### generate HTML and PDF documentation using doxygen
rm -rf doxygen
/usr/local/bin/doxygen doxygen.cfg
cd doxygen/latex/
pdflatex refman
cd ../..

### create phpDocumentor downloadable files
rm -rf $appname-phpdocu
mv phpdocu $appname-phpdocu
tar cfz download/$appname-phpdocu.tar.gz $appname-phpdocu/
cp download/documentation.pdf download/$appname-phpdocu.pdf
gzip download/$appname-phpdocu.pdf
mv download/documentation.pdf download/$appname-phpdocu.pdf

### create doxygen downloadable files
rm -rf $appname-doxygen
mv doxygen $appname-doxygen
tar cfz download/$appname-doxygen.tar.gz $appname-doxygen/html/
cp $appname-doxygen/latex/refman.pdf download/$appname-doxygen.pdf
gzip download/$appname-doxygen.pdf
mv $appname-doxygen/latex/refman.pdf download/$appname-doxygen.pdf




See more files for this project here

SME Web Application Framework

smewebapp intends to simplify the construction of web applications for informatization of the work of SME-s (small and medium enterprises), institutions, organizations etc.

Project homepage: http://sourceforge.net/projects/smewebapp
Programming language(s): JavaScript,PHP,Shell Script,XML
License: other

  README.txt
  doxygen.cfg
  generate-code-doc.sh
  index.html
  phpdoc_html.sh
  phpdoc_pdf.sh