You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(15) |
Sep
(135) |
Oct
(115) |
Nov
(130) |
Dec
(80) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(99) |
Feb
(31) |
Mar
(28) |
Apr
(184) |
May
(50) |
Jun
(43) |
Jul
(99) |
Aug
(90) |
Sep
(2) |
Oct
(49) |
Nov
(99) |
Dec
(154) |
| 2003 |
Jan
(430) |
Feb
(104) |
Mar
(39) |
Apr
(65) |
May
(39) |
Jun
(123) |
Jul
(101) |
Aug
(61) |
Sep
(2) |
Oct
(279) |
Nov
|
Dec
|
| 2004 |
Jan
(5) |
Feb
(2) |
Mar
(50) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
(11) |
Aug
(9) |
Sep
(240) |
Oct
(283) |
Nov
(408) |
Dec
(26) |
| 2005 |
Jan
(1) |
Feb
|
Mar
(29) |
Apr
(13) |
May
(1) |
Jun
(21) |
Jul
(74) |
Aug
(190) |
Sep
(2) |
Oct
(1) |
Nov
(1) |
Dec
|
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
(1) |
Jul
|
Aug
(29) |
Sep
(1) |
Oct
(5) |
Nov
(3) |
Dec
|
| 2007 |
Jan
(1) |
Feb
(2) |
Mar
(4) |
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
| 2009 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2010 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Nick C. <sr...@us...> - 2002-01-11 17:58:25
|
Update of /cvsroot/repast/repast/uchicago/src/sim/gui In directory usw-pr-cvs1:/tmp/cvs-serv23499/sim/gui Modified Files: FruchGraphLayout.java KamadaGraphLayout.java Log Message: updated to work with new DrawableNonGridNodes with now have x and y coords as doubles. |
|
From: Nick C. <sr...@us...> - 2002-01-11 17:57:40
|
Update of /cvsroot/repast/repast/uchicago/src/sim/gui In directory usw-pr-cvs1:/tmp/cvs-serv23263/sim/gui Modified Files: DrawableNonGridNode.java Log Message: End line clean up, and changed interface from x and y coords as ints to doubles to correctly implement the updated NonGridDrawable interface. |
|
From: Nick C. <sr...@us...> - 2002-01-11 17:56:18
|
Update of /cvsroot/repast/repast/uchicago/src/sim/gui In directory usw-pr-cvs1:/tmp/cvs-serv22821/sim/gui Modified Files: DrawableItem.java Log Message: Removed methods that were included by an interface, but were declared as abstract here. |
|
From: Nick C. <sr...@us...> - 2002-01-11 17:54:35
|
Update of /cvsroot/repast/repast/uchicago/src/sim/gui
In directory usw-pr-cvs1:/tmp/cvs-serv22020/sim/gui
Modified Files:
DisplaySurface.java
Log Message:
A. Once again changed the how the actual painting interacts with the
gui event thread. There are now two methods.
1. updateDisplayDirect() -- this calls painter.paint directly. This
is should be called from within the event thread. So, for example, in
response to a keystroke etc.
2. updateDisplay() -- this calls painter.paint via
SwingUtilities.invokeAndWait(). This inserts the paint event into the
event queue and is to be used when a non-event thread wants to paint. So,
this is used from within your model which operates inside another thread.
I'm using invokeAndWait rather than invokeLater as invokeLater causes
problems with GraphLayouts that do lots of intermediate painting.
B. Added keylisteners for zooming ('z') and unzooming ('r').
C. Added code for zooming. Includes ability to draw zoom box and communicate
with Zoomables.
|
|
From: Nick C. <sr...@us...> - 2002-01-11 17:47:34
|
Update of /cvsroot/repast/repast/uchicago/src/sim/engine In directory usw-pr-cvs1:/tmp/cvs-serv19615/sim/engine Modified Files: Controller.java Log Message: uncommented and then commented some debugging code, and some cleanup. |
|
From: Nick C. <sr...@us...> - 2002-01-11 17:46:25
|
Update of /cvsroot/repast/repast/uchicago/src/sim/engine In directory usw-pr-cvs1:/tmp/cvs-serv19258/sim/engine Modified Files: BaseController.java Log Message: uncommented and then commented some debugging code. |
|
From: Nick C. <sr...@us...> - 2002-01-08 15:01:46
|
Update of /cvsroot/repast/repast/uchicago/src/sim/test In directory usw-pr-cvs1:/tmp/cvs-serv14878 Modified Files: README Added Files: AllTest.java Log Message: Test that runs all the other tests |
|
From: Nick C. <sr...@us...> - 2002-01-07 16:57:11
|
Update of /cvsroot/repast/repast/uchicago/src/sim/network In directory usw-pr-cvs1:/tmp/cvs-serv15694/sim/network Modified Files: NetUtilities.java Log Message: Small optimization in getShortestPath and lots of code cleanup to conform with standard repast code style. |
|
From: Nick C. <sr...@us...> - 2002-01-07 16:52:55
|
Update of /cvsroot/repast/repast/uchicago/src/sim/jinGirNew In directory usw-pr-cvs1:/tmp/cvs-serv14449/sim/jinGirNew Modified Files: JinGirNewModelII.java Log Message: hooks up the graphlayouts to the controller buttons. |
|
From: Nick C. <sr...@us...> - 2002-01-07 16:50:47
|
Update of /cvsroot/repast/repast/uchicago/src/sim/gui In directory usw-pr-cvs1:/tmp/cvs-serv13887/sim/gui Modified Files: GraphLayout.java Log Message: Now extends the ActionListener interface so that layouts can be hooked up to controller button presses. |
|
From: Nick C. <sr...@us...> - 2002-01-07 16:49:12
|
Update of /cvsroot/repast/repast/uchicago/src/sim/gui In directory usw-pr-cvs1:/tmp/cvs-serv13588/sim/gui Modified Files: KamadaGraphLayout.java Log Message: Implements ActionListener interface to interrupt layout. Also lots of small optimizations that of course don't help that much. Also code clean up to conform with style of other repast code. |
|
From: Nick C. <sr...@us...> - 2002-01-07 16:46:37
|
Update of /cvsroot/repast/repast/uchicago/src/sim/gui In directory usw-pr-cvs1:/tmp/cvs-serv12925/sim/gui Modified Files: FruchGraphLayout.java Log Message: Implements ActionListener interface to interrupt layout. |
|
From: Nick C. <sr...@us...> - 2002-01-07 16:45:55
|
Update of /cvsroot/repast/repast/uchicago/src/sim/gui In directory usw-pr-cvs1:/tmp/cvs-serv12712/sim/gui Modified Files: DisplaySurface.java Log Message: No longer posts display updates to gui event via SwingUtilities.invokeLater. Now just does direct call to painter. This was done because updating the display via SwingUtilities.invokeLater when running the KamadaGraphLayout seems to add lots of extra and troublesome events to the event queue. |
|
From: Nick C. <sr...@us...> - 2002-01-07 16:41:42
|
Update of /cvsroot/repast/repast/uchicago/src/sim/gui In directory usw-pr-cvs1:/tmp/cvs-serv11836/sim/gui Modified Files: AbstractGraphLayout.java Log Message: More docs, and an empty default implementation of ActionListener interface. |
|
From: Nick C. <sr...@us...> - 2002-01-07 16:40:16
|
Update of /cvsroot/repast/repast/uchicago/src/sim/engine In directory usw-pr-cvs1:/tmp/cvs-serv11354/sim/engine Modified Files: Controller.java Log Message: Added actionCommands to each button. Public methods to add ActionListeners to the repast toolbar buttons. This allows for classes containing long running loops to listen for stop or pause button clicks and interrupt themselves. |
|
From: Nick C. <sr...@us...> - 2002-01-07 16:37:45
|
Update of /cvsroot/repast/repast/uchicago/src/sim/engine In directory usw-pr-cvs1:/tmp/cvs-serv10707/sim/engine Modified Files: BaseController.java Log Message: added and deleted debugging code, got rid of some cruft. |
|
From: Nick C. <sr...@us...> - 2002-01-03 15:55:19
|
Update of /cvsroot/repast/repast/uchicago/src/nqpy/compiler In directory usw-pr-cvs1:/tmp/cvs-serv613/compiler Modified Files: NQPyDynamicClass.java Log Message: Fixed bug in inObjHeirarchy that would throw a NullPointerException when a NQPyDynamicClass was passed in as an argument. When that occurs, the compiler is checking if one dyamic class is the parent of another. At the moment this is impossible so in these cases we just return false. |
|
From: Nick C. <sr...@us...> - 2002-01-03 15:52:45
|
Update of /cvsroot/repast/repast/uchicago/src/nqpy/compiler In directory usw-pr-cvs1:/tmp/cvs-serv32307/compiler Modified Files: JavaMethod.java Log Message: added and then deleted some debugging code. |
|
From: Nick C. <sr...@us...> - 2002-01-02 21:50:51
|
Update of /cvsroot/repast/repast In directory usw-pr-cvs1:/tmp/cvs-serv20642 Modified Files: build.foo Log Message: excludes hazelnut model from compilation |
|
From: Nick C. <sr...@us...> - 2002-01-02 21:42:01
|
Update of /cvsroot/repast/repast/uchicago/src/sim/gui In directory usw-pr-cvs1:/tmp/cvs-serv18329 Modified Files: FruchGraphLayout.java Log Message: Fixed quasi-bug with deltaLength as NaN and cleaned up the code so that the style is more consistent with the other repast code. |
|
From: Nick C. <sr...@us...> - 2002-01-02 16:08:02
|
Update of /cvsroot/repast/repast/uchicago/src/sim/jiggle In directory usw-pr-cvs1:/tmp/cvs-serv6823 Modified Files: JiggleModel.java Log Message: now gets adjacency matrix file path from as a resource from within the classpath / jar |
|
From: Nick C. <sr...@us...> - 2002-01-02 16:07:32
|
Update of /cvsroot/repast/repast/uchicago/src/sim/sugarScape In directory usw-pr-cvs1:/tmp/cvs-serv7002 Modified Files: SugarModel.java Log Message: now gets sugarspace.pgm file path from as a resource from within the classpath / jar |
|
From: Nick C. <sr...@us...> - 2001-12-31 14:32:35
|
Update of /cvsroot/repast/repast/uchicago/src/evolver/property In directory usw-pr-cvs1:/tmp/cvs-serv27659/property Modified Files: DoublePropertyEditor.java FloatPropertyEditor.java IntegerPropertyEditor.java LongPropertyEditor.java StringPropertyEditor.java Log Message: Added focus listener that registers property change when gui component (text box etc.) loses focus. |
|
From: Nick C. <sr...@us...> - 2001-12-31 14:31:44
|
Update of /cvsroot/repast/repast/uchicago/src/evolver In directory usw-pr-cvs1:/tmp/cvs-serv27545 Modified Files: EvolverGui.java Log Message: adds .xml as default extension to newly saved files. |
|
From: Nick C. <sr...@us...> - 2001-12-31 14:30:42
|
Update of /cvsroot/repast/repast/uchicago/src/evolver In directory usw-pr-cvs1:/tmp/cvs-serv27390 Modified Files: EvolverController.java Log Message: Asks for save on exit. |