You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(123) |
Dec
(100) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(12) |
Feb
(80) |
Mar
(35) |
Apr
|
May
|
Jun
(28) |
Jul
(10) |
Aug
(6) |
Sep
|
Oct
|
Nov
(16) |
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
(8) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
(6) |
| 2009 |
Jan
(20) |
Feb
(1) |
Mar
(19) |
Apr
(12) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
|
From: Peter P. <pr...@us...> - 2006-11-20 17:37:57
|
Update of /cvsroot/pyxida/Pyxida In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1591 Modified Files: .classpath Log Message: Started adding the overall class framework for Pyxida Index: .classpath =================================================================== RCS file: /cvsroot/pyxida/Pyxida/.classpath,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .classpath 20 Nov 2006 13:33:24 -0000 1.2 --- .classpath 20 Nov 2006 17:22:31 -0000 1.3 *************** *** 3,7 **** <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> ! <classpathentry kind="lib" path="lib/sbon-async.jar"/> <classpathentry kind="lib" path="lib/jpcap.jar"/> <classpathentry kind="lib" path="lib/util-prp.jar" sourcepath="/Util-PRP"/> --- 3,7 ---- <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> ! <classpathentry kind="lib" path="lib/sbon-async.jar" sourcepath="/SBON"/> <classpathentry kind="lib" path="lib/jpcap.jar"/> <classpathentry kind="lib" path="lib/util-prp.jar" sourcepath="/Util-PRP"/> |
|
From: Peter P. <pr...@us...> - 2006-11-20 17:37:56
|
Update of /cvsroot/pyxida/Pyxida/web In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1591/web Modified Files: rsync.pl index.html Log Message: Started adding the overall class framework for Pyxida Index: index.html =================================================================== RCS file: /cvsroot/pyxida/Pyxida/web/index.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.html 20 Nov 2006 13:40:28 -0000 1.2 --- index.html 20 Nov 2006 17:22:31 -0000 1.3 *************** *** 1,7 **** <html> <head> ! <title> ! Pyxida: An Open Source Network Coordinate Library and Application ! </title> </head> <body bgcolor="#ffffff" link="#9a3334" vlink="#3d1252" alink="#ff0000"> --- 1,5 ---- <html> <head> ! <title>Pyxida: An Open Source Network Coordinate Library and Application</title> </head> <body bgcolor="#ffffff" link="#9a3334" vlink="#3d1252" alink="#ff0000"> Index: rsync.pl =================================================================== RCS file: /cvsroot/pyxida/Pyxida/web/rsync.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** rsync.pl 20 Nov 2006 16:17:30 -0000 1.1 --- rsync.pl 20 Nov 2006 17:22:31 -0000 1.2 *************** *** 9,12 **** --- 9,16 ---- } + if ($USER eq 'peter') { + $USER = 'prp'; + } + my $cmd = "rsync -r --delete . $USER\@shell.sourceforge.net:/home/groups/p/py/pyxida/htdocs"; print "$cmd"; |
|
From: Peter P. <pr...@us...> - 2006-11-20 17:37:56
|
Update of /cvsroot/pyxida/Pyxida/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1591/lib Modified Files: sbon-async.jar Log Message: Started adding the overall class framework for Pyxida Index: sbon-async.jar =================================================================== RCS file: /cvsroot/pyxida/Pyxida/lib/sbon-async.jar,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsLR9cxx and /tmp/cvsnmU0N0 differ |
|
From: Peter P. <pr...@us...> - 2006-11-20 17:37:56
|
Update of /cvsroot/pyxida/Pyxida/src/edu/harvard/syrah/pyxida/ping In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1591/src/edu/harvard/syrah/pyxida/ping Added Files: PingManagerIF.java PingManager.java Log Message: Started adding the overall class framework for Pyxida --- NEW FILE: PingManagerIF.java --- package edu.harvard.syrah.pyxida.ping; public interface PingManagerIF { public void init(); } --- NEW FILE: PingManager.java --- package edu.harvard.syrah.pyxida.ping; import edu.harvard.syrah.prp.Log; public class PingManager implements PingManagerIF { private static final Log log = new Log(PingManager.class); public void init() { /* empty */ } } |
|
From: Peter P. <pr...@us...> - 2006-11-20 17:37:56
|
Update of /cvsroot/pyxida/Pyxida/src/edu/harvard/syrah/pyxida/api In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1591/src/edu/harvard/syrah/pyxida/api Added Files: APIManager.java APIManagerIF.java Log Message: Started adding the overall class framework for Pyxida --- NEW FILE: APIManagerIF.java --- package edu.harvard.syrah.pyxida.api; public interface APIManagerIF { public void init(); } --- NEW FILE: APIManager.java --- package edu.harvard.syrah.pyxida.api; import edu.harvard.syrah.prp.Log; public class APIManager implements APIManagerIF { private static final Log log = new Log(APIManager.class); public void init() { /* empty */ } } |
|
From: Jonathan L. <le...@us...> - 2006-11-20 16:17:58
|
Update of /cvsroot/pyxida/Pyxida/web In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9566 Added Files: rsync.pl Log Message: rsync --- NEW FILE: rsync.pl --- #!/usr/bin/perl use strict; my $USER = $ENV{'USER'}; if ($USER eq 'jonathan') { $USER = 'ledlie'; } my $cmd = "rsync -r --delete . $USER\@shell.sourceforge.net:/home/groups/p/py/pyxida/htdocs"; print "$cmd"; exec ($cmd); |