mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 00:46:16 -04:00
first-commit
This commit is contained in:
commit
325c322a27
207 changed files with 35989 additions and 0 deletions
16
bin/generateJsDoc.sh
Executable file
16
bin/generateJsDoc.sh
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
if [ ! -x /usr/bin/java ]; then
|
||||
echo "You need to install Java to generate the JSDocs!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd "../doc/jsdoc-toolkit"
|
||||
|
||||
JSRUN="jsrun.jar"
|
||||
RUNJS="app/run.js"
|
||||
OUTPUT_DIR="../jsdoc"
|
||||
NODE_DIR="../../node"
|
||||
TEMPLATE_DIR="templates/jsdoc"
|
||||
|
||||
java -jar $JSRUN $RUNJS -v -d=$OUTPUT_DIR -t=$TEMPLATE_DIR $NODE_DIR &&
|
||||
echo "Look on http://code.google.com/p/jsdoc-toolkit/wiki/InlineDocs to get Tipps for better documentation"
|
Loading…
Add table
Add a link
Reference in a new issue