You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(39) |
May
(41) |
Jun
(20) |
Jul
(8) |
Aug
(15) |
Sep
(18) |
Oct
(15) |
Nov
(6) |
Dec
(48) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(28) |
Feb
(6) |
Mar
(23) |
Apr
(13) |
May
(3) |
Jun
(12) |
Jul
(26) |
Aug
(1) |
Sep
|
Oct
(14) |
Nov
(2) |
Dec
(18) |
2004 |
Jan
(10) |
Feb
(5) |
Mar
(24) |
Apr
(7) |
May
(79) |
Jun
(25) |
Jul
|
Aug
(2) |
Sep
(11) |
Oct
(5) |
Nov
|
Dec
(1) |
2005 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
(6) |
Oct
|
Nov
|
Dec
|
From: Ken A. <kan...@us...> - 2003-06-17 14:23:29
|
Update of /cvsroot/jscheme/jscheme/src/jsint In directory sc8-pr-cvs1:/tmp/cvs-serv10154/src/jsint Modified Files: Invoke.java SingleImporter.java WildImporter.java Log Message: Clean up SaxExp. Have public indent properly in define-class in emacs. SchemeException - fix printout as suggeted by Geoffrey. Invoke.java - use Boolean.TRUE instead of new Boolean(true). SingletonImporter, WildImporter - provide hashCode since we provide equals. |
From: Ken A. <kan...@us...> - 2003-06-17 14:23:28
|
Update of /cvsroot/jscheme/jscheme/src/emacs In directory sc8-pr-cvs1:/tmp/cvs-serv10154/src/emacs Modified Files: scheme-init.el Log Message: Clean up SaxExp. Have public indent properly in define-class in emacs. SchemeException - fix printout as suggeted by Geoffrey. Invoke.java - use Boolean.TRUE instead of new Boolean(true). SingletonImporter, WildImporter - provide hashCode since we provide equals. |
From: Ken A. <kan...@us...> - 2003-06-17 14:23:28
|
Update of /cvsroot/jscheme/jscheme/src/jlib In directory sc8-pr-cvs1:/tmp/cvs-serv10154/src/jlib Modified Files: EditArea.java Log Message: Clean up SaxExp. Have public indent properly in define-class in emacs. SchemeException - fix printout as suggeted by Geoffrey. Invoke.java - use Boolean.TRUE instead of new Boolean(true). SingletonImporter, WildImporter - provide hashCode since we provide equals. |
From: Ken A. <kan...@us...> - 2003-06-17 14:23:28
|
Update of /cvsroot/jscheme/jscheme/src/jscheme In directory sc8-pr-cvs1:/tmp/cvs-serv10154/src/jscheme Modified Files: SchemeException.java Log Message: Clean up SaxExp. Have public indent properly in define-class in emacs. SchemeException - fix printout as suggeted by Geoffrey. Invoke.java - use Boolean.TRUE instead of new Boolean(true). SingletonImporter, WildImporter - provide hashCode since we provide equals. |
From: Ken A. <kan...@us...> - 2003-06-17 14:23:28
|
Update of /cvsroot/jscheme/jscheme/src/elf In directory sc8-pr-cvs1:/tmp/cvs-serv10154/src/elf Modified Files: sort.scm Log Message: Clean up SaxExp. Have public indent properly in define-class in emacs. SchemeException - fix printout as suggeted by Geoffrey. Invoke.java - use Boolean.TRUE instead of new Boolean(true). SingletonImporter, WildImporter - provide hashCode since we provide equals. |
From: Ken A. <kan...@us...> - 2003-06-17 14:23:28
|
Update of /cvsroot/jscheme/jscheme/src/dclass In directory sc8-pr-cvs1:/tmp/cvs-serv10154/src/dclass Modified Files: SaxExp.scm emit.scm Log Message: Clean up SaxExp. Have public indent properly in define-class in emacs. SchemeException - fix printout as suggeted by Geoffrey. Invoke.java - use Boolean.TRUE instead of new Boolean(true). SingletonImporter, WildImporter - provide hashCode since we provide equals. |
From: Ken A. <kan...@us...> - 2003-06-08 19:25:33
|
Update of /cvsroot/jscheme/jscheme/src/jsint/compiler In directory sc8-pr-cvs1:/tmp/cvs-serv29659/src/jsint/compiler Modified Files: Compiler.scm Log Message: dclass/SaxExp Add ability to keep mixed content. dclass/emit Fix bug in setter metod. emacs/scheme-init.el let public dclass methods indent properly. Invoke.java, SingleImporter, WildImporter, U, compiler/Compiler.scm changes suggested by findbug |
From: Ken A. <kan...@us...> - 2003-06-08 19:25:33
|
Update of /cvsroot/jscheme/jscheme/src/using In directory sc8-pr-cvs1:/tmp/cvs-serv29659/src/using Modified Files: run.scm Log Message: dclass/SaxExp Add ability to keep mixed content. dclass/emit Fix bug in setter metod. emacs/scheme-init.el let public dclass methods indent properly. Invoke.java, SingleImporter, WildImporter, U, compiler/Compiler.scm changes suggested by findbug |
From: Ken A. <kan...@bb...> - 2003-05-23 23:41:27
|
At 10:59 AM 5/23/2003 -0400, Tim Hickey wrote: >Microsoft research has an interesting new language, F#, > http://research.microsoft.com/projects/ilx/fsharp.htm >that looks like OCAML with Jscheme-like access to C# and .NET >libraries. Like Jscheme they can't create new classes or >interfaces. They need to explicitly add casting to get programs >to typecheck sometimes. > >I haven't played with it, but it looks interesting. Hi Tim, I read a nice paper on F# a while ago. The nice thing is you can do real lazy functional stuff that would be much harder to do directly in C#. I think the example they used was a prime sieve written as an infinite stream. But you could also do functional parsers and other cool stuff. It would be interesting to see how C# API's could be wrapped to become more expressive in F#, as we have done for JScheme. More evidence for the little language hypothesis. k |
From: Tim H. <ti...@cs...> - 2003-05-23 15:00:05
|
Microsoft research has an interesting new language, F#, http://research.microsoft.com/projects/ilx/fsharp.htm that looks like OCAML with Jscheme-like access to C# and .NET libraries. Like Jscheme they can't create new classes or interfaces. They need to explicitly add casting to get programs to typecheck sometimes. I haven't played with it, but it looks interesting. ---Tim--- |
From: Timothy J. H. <tim...@us...> - 2003-05-05 13:35:00
|
Update of /cvsroot/jscheme/jscheme/src/jsint In directory sc8-pr-cvs1:/tmp/cvs-serv13790 Modified Files: Scheme.java Log Message: fixed cacheing bug in loadEnvironment |
From: Ken A. <kan...@us...> - 2003-04-21 13:32:52
|
Update of /cvsroot/jscheme/jscheme/src/using In directory sc8-pr-cvs1:/tmp/cvs-serv23202 Added Files: Active.java Log Message: Add Active.java |
From: Ken A. <kan...@us...> - 2003-04-07 19:51:40
|
Update of /cvsroot/jscheme/jscheme/src/elf In directory sc8-pr-cvs1:/tmp/cvs-serv7817/src/elf Modified Files: mbe.scm Log Message: Even more eopl2 cleanup. Use mbe for define-syntax. Fix bug in mbe. |
From: Ken A. <kan...@us...> - 2003-04-07 19:51:40
|
Update of /cvsroot/jscheme/jscheme/src/elf/eopl2/jscheme In directory sc8-pr-cvs1:/tmp/cvs-serv7817/src/elf/eopl2/jscheme Modified Files: genwrite.scm jscheme-init.scm Log Message: Even more eopl2 cleanup. Use mbe for define-syntax. Fix bug in mbe. |
From: Ken A. <kan...@us...> - 2003-04-07 14:35:27
|
Update of /cvsroot/jscheme/jscheme/src/using In directory sc8-pr-cvs1:/tmp/cvs-serv15018/src/using Modified Files: package.html Log Message: More eopl2 cleanup Fix bug that #xff did not parse, add some tests. Fix comments that javadoc complains about. |
From: Ken A. <kan...@us...> - 2003-04-07 14:35:26
|
Update of /cvsroot/jscheme/jscheme/src/jsint In directory sc8-pr-cvs1:/tmp/cvs-serv15018/src/jsint Modified Files: InputPort.java StaticReflector.java Log Message: More eopl2 cleanup Fix bug that #xff did not parse, add some tests. Fix comments that javadoc complains about. |
From: Ken A. <kan...@us...> - 2003-04-07 14:35:26
|
Update of /cvsroot/jscheme/jscheme/src/jscheme In directory sc8-pr-cvs1:/tmp/cvs-serv15018/src/jscheme Modified Files: SchemeTests.scm Log Message: More eopl2 cleanup Fix bug that #xff did not parse, add some tests. Fix comments that javadoc complains about. |
From: Ken A. <kan...@us...> - 2003-04-07 14:35:26
|
Update of /cvsroot/jscheme/jscheme/src/elf/eopl2/jscheme In directory sc8-pr-cvs1:/tmp/cvs-serv15018/src/elf/eopl2/jscheme Modified Files: jscheme-init.scm psyntax-init.scm Log Message: More eopl2 cleanup Fix bug that #xff did not parse, add some tests. Fix comments that javadoc complains about. |
From: Timothy H. <tim...@ma...> - 2003-04-04 18:32:08
|
On Thursday, April 3, 2003, at 11:03 AM, Gary L. Kratkiewicz wrote: > Tim, > > I've been looking at the JScheme applet capabilities in preparation for > a talk on Java 2 applets that I'm giving at JavaOne in June (I'm going > to include some material on using scripting languages with applets). I > was wondering why JschemeApplet is based on Applet instead of JApplet? > Since you already need to have Java 2 capability in the browser anyway, > it seems likely you'd want to be using JApplet. > > If you wanted to maintain backward capability, perhaps you could have > both a JschemeApplet and a JschemeJApplet. This is a good idea! I just never got around to updating JschemeApplet. It should be easy to do, I'll take a look( but probably not until tonight....) ---Tim---- > > Gary > > > > > -------------------------------------------------------------------------- > Gary L. Kratkiewicz > kra...@bb... > BBN Technologies > kra...@al... > 617-873-2476 > www.kratkiewicz.com > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just > $79/mo with 500 GB of bandwidth! No other company gives more support or > power for your dedicated server > http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ > _______________________________________________ > Jscheme-devel mailing list > Jsc...@li... > https://lists.sourceforge.net/lists/listinfo/jscheme-devel > |
From: Gary L. K. <kra...@bb...> - 2003-04-03 16:45:13
|
In the User Manual in the JScheme Applet section, it says that "Note this currently only works with Java 1.2 enabled browsers such as Netscape 6.*" It will also work in older browsers with the Java Plug-In installed (which you do by installing JRE on the machine). It works for me as-is with IE 5.5 (on Windows 2000) with the plugin installed. It works for me with Netscape 4.7 with the plugin installed, if the simple applet tag in the HTML is modified to the following combined mess: <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" height=400 width=600> <PARAM NAME="code" VALUE="jsint.SchemeApplet"> <PARAM NAME="codebase" VALUE="../.."> <PARAM NAME="archive" VALUE="applet.jar"> <param name="prog" value="Demorunner.scm"> <param name="init" value="init"> <COMMENT> <EMBED type="application/x-java-applet" code="jsint.SchemeApplet" codebase="../.." archive="applet.jar" height=400 width=600 prog="Demorunner.scm" init="init"> <NOEMBED> </COMMENT> </NOEMBED> </EMBED> </OBJECT> (this works because only the OBJECT tag is visible to IE and only the EMBED tag is visible to Netscape) I'm not recommending you change the HTML (since I don't know how forward-compatible it is) but you might want to mention use of the plug-in for older browsers. Gary -------------------------------------------------------------------------- Gary L. Kratkiewicz kra...@bb... BBN Technologies kra...@al... 617-873-2476 www.kratkiewicz.com |
From: Ken A. <kan...@us...> - 2003-04-03 16:43:44
|
Update of /cvsroot/jscheme/jscheme/src/elf In directory sc8-pr-cvs1:/tmp/cvs-serv32180/src/elf Modified Files: describe.scm Log Message: Fix describe bug reported by Derek Upham sa...@bl... |
From: Gary L. K. <kra...@bb...> - 2003-04-03 16:01:03
|
Tim, I've been looking at the JScheme applet capabilities in preparation for a talk on Java 2 applets that I'm giving at JavaOne in June (I'm going to include some material on using scripting languages with applets). I was wondering why JschemeApplet is based on Applet instead of JApplet? Since you already need to have Java 2 capability in the browser anyway, it seems likely you'd want to be using JApplet. If you wanted to maintain backward capability, perhaps you could have both a JschemeApplet and a JschemeJApplet. Gary -------------------------------------------------------------------------- Gary L. Kratkiewicz kra...@bb... BBN Technologies kra...@al... 617-873-2476 www.kratkiewicz.com |
From: Ken A. <kan...@us...> - 2003-04-03 15:49:57
|
Update of /cvsroot/jscheme/jscheme/src/elf/eopl2/jscheme In directory sc8-pr-cvs1:/tmp/cvs-serv29430/src/elf/eopl2/jscheme Modified Files: jscheme-init.scm psyntax-init.scm psyntax.ss Log Message: Fix EOPL2 support. |
From: Ken A. <kan...@us...> - 2003-04-03 15:49:56
|
Update of /cvsroot/jscheme/jscheme/src/build In directory sc8-pr-cvs1:/tmp/cvs-serv29430/src/build Modified Files: jscheme-bootstrap.scm Log Message: Fix EOPL2 support. |
From: Ken A. <kan...@us...> - 2003-03-31 20:47:56
|
Update of /cvsroot/jscheme/jscheme/src/jsint In directory sc8-pr-cvs1:/tmp/cvs-serv29801/src/jsint Modified Files: Closure.java Log Message: Fix apropos to print #null values properly. Extend describe to procedures and generics. Make Closures less anonymous. |