ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/util/cf_sync_doc
Revision: 1.7
Committed: Sun Oct 1 10:57:46 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.6: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/bin/sh
2 : ${CFDEV_ROOT:="../"}
3
4 if [ ! -e "$CFDEV_ROOT/maps/perl/NPC_Dialogue.pm" ]; then
5 echo "Please make sure you set CFDEV_ROOT correctly!"
6 exit 1
7 fi
8
9 cd "$CFDEV_ROOT" || exit 69
10
11 umask 022
12 rm -r /tmp/cfwwwdoc/ 2>/dev/null
13 mkdir /tmp/cfwwwdoc/ /tmp/cfwwwdoc/development/ /tmp/cfwwwdoc/user/ 2>/dev/null
14
15 pod() {
16 pod2man "$1" | groff -Thtml -mandoc -P -b -P -l >"/tmp/cfwwwdoc/$2"
17 }
18
19 pod server/lib/cf.pm development/cf.pm.html
20 pod server/pod/events.pod development/events.html
21 pod server/pod/extensions.pod development/extensions.html
22 pod maps/perl/NPC_Dialogue.pm development/NPC_Dialogue.html
23 pod gcrossedit/bin/gce development/gce_manual.html
24 for doc in CFPlus/pod/*.pod; do
25 pod $doc `perl -e 'local $_=$ARGV[0]; s#^.*\/([^\/.]+)\.pod$#user\/\1.html#; print' $doc`
26 done
27
28 # please don't do --delete, it will delete the .desc files!
29 rsync -avpP /tmp/cfwwwdoc/. ruth:/var/www/cf.schmorp.de/doc/. --exclude "*.desc" --delete