Changed the documentation structure
This commit is contained in:
parent
8be6c69e97
commit
3c0e4e6470
13 changed files with 34 additions and 8 deletions
21
docs/technical/genindex.sh
Executable file
21
docs/technical/genindex.sh
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
#!/bin/sh
|
||||
|
||||
if [ $# -lt 1 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
(
|
||||
echo "Archived API Documentation"
|
||||
echo "--------------------------"
|
||||
|
||||
for DOC in `ls *.txt`; do
|
||||
if [ "$DOC" = "$1" ]; then
|
||||
continue
|
||||
fi
|
||||
display=$(sed -e 1q "${DOC}")
|
||||
link=${DOC%.txt}.html
|
||||
echo "* link:${link}[${display}]"
|
||||
done
|
||||
|
||||
) > $1
|
||||
Reference in a new issue