Log of /branches/RW_WIN32
Directory Listing
Revision
333 -
Directory Listing
Modified
Wed Dec 7 08:00:54 2005 UTC
(17 years, 3 months ago)
by
phornby
Getting to build on our altix to see if any of the source files have been broken by the windows changes.
Revision
332 -
Directory Listing
Modified
Wed Dec 7 07:50:18 2005 UTC
(17 years, 3 months ago)
by
phornby
Split the include and lib dirs for python & boost.
Added the altix support to SConstruct & tidied the options handling a bit.
Revision
305 -
Directory Listing
Modified
Sat Dec 3 05:05:25 2005 UTC
(17 years, 3 months ago)
by
robwdcock
+ Added default targets and test target aliases to control what is built better.
Revision
240 -
Directory Listing
Modified
Mon Nov 28 06:09:41 2005 UTC
(17 years, 4 months ago)
by
robwdcock
+ Fixed problem with build paths for python tests being in the wrong location
+ Added build & run for python unit tests for escript and finley.
NOTES
+ scons defaults to building ALL targets so if will build everything, including running all tests. This behaviour can be modified by specifying the DEFAULT targets but I've not done this yet. In the interim specify the target you want.
+ Some dependencies need to be specified as scons does not figure them out automatically, though a helper scanner might be able to. These can be specified explicitly using scons Depend function. Not yet done so you can get an invalid build (especially in parallel). Examples include python depends on shared libraries, possibly a couple of library dependencies for install targets - need to verify.
Revision
234 -
Directory Listing
Modified
Sun Nov 27 05:34:35 2005 UTC
(17 years, 4 months ago)
by
robwdcock
Paso -> paso - why do these changes just not stick!!!!
Revision
233 -
Directory Listing
Modified
Sun Nov 27 05:15:46 2005 UTC
(17 years, 4 months ago)
by
robwdcock
fixed case for Paso/ includes to be paso/
Revision
232 -
Directory Listing
Modified
Fri Nov 25 09:59:48 2005 UTC
(17 years, 4 months ago)
by
phornby
1) Rob, could you please set up your editor to not put CR's into the files.
2) The import esys.bruce fails on Linux, but the rest seems OK.
Here is how things go.
If a directory (bruce say) contains an __init__.py, then import esys.bruce actually imports
the __init__.py file. One can either phoney up the namespace by then saying
from bruce import *
in __init__.py (ugly!!) or just rename bruce.py to __init__.py.
All the sub-packages need this treatment. I suggest doing it with the .py files in the
source tree rather than re-naming at build time. Any other modules in the sub-directory
can then be imported into the __init__.py in the usual way in order to make them visible
to the user. Alternatively, any module not imported to __init__.py is invisible to the user.
This is much better than mucking with PYTHON_PATH and LD_LIBRARY_PATH, which has a tendency
to make everything visible, and creates module name clashes in site-packages on occasions.
The .so associated with a sub-directory should reside with the corresponding __init__.py
that imports it.
Careful use of "from AClass import AClass" and "from ASharedLib import *" in __init__.py
is also a good method of making classes contained in submodules
look like they are in the namespace of the __init__.py, thereby hiding
the intervening module name from the user. That way esys.bruce.AClass.AClass can be morphed
into esys.bruce.AClass, eliminating the annoying intervening module namespace.
Revision
231 -
Directory Listing
Modified
Fri Nov 25 09:15:24 2005 UTC
(17 years, 4 months ago)
by
phornby
Case sensitive file names.
Revision
230 -
Directory Listing
Modified
Fri Nov 25 06:51:36 2005 UTC
(17 years, 4 months ago)
by
robwdcock
+ Added ability to RunPyUnitTests when anything they depend on changes (assuming all dependencies are set up that is). Only implemented for bruce/test/python at this stage
Revision
229 -
Directory Listing
Modified
Fri Nov 25 06:17:13 2005 UTC
(17 years, 4 months ago)
by
robwdcock
+ Added Options capability
+ All py files are now compiled and installed into lib directory hierarchy
+ scons now reads custom options from custom.py. Examples are in the scons_custom_templates directory, just copy to top level build dir and rename to custom.py
+ scons_ext.py now has some helper functions for building pyc from python and running unit tests (but only when some dependency changes).
Revision
222 -
Directory Listing
Modified
Thu Nov 24 12:54:42 2005 UTC
(17 years, 4 months ago)
by
robwdcock
+Unified with linux build (tested on windows only at this point)
Revision
221 -
Directory Listing
Modified
Thu Nov 24 11:23:33 2005 UTC
(17 years, 4 months ago)
by
phornby
Builds on Linux. Changes to path names in top level
SConstruct will break the windows build. I've done my best
to not change anything else that would break windows, but
something might have slipped past.
Please check the finley_UnitTests.cpp, bruce_UnitTests.cpp and
escript_UnitTest.cpp (look at the TODO).
Revision
220 -
Directory Listing
Modified
Thu Nov 24 09:11:38 2005 UTC
(17 years, 4 months ago)
by
robwdcock
Python compile builder function added to scons. Bruce sconscript file shows usage
Revision
219 -
Directory Listing
Modified
Thu Nov 24 08:21:21 2005 UTC
(17 years, 4 months ago)
by
phornby
Case matters on Linux
Revision
218 -
Directory Listing
Modified
Thu Nov 24 07:42:12 2005 UTC
(17 years, 4 months ago)
by
robwdcock
All C++/C Unit tests now build (using scons) and pass on win32
Revision
213 -
Directory Listing
Modified
Thu Nov 24 04:18:40 2005 UTC
(17 years, 4 months ago)
by
robwdcock
SystemMatrixAdapterTestCase is broken and will not compile. Looks like it hasn't been updated to use Paso_SystemMatrix (used to be Finley_SystemMatrix?). I don't know the history so I'm moving the test out of the way for the moment.
Revision
212 -
Directory Listing
Modified
Thu Nov 24 04:16:33 2005 UTC
(17 years, 4 months ago)
by
robwdcock
Reorganise the unit test source tree and how it operates. All tests in the suite are now compiled into a single executable. If for some reason you want to run just one then use the following syntax on the command line:
finley_UnitTests --suite=Atest,AnotherTest,YetAnotherTest,...
Revision
210 -
Directory Listing
Modified
Wed Nov 23 09:54:02 2005 UTC
(17 years, 4 months ago)
by
robwdcock
PARTIAL WIN32 BUILD SYSTEM AND PORT
+ All libraries now build under new build system. No unit test routines yet
+ Reversed some incorrect refactorings in Bruce.cpp
Revision
209 -
Directory Listing
Modified
Wed Nov 23 06:32:25 2005 UTC
(17 years, 4 months ago)
by
robwdcock
PARTIAL WIN32 BUILD SYSTEM AND PORT
+ bruce, escript build system and library now ported
+ other no longer necessary directories removed from this branches subversion repository
Revision
200 -
Directory Listing
Modified
Tue Nov 22 07:55:09 2005 UTC
(17 years, 4 months ago)
by
robwdcock
PARTIAL WIN32 BUILD SYSTEM AND PORT
+ CppUnitTest build system and library now ported
+ make directory and other no longer necessary directories removed from this branches subversion repository
+ moved a few include files so they are now resident with sources. Build system will Install these to the appropriate location during build.
Revision
194 -
Directory Listing
Modified
Mon Nov 21 08:39:19 2005 UTC
(17 years, 4 months ago)
by
phornby
Remove hanging }
Revision
186 -
Directory Listing
Modified
Sun Nov 20 10:51:16 2005 UTC
(17 years, 4 months ago)
by
robwdcock
PARTIAL WIN32 PORT
+ Paso, ext_math and mmio libraries build using scons in top level directory
+ Scons build system currently hard coded against RW's third-party library paths.
+ Still lots TODO to complete port and build system
Revision
185 -
Directory Listing
Modified
Sun Nov 20 05:43:12 2005 UTC
(17 years, 4 months ago)
by
robwdcock
Copied from:
trunk revision 184
Robert Woodcock private branch for win32 port. Will eventually be merged with trunk when build systems are unified.
Revision
184 -
Directory Listing
Modified
Fri Nov 18 06:14:18 2005 UTC
(17 years, 4 months ago)
by
phornby
Original Path:
trunk
Remove unnecessary unary +'s from the numarray.array's because this is broken in some
versions of numarray.
Revision
183 -
Directory Listing
Modified
Fri Nov 18 05:24:37 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
can now build finleyC/finleycpp concurrently
Revision
182 -
Directory Listing
Modified
Fri Nov 18 05:07:36 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of config/construct files for finleyC/finleycpp libraries
Revision
181 -
Directory Listing
Modified
Fri Nov 18 04:28:47 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of config/construct scripts for escript library
Revision
180 -
Directory Listing
Modified
Fri Nov 18 03:29:44 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of scons config scripts for esysUtils library
Revision
179 -
Directory Listing
Modified
Fri Nov 18 03:20:34 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of scons config/construct scripts for mmio library
Revision
178 -
Directory Listing
Modified
Fri Nov 18 03:13:26 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of scons config/construct files for CppUnitTest library
Revision
177 -
Directory Listing
Modified
Fri Nov 18 02:50:20 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
reformatted list of source files
Revision
176 -
Directory Listing
Modified
Fri Nov 18 01:49:12 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
first draft of scons config/construct files to build brucecpp.so library
Revision
175 -
Directory Listing
Modified
Fri Nov 11 04:06:00 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
definitely the last test commit!
Revision
174 -
Directory Listing
Modified
Fri Nov 11 04:03:33 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
possibly the last test commit
Revision
173 -
Directory Listing
Modified
Fri Nov 11 03:50:50 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit message
Revision
172 -
Directory Listing
Modified
Fri Nov 11 02:03:48 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
171 -
Directory Listing
Modified
Fri Nov 11 02:02:37 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
170 -
Directory Listing
Modified
Fri Nov 11 02:01:42 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
169 -
Directory Listing
Modified
Fri Nov 11 01:51:16 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
168 -
Directory Listing
Modified
Fri Nov 11 01:48:47 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
167 -
Directory Listing
Modified
Fri Nov 11 01:39:37 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
166 -
Directory Listing
Modified
Fri Nov 11 01:38:41 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
test commit
Revision
165 -
Directory Listing
Modified
Fri Nov 11 00:46:40 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
a test commit to svn
Revision
164 -
Directory Listing
Modified
Fri Nov 11 00:45:35 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
a test commit to svn of mk
Revision
163 -
Directory Listing
Modified
Fri Nov 11 00:11:34 2005 UTC
(17 years, 4 months ago)
by
svn
Original Path:
trunk
remove unreliable finley tests for sake of autotest script
Revision
162 -
Directory Listing
Modified
Fri Nov 11 00:09:59 2005 UTC
(17 years, 4 months ago)
by
svn
Original Path:
trunk
convert autotest script to use svn repository
Revision
161 -
Directory Listing
Modified
Thu Nov 10 06:49:15 2005 UTC
(17 years, 4 months ago)
by
svn
Original Path:
trunk
modifying to use the svn repository
Revision
160 -
Directory Listing
Modified
Thu Nov 10 05:09:25 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
fixed a broken constructor - simply didn't work
Revision
159 -
Directory Listing
Modified
Thu Nov 10 04:01:43 2005 UTC
(17 years, 4 months ago)
by
matt
Original Path:
trunk
Added a more comprehensive data equivalence test based on X coordinates.
Revision
158 -
Directory Listing
Modified
Thu Nov 10 03:51:03 2005 UTC
(17 years, 4 months ago)
by
matt
Original Path:
trunk
Added finley and bruce rectangle and brick Data archive tests.
Revision
157 -
Directory Listing
Modified
Wed Nov 9 10:01:06 2005 UTC
(17 years, 4 months ago)
by
gross
Original Path:
trunk
initial checkin
Revision
155 -
Directory Listing
Modified
Wed Nov 9 02:02:19 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
move all directories from trunk/esys2 into trunk and remove esys2
Revision
154 -
Directory Listing
Modified
Mon Nov 7 05:51:17 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-11-07
Revision
153 -
Directory Listing
Modified
Tue Oct 25 01:51:20 2005 UTC
(17 years, 5 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-10-25
Revision
152 -
Directory Listing
Modified
Fri Oct 21 08:32:21 2005 UTC
(17 years, 5 months ago)
by
phornby
Original Path:
trunk
DataConstantTestCase.cpp, DataExpandedTestCase.cpp:
Replace
DataExpanded testData1(FunctionSpace(),....)
with
FunctionSpace tmp_fns;
DataExpanded testData1(tmp_fns,shape,data);
for GCC's sake.
Added some profiling to PoissonSolverTest.py.
Revision
151 -
Directory Listing
Modified
Thu Sep 22 01:55:00 2005 UTC
(17 years, 6 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-09-22
Revision
150 -
Directory Listing
Modified
Thu Sep 15 03:44:45 2005 UTC
(17 years, 6 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-09-15
Revision
149 -
Directory Listing
Modified
Thu Sep 1 03:31:39 2005 UTC
(17 years, 6 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-09-01
Revision
148 -
Directory Listing
Modified
Tue Aug 23 01:24:31 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
Merge of development branch dev-02 back to main trunk on 2005-08-23
Revision
147 -
Directory Listing
Modified
Fri Aug 12 01:45:47 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk
erge of development branch dev-02 back to main trunk on 2005-08-12
Revision
146 -
Directory Listing
Modified
Fri Jul 29 01:44:29 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
First merge of development branch dev-02 back to main trunk on 2005-07-29
Revision
145 -
Directory Listing
Modified
Mon Jul 25 05:43:00 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
don't build modellib by default
Revision
144 -
Directory Listing
Modified
Mon Jul 25 05:42:21 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
moved form old modellib directory
Revision
143 -
Directory Listing
Modified
Mon Jul 25 05:39:50 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
moved these files to modellib directory
Revision
142 -
Directory Listing
Modified
Mon Jul 25 05:28:20 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-07-25
Revision
141 -
Directory Listing
Modified
Mon Jul 25 05:15:41 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
fixed to work with new python source/install directory structure
Revision
140 -
Directory Listing
Modified
Mon Jul 25 00:08:42 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
add __init__.pyc to install list
Revision
139 -
Directory Listing
Modified
Mon Jul 25 00:05:12 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
python init file for finley module
Revision
138 -
Directory Listing
Modified
Mon Jul 25 00:04:06 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
fix linking to escript/finley libraries from esys python directories
Revision
137 -
Directory Listing
Modified
Fri Jul 22 07:07:20 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
removed all references to modellib module
Revision
136 -
Directory Listing
Modified
Fri Jul 22 07:06:09 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
added modellib module
Revision
135 -
Directory Listing
Modified
Fri Jul 22 07:04:52 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
makefile for modellib module
Revision
134 -
Directory Listing
Modified
Fri Jul 22 06:28:49 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
added modellib/lib/py_src
Revision
133 -
Directory Listing
Modified
Fri Jul 22 06:26:05 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
removing escript/lib/py_src/modellib
Revision
132 -
Directory Listing
Modified
Fri Jul 22 06:23:18 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
.keep file for modellib/lib
Revision
131 -
Directory Listing
Modified
Fri Jul 22 06:04:55 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
removed default setting of L_PYTH_DIR, this must now be set on a module
by module basis in the respective module makefile
Revision
130 -
Directory Listing
Modified
Fri Jul 22 05:20:58 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
restructured python install directory
Revision
129 -
Directory Listing
Modified
Fri Jul 22 05:17:51 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
removed references to modellib
Revision
128 -
Directory Listing
Modified
Fri Jul 22 05:13:08 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
removed modellib code from escript source directory
Revision
127 -
Directory Listing
Modified
Fri Jul 22 05:11:29 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
moved modellib code to esys2/modellib/py_src
Revision
126 -
Directory Listing
Modified
Fri Jul 22 03:53:08 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-07-22
Revision
125 -
Directory Listing
Modified
Fri Jul 22 03:52:49 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-07-22
CVg: Committing in
Revision
124 -
Directory Listing
Modified
Wed Jul 20 06:14:58 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
added ln(data) style wrapper for data.ln() - also added corresponding
implementation of Ln_Symbol class (not sure if this is right though)
Revision
123 -
Directory Listing
Modified
Fri Jul 8 04:08:13 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-07-08
Revision
122 -
Directory Listing
Modified
Thu Jun 9 05:38:05 2005 UTC
(17 years, 9 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-06-09
Revision
121 -
Directory Listing
Modified
Fri May 6 04:26:16 2005 UTC
(17 years, 10 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-05-06
Revision
120 -
Directory Listing
Modified
Tue Apr 12 04:46:34 2005 UTC
(17 years, 11 months ago)
by
jgs
Original Path:
trunk
Missed mk in merge back to main trunk - whoops!
Revision
119 -
Directory Listing
Modified
Tue Apr 12 04:45:05 2005 UTC
(17 years, 11 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
118 -
Directory Listing
Modified
Tue Apr 12 04:44:55 2005 UTC
(17 years, 11 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-04-12
Revision
117 -
Directory Listing
Modified
Fri Apr 1 05:48:57 2005 UTC
(17 years, 11 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
116 -
Directory Listing
Modified
Fri Apr 1 05:48:48 2005 UTC
(17 years, 11 months ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-04-01
CVg: Committing in .
Revision
115 -
Directory Listing
Modified
Fri Mar 4 07:12:47 2005 UTC
(18 years ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
114 -
Directory Listing
Modified
Fri Mar 4 07:12:37 2005 UTC
(18 years ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-03-04
Revision
113 -
Directory Listing
Modified
Mon Feb 28 07:06:33 2005 UTC
(18 years, 1 month ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
112 -
Directory Listing
Modified
Mon Feb 28 07:06:23 2005 UTC
(18 years, 1 month ago)
by
jgs
Original Path:
trunk
Merge of development branch back to main trunk on 2005-02-28
Revision
111 -
Directory Listing
Modified
Mon Feb 14 05:17:48 2005 UTC
(18 years, 1 month ago)
by
jgs
Original Path:
trunk
expanded output message to indicate location of file installation
Revision
110 -
Directory Listing
Modified
Mon Feb 14 04:14:42 2005 UTC
(18 years, 1 month ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
109 -
Directory Listing
Modified
Mon Feb 14 04:14:35 2005 UTC
(18 years, 1 month ago)
by
jgs
Original Path:
trunk
commit of branch dev-01 back to main trunk on 2005-02-14
Revision
108 -
Directory Listing
Modified
Thu Jan 27 06:21:59 2005 UTC
(18 years, 2 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
107 -
Directory Listing
Modified
Thu Jan 27 06:21:48 2005 UTC
(18 years, 2 months ago)
by
jgs
Original Path:
trunk
commit of branch dev-01 back to main trunk on 2005-01-27
Revision
106 -
Directory Listing
Modified
Thu Dec 23 07:20:12 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
105 -
Directory Listing
Modified
Thu Dec 23 07:20:07 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
commit of dev-01 branch back to main trunk on 2004-12-23
Revision
104 -
Directory Listing
Modified
Fri Dec 17 07:43:12 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
103 -
Directory Listing
Modified
Fri Dec 17 07:43:04 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
merge of dev-01 branch back to main trunk on 2004-12-17
Revision
102 -
Directory Listing
Modified
Wed Dec 15 07:08:39 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
101 -
Directory Listing
Modified
Wed Dec 15 07:08:18 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
merging dev-01 branch to main trunk on 2004-12-15
Revision
100 -
Directory Listing
Modified
Wed Dec 15 03:48:48 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
99 -
Directory Listing
Modified
Wed Dec 15 03:48:38 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
backing out previous commit
Revision
98 -
Directory Listing
Modified
Wed Dec 15 03:43:28 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
backed out previous update
Revision
97 -
Directory Listing
Modified
Tue Dec 14 05:39:33 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
96 -
Directory Listing
Modified
Tue Dec 14 05:39:20 2004 UTC
(18 years, 3 months ago)
by
jgs
Original Path:
trunk
merge from dev-01 branch back to main trunk on 2004-12-14
Revision
95 -
Directory Listing
Modified
Wed Oct 27 00:53:16 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
disabled testSubtraction test for now - requires setTaggedValue interface
which takes Data object as argument
Revision
94 -
Directory Listing
Modified
Wed Oct 27 00:45:54 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
93 -
Directory Listing
Modified
Wed Oct 27 00:42:03 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
trying to fix cvs permissions wierdness
Revision
92 -
Directory Listing
Modified
Wed Oct 27 00:36:38 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
readded these
Revision
91 -
Directory Listing
Modified
Wed Oct 27 00:34:08 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
still trying to fix cvs issue
Revision
90 -
Directory Listing
Modified
Wed Oct 27 00:31:36 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
removed non-boost version of setTaggedValue - breaks escript.cpp
Revision
89 -
Directory Listing
Modified
Wed Oct 27 00:30:36 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
fixing cvs issue
Revision
88 -
Directory Listing
Modified
Wed Oct 27 00:23:36 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
fixed minor syntax error
Revision
87 -
Directory Listing
Modified
Wed Oct 27 00:01:26 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
86 -
Directory Listing
Modified
Wed Oct 27 00:01:21 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
added dummy file to force CVS to keep directory in repository
Revision
85 -
Directory Listing
Modified
Tue Oct 26 23:56:48 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
reset default make targets
Revision
84 -
Directory Listing
Modified
Tue Oct 26 23:51:56 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
*** empty log message ***
Revision
83 -
Directory Listing
Modified
Tue Oct 26 23:51:50 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
added dummy file to ensure CVS keeps this directory in the repository
Revision
82 -
Directory Listing
Modified
Tue Oct 26 06:53:54 2004 UTC
(18 years, 5 months ago)
by
jgs
Original Path:
trunk
Initial revision
Revision
81 -
Directory Listing
Added
Tue Oct 26 06:53:54 2004 UTC
(18 years, 5 months ago)
by
(unknown author)
Original Path:
trunk
New repository initialized by cvs2svn.