... The thing is that useTemporaryPath would have to change so that it opens the file in addition to simply coming up with the filename, otherwise the race...
... Kind of a late reply on this, but I finally got up and started working on an implementation of squareBrackets(). I think there's a bug in the parser,...
I've been experimenting a bit sending HTTP GET and POST requests from ioServer (using a modified WebRequest.io script). To get the header fields right, I've...
... I've thought a bit more about this. Maybe it hasn't got so much to do with Io. May it's the way Mac OS X works. I tried a couple of curl http commands in...
... Yes. The socket just makes socket calls and is protocol agnostic. Since proxying is a procotol specific thing, the Socket code will not take care of that...
I would find it convenient (and consistent with today's optional endIndex argument) if "xyz" substring(startIndex, Nil) was legal and returned the same as...
I am having problems compiling a game that uses IoVM (http://tnlgame.net/). I am getting the following error: invalid conversion from `void* ' to `void**' The...
... optional endIndex argument) if "xyz" substring(startIndex, Nil) was legal and returned the same as "xyz" substring(startIndex). ... Yes, of course. Here's...
... Hi Steve, I get these too. They are errors when compiled as C++. I've always fixed them by inserting explicit casts (just a few lines). I'll prepare a...
Jonas Eschenburg
indyjo@...
Dec 5, 2004 1:58 pm
4840
... Ok, I've added the casts. The next release will also contain: #ifdef __cplusplus extern "C" { #endif ... in the IoVM headers. -- Steve...
I have a version of IoVM that uses Win32 (no Cygwin required) for those doing embedded stuff. Seems to pass the test suite. Haven't done Server yet - maybe...
Hello David, ... I can host it, but I suspect Steve would be more interested in a patch (depending on how much you had to change) to make it natively work with...
I wanted to do some profiling in Io, but I would have to change each Makefile and add a -pg. What's the best way to set global flags? Using 'include' to...
Here's another thing that gives me (OSX) Bus error when Io exits: m := Map clone do(for(i, 97, 98, atPut(i asCharacter, "dummy"))) This is not a new bug. I can...
Hi Steve, It seems like Io2Objc object do not implement basic Io object methods (such as isNil or comparisons), Is there a reason for this ? Thanks, --...
... The idea with those objects, is that they are just proxies for Objective-C objects - they just forward calls to them and return the results. Do you think...
... Basic operations such as isNil and equality should be implemented for a proper integration of Objective-C objects into Io. Example: a := Nil a =...
... Right. My guess would be that 2 < 1 is returning Nil, and Nil < 3 is returning True. Nil should override all comparison methods to return Nil to protect...
I'm a bit frustrated over the current state of the Io docs. The List docs says length is the same as count. It's not. List translate: "Replace each value with...
Wondering about the current state of the ObjcBridge. The last few builds do not seem to work as the documentation specifies. i.e., i get the following response...
I've started a wiki with editable Io documentation, so that we can fix it up ourselves. Steve approves of this idea. What I haven't done yet is transferred...
... We have been playing with IoWiki for a little project in our local gaming group, but have had real trouble with the 5k page size limit. Has there been an...