ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/misc/scripts/shell/cvsstat.sh
Revision: 1.3
Committed: Sun Aug 1 10:39:52 2004 UTC (19 years, 10 months ago) by tdb
Content type: application/x-sh
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -0 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
Catch a lot of old URL's and update them. Also remove a couple of old files
that aren't used.

File Contents

# Content
1 #!/bin/sh
2
3 # directory of cvsstat script and cvs
4 BINDIR="/home/sites/www.i-scream.org.uk/bin"
5 CVS="/usr/bin/cvs"
6 FULLCVSUPDATE="/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh"
7
8 # cvs source directory (these files will be stated)
9 SRCDIR="/home/sites/www.i-scream.org.uk/cvsscripttemp/cms"
10
11 # output directory for png files (and raw txt files)
12 DESTDIR="/home/sites/www.i-scream.org.uk/web/cvsstat"
13
14 # title of graphs
15 TITLE="i-scream source CVS Statistics"
16
17 # update cvs files
18 ${FULLCVSUPDATE}
19
20 # run command
21 cd $BINDIR
22 $BINDIR/cvsstat.pl -cvsdir $SRCDIR \
23 -linedata $DESTDIR/linedata.txt \
24 -filedata $DESTDIR/filedata.txt \
25 -gnuplotfiledata $DESTDIR/filedata.png \
26 -gnuplotlinedata $DESTDIR/linedata.png \
27 -gnuplotcommand 'set title \"$TITLE\"'