jsetimon-commits Mailing List for Java SETI Monitor
Brought to you by:
adamjone
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(3) |
Nov
(1) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Benno L. <ben...@id...> - 2004-05-03 07:15:19
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_de.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
|
From: Adam J. <ada...@us...> - 2002-11-01 05:36:14
|
Update of /cvsroot/jsetimon/jsetimon/src In directory usw-pr-cvs1:/tmp/cvs-serv30646 Modified Files: JSETIMon.mf Log Message: Corrected the name of the startup class in the manifest file. Index: JSETIMon.mf =================================================================== RCS file: /cvsroot/jsetimon/jsetimon/src/JSETIMon.mf,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JSETIMon.mf 23 Oct 2002 03:41:51 -0000 1.1 --- JSETIMon.mf 1 Nov 2002 05:36:11 -0000 1.2 *************** *** 1,3 **** Manifest-Version: 1.0 ! Main-Class: JSETIMon Created-By: 1.4.0 (Sun Microsystems Inc.) --- 1,3 ---- Manifest-Version: 1.0 ! Main-Class: net.sourceforge.jsetimon.JSETIMon Created-By: 1.4.0 (Sun Microsystems Inc.) |
|
From: Adam J. <ada...@us...> - 2002-10-23 03:41:53
|
Update of /cvsroot/jsetimon/jsetimon/src In directory usw-pr-cvs1:/tmp/cvs-serv24061/src Added Files: JSETIMon.mf Log Message: added a build file for ANT and a manifest file. --- NEW FILE: JSETIMon.mf --- Manifest-Version: 1.0 Main-Class: JSETIMon Created-By: 1.4.0 (Sun Microsystems Inc.) |
|
From: Adam J. <ada...@us...> - 2002-10-23 03:41:53
|
Update of /cvsroot/jsetimon/jsetimon In directory usw-pr-cvs1:/tmp/cvs-serv24061 Added Files: build.xml Log Message: added a build file for ANT and a manifest file. --- NEW FILE: build.xml --- <!-- //============================================================================= // FILE: build.xml // AUTHOR: Kent C Johnson // DATE: 09/12/2001 // // PURPOSE: Ant build file for JSETIMon. Ant can be found at // http://jakarta.apache.org/ant. Note that this file must be // updated in parallel with the Makefiles for consistancy. // //============================================================================= // COPYRIGHT NOTICE: //============================================================================= // // Copyright (C) 2001 Adam C Jones // // Some contributions Copyright (C) 2002 Kent C. Johnson // // This file is part of JSETIMon. // // JSETIMon is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // JSETIMon is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with JSETIMon; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // //============================================================================= --> <project name="jsetimon" default="jar" basedir="."> <!--===================================================================--> <!-- everything is relative to top_dir in case this file needs to move --> <!--===================================================================--> <property name="top_dir" value="."/> <property name="bin_dir" value="${top_dir}/bin"/> <property name="src_dir" value="${top_dir}/src"/> <property name="images_dir" value="${bin_dir}/images"/> <property name="sounds_dir" value="${bin_dir}/sounds"/> <property name="lib_dir" value="${top_dir}/lib"/> <property name="jar_file" value="${lib_dir}/JSETIMon.jar"/> <property name="manifest_file" value="${src_dir}/JSETIMon.mf"/> <!--========================================--> <!-- target to initialize directories, etc. --> <!--========================================--> <target name="init"> </target> <!--====================================--> <!-- target to compile java source code --> <!--====================================--> <target name="compile" depends="init" description="Compiles JSETIMon source code into class files."> <javac srcdir="${src_dir}" destdir="${bin_dir}"/> </target> <!--==========================================--> <!-- target to create the executable jar file --> <!--==========================================--> <target name="jar" depends="compile" description="Builds the jar file containing all JSETIMon runtime components."> <jar jarfile="${jar_file}" manifest="${manifest_file}"> <fileset dir="${bin_dir}"> <patternset> <include name="**/*.class"/> <include name="**/*.gif"/> <include name="**/*.wav"/> </patternset> </fileset> </jar> </target> <!--==============================================--> <!-- target to clean away anything that was built --> <!--==============================================--> <target name="clean" description="Cleans the build directory."> <!--========================--> <!-- delete built .jar file --> <!--========================--> <delete file="${jar_file}"/> <!--=============================--> <!-- delete all compiled classes --> <!--=============================--> <delete dir="${bin_dir}/net"/> <!--================================================================--> <!-- delete any .ini files that were created when running .jar file --> <!--================================================================--> <delete> <fileset dir="${bin_dir}"> <patternset> <include name="**/*.ini"/> </patternset> </fileset> </delete> </target> <!--=========================--> <!-- target to run .jar file --> <!--=========================--> <target name="run" depends="jar" description="Executes JSETIMon"> <java jar="${jar_file}" fork="yes"/> </target> </project> <!-- //============================================================================= // CHANGE LOG: //============================================================================= // $Log: build.xml,v $ // Revision 1.1 2002/10/23 03:41:51 adamjone // added a build file for ANT and a manifest file. // //============================================================================= --> |
|
From: Adam J. <ada...@us...> - 2002-10-23 03:37:39
|
Update of /cvsroot/jsetimon/jsetimon/lib In directory usw-pr-cvs1:/tmp/cvs-serv22966/lib Log Message: Directory /cvsroot/jsetimon/jsetimon/lib added to the repository |
|
From: Adam J. <ada...@us...> - 2002-08-27 04:34:24
|
Update of /cvsroot/jsetimon/jsetimon/src/net/sourceforge/jsetimon
In directory usw-pr-cvs1:/tmp/cvs-serv5209
Modified Files:
JSETIMon.java
Log Message:
Updated URL for the new User Statistics page.
Index: JSETIMon.java
===================================================================
RCS file: /cvsroot/jsetimon/jsetimon/src/net/sourceforge/jsetimon/JSETIMon.java,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** JSETIMon.java 8 Apr 2002 00:42:16 -0000 1.32
--- JSETIMon.java 27 Aug 2002 04:34:20 -0000 1.33
***************
*** 1032,1036 ****
{
webpage = new URL(
! "http://setiathome.ssl.berkeley.edu/cgi-bin/cgi?email="
+ p_tUsername + "&cmd=user_stats_new" );
}
--- 1032,1036 ----
{
webpage = new URL(
! "http://setiathome.ssl.berkeley.edu/fcgi-bin/fcgi?email="
+ p_tUsername + "&cmd=user_stats_new" );
}
***************
*** 1617,1620 ****
--- 1617,1623 ----
//===========================================================================
// $Log$
+ // Revision 1.33 2002/08/27 04:34:20 adamjone
+ // Updated URL for the new User Statistics page.
+ //
// Revision 1.32 2002/04/08 00:42:16 kentyman
// Added Copyright comments for repack() method and About window.
|
|
From: Adam J. <ada...@us...> - 2002-04-15 04:59:03
|
Update of /cvsroot/jsetimon/jsetimon/www
In directory usw-pr-cvs1:/tmp/cvs-serv17832
Modified Files:
index.html
Log Message:
Updated to announce release 1.32
Index: index.html
===================================================================
RCS file: /cvsroot/jsetimon/jsetimon/www/index.html,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** index.html 1 Apr 2002 16:14:30 -0000 1.17
--- index.html 15 Apr 2002 04:59:00 -0000 1.18
***************
*** 32,35 ****
--- 32,37 ----
<TD bgcolor=#404040 valign=top width=35% rowspan=8>
<CENTER><STRONG>Latest News</STRONG></CENTER><BR>
+ — April 14, 2002 —<BR>
+ Released version 1.32!<BR><BR>
— March 23, 2002 —<BR>
The JSETIMon project has welcomed a new developer: Kent Johnson!
***************
*** 69,73 ****
</TD>
<TD valign=top>
! <li><A HREF="http://sourceforge.net/project/showfiles.php?group_id=35503">JSETIMon Release 1.20</A>
<li><A HREF="http://java.sun.com/j2se/1.3/jre/">Java 2 Runtime Environment, Standard Edition</A>
</TD>
--- 71,75 ----
</TD>
<TD valign=top>
! <li><A HREF="http://sourceforge.net/project/showfiles.php?group_id=35503">JSETIMon Release 1.32</A>
<li><A HREF="http://java.sun.com/j2se/1.3/jre/">Java 2 Runtime Environment, Standard Edition</A>
</TD>
***************
*** 143,146 ****
--- 145,151 ----
==============================================================================
$Log$
+ Revision 1.18 2002/04/15 04:59:00 adamjone
+ Updated to announce release 1.32
+
Revision 1.17 2002/04/01 16:14:30 kentyman
Changed "Surfing with the Alien" to "Surfing With The Alien", because I am
|
|
From: Kent C. J. <ken...@us...> - 2002-04-11 04:21:00
|
Update of /cvsroot/jsetimon/jsetimon/bin
In directory usw-pr-cvs1:/tmp/cvs-serv18971
Modified Files:
build.xml
Log Message:
Now "clean" target deletes compiled Java classes.
Index: build.xml
===================================================================
RCS file: /cvsroot/jsetimon/jsetimon/bin/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** build.xml 11 Apr 2002 04:19:14 -0000 1.1
--- build.xml 11 Apr 2002 04:20:56 -0000 1.2
***************
*** 41,44 ****
--- 41,46 ----
<!-- delete built .jar file -->
<delete file="${jar_file}"/>
+ <!-- delete all compiled classes -->
+ <delete dir="${bin_dir}/net"/>
<!-- delete any .ini files that were created when running .jar file -->
<delete>
|
|
From: Kent C. J. <ken...@us...> - 2002-04-11 04:19:17
|
Update of /cvsroot/jsetimon/jsetimon/bin
In directory usw-pr-cvs1:/tmp/cvs-serv17416
Added Files:
build.xml
Log Message:
Complete ant build file, which does everything the Makefiles do (and more).
Commands (from bin directory) are:
- "ant compile" compiles all the source in src into bin.
- "ant" or "ant jar" creates executable .jar file into bin.
- "ant clean" deletes .jar file and any .ini files in bin.
- "ant run" runs the .jar file.
--- NEW FILE: build.xml ---
<!-- Ant build file for JSETIMon. Ant can be found at
http://jakarta.apache.org/ant. Note that this file must be updated in
parallel with the Makefiles for consistancy. -->
<project name="jsetimon" default="jar" basedir=".">
<!-- everything is relative to top_dir in case this file needs to move -->
<property name="top_dir" value=".."/>
<property name="bin_dir" value="${top_dir}/bin"/>
<property name="src_dir" value="${top_dir}/src"/>
<property name="images_dir" value="${bin_dir}/images"/>
<property name="sounds_dir" value="${bin_dir}/sounds"/>
<property name="jar_file" value="JSETIMon.jar"/>
<property name="manifest_file" value="${bin_dir}/JSETIMon.mf"/>
<!-- target to initialize directories, etc. -->
<target name="init">
</target>
<!-- target to compile java source code -->
<target name="compile" depends="init">
<javac srcdir="${src_dir}" destdir="${bin_dir}"/>
</target>
<!-- target to create the executable jar file -->
<target name="jar" depends="compile">
<jar jarfile="${jar_file}"
manifest="${manifest_file}">
<fileset dir="${bin_dir}">
<patternset>
<include name="**/*.class"/>
<include name="**/*.gif"/>
<include name="**/*.wav"/>
</patternset>
</fileset>
</jar>
</target>
<!-- target to clean away anything that was built -->
<target name="clean">
<!-- delete built .jar file -->
<delete file="${jar_file}"/>
<!-- delete any .ini files that were created when running .jar file -->
<delete>
<fileset dir="${bin_dir}">
<patternset>
<include name="**/*.ini"/>
</patternset>
</fileset>
</delete>
</target>
<!-- target to run .jar file -->
<target name="run" depends="jar">
<java jar="${jar_file}"
fork="yes"/>
</target>
</project>
|
|
From: Kent C. J. <ken...@us...> - 2002-04-08 00:42:22
|
Update of /cvsroot/jsetimon/jsetimon/src/net/sourceforge/jsetimon In directory usw-pr-cvs1:/tmp/cvs-serv6140 Modified Files: JSETIMon.java Log Message: Added Copyright comments for repack() method and About window. Index: JSETIMon.java =================================================================== RCS file: /cvsroot/jsetimon/jsetimon/src/net/sourceforge/jsetimon/JSETIMon.java,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** JSETIMon.java 5 Apr 2002 14:42:37 -0000 1.31 --- JSETIMon.java 8 Apr 2002 00:42:16 -0000 1.32 *************** *** 11,15 **** // // Copyright (C) 2001 Adam C Jones ! // Copyright (C) 2002 Kent C. Johnson // // This file is part of JSETIMon. --- 11,16 ---- // // Copyright (C) 2001 Adam C Jones ! // ! // Some contributions Copyright (C) 2002 Kent C. Johnson // // This file is part of JSETIMon. *************** *** 427,430 **** --- 428,433 ---- "http://jsetimon.sourceforge.net/\n" + "\n" + + "Some contributions Copyright (C) 2002 Kent C. Johnson\n" + + "\n" + "Icons Copyright (C) 1998 Dean S Jones\n" + "de...@ga... www.gallant.com/icons.htm\n" + *************** *** 1325,1328 **** --- 1328,1332 ---- */ + // This method Copyright (C) 2002 Kent C. Johnson private void repack() { *************** *** 1613,1616 **** --- 1617,1623 ---- //=========================================================================== // $Log$ + // Revision 1.32 2002/04/08 00:42:16 kentyman + // Added Copyright comments for repack() method and About window. + // // Revision 1.31 2002/04/05 14:42:37 adamjone // Corrected a problem where the User ID Dialog tested the |
|
From: Adam J. <ada...@us...> - 2002-04-05 15:16:02
|
Update of /cvsroot/jsetimon/jsetimon/src/net/sourceforge/jsetimon In directory usw-pr-cvs1:/tmp/cvs-serv24915 Modified Files: TableCellComponentRenderer.java Log Message: Added a comment line to test cvs e-mail notification. Index: TableCellComponentRenderer.java =================================================================== RCS file: /cvsroot/jsetimon/jsetimon/src/net/sourceforge/jsetimon/TableCellComponentRenderer.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TableCellComponentRenderer.java 30 Mar 2002 04:35:14 -0000 1.5 --- TableCellComponentRenderer.java 5 Apr 2002 15:15:59 -0000 1.6 *************** *** 30,33 **** --- 30,35 ---- //============================================================================= + // test + package net.sourceforge.jsetimon; *************** *** 76,79 **** --- 78,84 ---- //============================================================================= // $Log$ + // Revision 1.6 2002/04/05 15:15:59 adamjone + // Added a comment line to test cvs e-mail notification. + // // Revision 1.5 2002/03/30 04:35:14 adamjone // Modified package name to net.sourceforge.jsetimon |