|
From: Jonathan L. <le...@us...> - 2006-12-04 13:14:24
|
Update of /cvsroot/pyxida/Pyxida/web In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9237/web Modified Files: index.html rsync.pl Log Message: missing ports with estimateRTT XML call Index: index.html =================================================================== RCS file: /cvsroot/pyxida/Pyxida/web/index.html,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** index.html 4 Dec 2006 12:05:54 -0000 1.9 --- index.html 4 Dec 2006 13:14:19 -0000 1.10 *************** *** 106,109 **** --- 106,114 ---- <!-- li>Researchers at Boston University are using Pyxida for a new routing protocol. --></li> + + <li><a + href="http://www.cs.ucsb.edu/~ravenben/classes/276/project.html">A + Comparative Study of Network Coordinate System at UCSB</a> + </ul> Index: rsync.pl =================================================================== RCS file: /cvsroot/pyxida/Pyxida/web/rsync.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** rsync.pl 20 Nov 2006 17:22:31 -0000 1.2 --- rsync.pl 4 Dec 2006 13:14:19 -0000 1.3 *************** *** 2,5 **** --- 2,9 ---- use strict; + use Getopt::Std; + + my %para = (); + getopts('i', \%para); my $USER = $ENV{'USER'}; *************** *** 14,17 **** --- 18,26 ---- my $cmd = "rsync -r --delete . $USER\@shell.sourceforge.net:/home/groups/p/py/pyxida/htdocs"; + + if (defined($para{'i'})) { + $cmd = "scp index.html $USER\@shell.sourceforge.net:/home/groups/p/py/pyxida/htdocs"; + } + print "$cmd"; exec ($cmd); |