I just ran across this article. It's nice read. http://javaworld.com/javaworld/jw-03-2000/jw-03-beans.html Mo Dejong Red Hat Inc. ... The TclJava mailing list...
Mo DeJong
mdejong@...
Apr 3, 2000 9:03 am
697
I am trying to adapt the Jacl Shell to work in TclBlend. The changes involve moving the command line processing logic from the ConsoleThread's run() method...
Jiang Wu
jwu@...
Apr 3, 2000 6:29 pm
698
You might want to do a quick "cvs update" because I just updated some of the "cruft" that had been sitting in the Shell.java class for some time. Oh wait, I...
Mo DeJong
mdejong@...
Apr 3, 2000 7:07 pm
699
hello friends, i have been trying to install tclBlend on an intel m/c running solaris. i have already installed jdk1.2 and tcl8.2.1 on my machine. i had to...
Bhupinder Thakur
bthakur@...
Apr 4, 2000 7:39 am
700
Try using the configure and makefile script at the top level (the TEA makefiles): cd tclblend configure --with-tcl... make Which version of gcc do you have? Do...
Scott Redman
redman@...
Apr 4, 2000 4:14 pm
701
We do not provide much support for pre-compiled binaries for a number of reasons. We do give out Windows binaries, but that is just because windows dev tools...
Mo DeJong
mdejong@...
Apr 4, 2000 6:24 pm
702
Received: (from list@localhost) by pop.scriptics.com (8.9.1b+Sun/8.9.3) id GAA14598 for listmaster; Tue, 4 Apr 2000 06:38:26 -0700 (PDT) Date: Tue, 4 Apr 2000...
Brent Welch
welch@...
Apr 4, 2000 7:05 pm
703
Hi all. I am looking over my todo list for the next "stable" release of Tcl Blend (1.2.6) and I am wondering if we should move up to Tcl 8.3 for the...
Mo DeJong
mdejong@...
Apr 4, 2000 7:30 pm
704
If you want to run the regression tests you would typically run "make test" in the build directory. Under windows you need to run "nmake -f makefile.vc test"....
Mo DeJong
mdejong@...
Apr 4, 2000 7:41 pm
705
On Tue, 4 Apr 2000, Scott Redman wrote: I thought the other problem with stubs was that one tclblend.dll could not be loaded into both a JDK 1.1 and a JDK 1.2...
Mo DeJong
mdejong@...
Apr 4, 2000 8:48 pm
706
It's too bad that we can't make TclBlend stubs enabled, that would fix this. The problem with stubs is that the TclBlend DLL can also be used as a shell, and...
Scott Redman
redman@...
Apr 4, 2000 8:49 pm
707
I'd agree with going to Tcl 8.3 for the binary releases now. The main people this might inconvenience are those who rely on the free parts of TclPro as an...
Vince Darley
vince.darley@...
Apr 4, 2000 9:28 pm
708
... The JDK issue is separate. The Tcl stubs mechanism only helps you with the Tcl (and Tk) DLLs, not with the JDK DLLs. We will still need to build separate...
Scott Redman
redman@...
Apr 4, 2000 9:39 pm
709
Sorry folks, I never send the TclBlend patch to this mailing list. I just checked the Scriptics bug DB. My bug report is there now. It is number 4352. The...
Jiang Wu
jwu@...
Apr 4, 2000 10:46 pm
710
... It might be easy, but it is a feature change and it has to go in the 1.3 version. I hate to be the bad guy but that it the whole point of "stable" vs...
Mo DeJong
mdejong@...
Apr 4, 2000 11:31 pm
711
Enclosed are patches and new files for TclBlend that create a tcl.lang.Shell class in TclBlend. The shell can load a native Tcl interpreter using TclBlend....
Jiang Wu
jwu@...
Apr 5, 2000 9:45 pm
712
This is related the last email I sent regarding a TclBlend shell. The patch enclosed here can be used to make the Jacl shell identical to the TclBlend shell....
Jiang Wu
jwu@...
Apr 5, 2000 9:53 pm
713
I just noticed that there are some "^M" characters in the patch file. I hope it is OK. Let me know if those characters causes any problems for you. -- Jiang...
Jiang Wu
jwu@...
Apr 5, 2000 9:56 pm
714
I'm trying to have more heavy interaction between my Tcl code and Java. In particular I want to be able to pass in a Tcl command to the Java, and have it...
Vince Darley
vince.darley@...
Apr 12, 2000 5:18 pm
715
... You have two problems there. You can not just call interp.eval() from random Java code because it is not thread safe (this is by design). To make a thread...
Mo DeJong
mdejong@...
Apr 12, 2000 5:55 pm
716
Mo, Thanks for the reply. Suppose I want to use Jacl to process users' scripts so that I have no idea what the return type is going to be. I understand how I...
Paul Eng
peng@...
Apr 19, 2000 7:24 pm
717
You can test the "internal type" you get as a result of the eval(). TclObject tobj; // Do a thread safe Tcl eval and set tobj to the interp result. InternalRep...
Mo DeJong
mdejong@...
Apr 19, 2000 8:22 pm
718
WELD is an acronym for "Web Enabled Logic Documents" and performs server parsing of HTML with JACL. The Open Source WELD package is available with how-to...
Lee T Hall
lhall@...
Apr 22, 2000 10:56 pm
719
... [...] Very nice article you've written on your rationale for WELD. I've had many of the same thoughts about Web programming that you expressed so well. I...
Jeff Sturm
jsturm@...
Apr 25, 2000 4:36 pm
720
The 1.2 "stable" release has a TEA version of the configure script that is used to build Tcl Blend. This is provided with the Tcl Blend distro. Some folks have...
Mo DeJong
mdejong@...
Apr 28, 2000 11:56 pm
721
Having written the TEA makefile, I would say that (at least on a few platforms) it is pretty well tested. The README explicitly says which makefiles are for...
Scott Redman
redman@...
Apr 29, 2000 12:49 am
722
I have just posted the source code and precompiled windows binaries for the final 1.2 release of Jacl and Tcl Blend. Please test these new releases before they...
Mo DeJong
mdejong@...
May 1, 2000 8:21 am
723
... The term "thread safe" is very misleading. Jacl interps are safe if you use them properly. The problem is that the documentaiton about how to use them...
Mo DeJong
mdejong@...
May 1, 2000 8:32 am
724
There is an interesting article at http://www.javaworld.com/jw-04-2000/jw-0414-action.html?041800txt where the author discusses the use of the Command pattern...
Lee Hall
LHall@...
May 1, 2000 12:44 pm
725
... You could say the same about most Java code. But I agree the term "thread safe" is not very precise. I was referring to automatic thread safety... which,...