ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/util/cf_sync_doc
Revision: 1.3
Committed: Mon Aug 28 12:21:53 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.2: +12 -6 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/doc/events.pod development/events.html
20 pod maps/perl/NPC_Dialogue.pm development/NPC_Dialogue.html
21 pod gcrossedit/bin/gce development/gce_manual.html
22 pod CFPlus/pod/skill_help.pod user/skill_help.html
23 pod CFPlus/pod/command_help.pod user/command_help.html
24
25 # please don't do --delete, it will delete the .desc files!
26 rsync -avpP /tmp/cfwwwdoc/. ruth:/var/www/cf.schmorp.de/doc/. --exclude "*.desc" --delete