Hi everybody, esp. Steve, as there seemingly hasn't been much development on Io lately, I thought it might be a good time to kindly ask for inclusion of the...
... The .dotest directory is where git-am saves its state when applying a patch fails. You can then resolve the issue manually and call "git-am --resolved" our...
mod_io has been out of date for quite some time as io has evolved quite a bit in terms of organization. I do have the source code for at least mod_io at home,...
Hi Chris- I've built a decently robust Io appserver that talks direct HTTP, integrates with PostgreSQL and Memcached, and has built-in session management- Let...
How do I call a method on self for which I have the slot name (in a Sequence) when I also want to send along arguments in the message call? Something like: ...
It's amazing how the act of writing down your query makes you find the solution on your own. getSlot(methodName) call(1) seems to be one solution. Sorry, ...
... You may be looking for performWithArgList: "(methodName, argList) Performs the method corresponding to methodName with the arguments in the argList."...
... There's a difference between the two in terms of which context the method will be called in, yes? I'm without an Io interpreter or the ability to get one...
The short answer is: not if you know what you're doing. If you pass those to the same object (in my example, the locals) then no there's no real noticeable...
Thanks John (and all of you who answered), performWithArgList seems to be exactly what I'm after. In general, if I have a list of arguments and want to send...
Hi, I've mentioned a couple of times earlier that there seems to be a Color problem in Io (at least on my Macs), and now I've found out roughly where the...
I noticed that there is no openForWriting using mode "w" in Io's File. The open() function uses the default mode, which is "r+". Is there any deeper reason for...
... I do: File with("foo.txt") remove openForWriting But if you wanted a method, it would be easy to add: File removeAndThenOpenForWriting := method(remove;...
... It does not seem a good way: it won't work if you only have permissions for file modification, not for directory modification. Cheers, Danya....
Danya
me.dendik@...
Oct 30, 2007 2:55 pm
10122
Well, it would have to be File with("foo.txt") truncateToSize(0) openForUpdating as remove requires permission for directory modification and openForWriting is...
I've started another attempt at writing a tome for Io. However, different in this attempt as to previous attempts, this will be more traditional rather than...
Apologies if this is a duplicate report. (By the way, the issue tracker on the site isn't working.) - - - Io fails to compile on Leopard due to issues related...
... <snip> Yeah. I reported this in IRC a little while ago. It doesn't seem like anyone knows the specific part of ucontext to fix in this case. When I first...
Brian Mitchell
binary42@...
Nov 4, 2007 4:22 am
10126
... <snip> Yeah. I reported this in IRC a little while ago. It doesn't seem like anyone knows the specific part of ucontext to fix in this case. When I first...
Brian Mitchell
binary42@...
Nov 4, 2007 4:25 am
10127
... Here's a couple of fixes that will help Io build for OS X Leopard: * Change ucontext.h imports in libcoroutine to sys/ucontext.h . * If OpenGL gives you...