[ Index ]

PHP Cross Reference of GASELL SVN Trunk

title

Body

[close]

/tools/ -> generate_doc.sh (source)

   1  #! /bin/sh
   2  
   3  # definition of the path to the documentor
   4  PDOC=$(which phpdoc)
   5  
   6  # files to generate the documentation from
   7  REPO="gasell"
   8  FILES=$REPO"/*.php,"$REPO"/lib/*.php"
   9  #IGNORE=$REPO"/external/"
  10  
  11  # place to save the documentation
  12  TARGET="./www/doc"
  13  
  14  # remove the previous documentation
  15  find $TARGET -name "*.html" -exec rm {} \;
  16  
  17  # launch the documentation
  18  $PDOC --filename $FILES --ignore $IGNORE --target $TARGET --title "GASELL Documentation" --sourcecode on


Generated: Tue Jan 6 01:17:25 2009 Cross-referenced by PHPXref 0.7