Hi,

really good project.
After I had managed some issues with the install script it runs on my LINUX box.
There are two things with the Python script:
- the path for the XML extensions must exist in contrast to the gart path, otherwise you get a message to choose another path

- changing the CLASSPATH variable failed on my machine because the .bashrc wasn't found
I solved this by adding this lines to the two sh scripts to compile and run Gart

---------------------------------------------
gartpath="/usr/local/gart/gart/source"
xmlpath="/usr/local/gart/xml/jaxp-1.1"
clpath=$gartpath
clpath=$clpath:$xmlpath"/jaxp.jar"
clpath=$clpath:$xmlpath"/crimson.jar"
clpath=$clpath:$xmlpath"/xalan.jar"

echo $clpath
CLASSPATH=$clpath
export CLASSPATH
---------------------------------------------

this only temporarily change the CLASSPATH variable.

OK, to my problems:
I'am unable to set certain properties
- setting the variable name has no effect, every time I refresh the properties the name is gone and the code is build with default names
- when I set the "Text" property the canvas doesn't change

most of the properties have no effect on the objects on the canvas but they are modeled rigth in the code.

thanks for your help
Thorsten