... I have very little experience with wikis (may change soon), but from what I can see, you've done a very nice job, and I think your web design is really...
Yep, Date is still broken. It's listing CST for me, but it's still at -5 instead of -6, so all times are an hour fast. I again ask that the old Date source...
... Thank you! ... You also tidied the code up a lot, which is important. You're a hero! ... Yes, I know about that feature - I used it to make the buttons on...
... Yes. Object system("commandGoesHere") File popen("commandGoesHere") -- Kentaro A. Kurahone SIGUSR1 Research and Development "I am having a hallucination...
As I was playing with IoWiki, I quickly discovered that it had the same problem with Norwegian characters æ-ø-å (æ ø å), and others, as I had in my ...
Whoo-hoo. Works beautifully. (See <http://massey2.philosophy.pitt.edu:8888/Norwegian.characters>) Thank you very much. I'll make sure future distributions...
... Thanks for the fix - I've changed the CGI setup method to: setup := method( for (i, 0, 255, code := i asString toBase(16) upper if (code length == 1, code...
I've been using the WebServer2.io web server in my wiki project. Some of the settings in the web server (e.g. the port number) were not quite what I wanted,...
... I think it's not a good style to make it this way. Programs should interoperate through the public interface only and shouldn't have access to...
Vladimir Pogorelenko
vpswift@...
Nov 4, 2004 9:23 am
4775
And let's not forget that the exposure of techniques like submitting remotely executable code is ITSELF an API. All an API is is a documented interface for...
... Because the file I was reading in not only defines the web server object but also runs it, which is not what I wanted. So there was no way to get the...
... Yes I did. I have exact answer: it seems that design of WebServer is not satisfy the OCP -- Open/Closed Principle of Object-oriented concept, which says...
Vladimir Pogorelenko
vpswift@...
Nov 5, 2004 8:12 pm
4779
Anything that uses Hash, now in right order. Right now I have been able to modify Hash.* so that it gives back its elements in the same order that are inserted...
Reply to Mike Austin. Mike: I discovered the problem using IoSQLite. IoSQLite gives back the results in a list of 'Maps'. IoMap uses Hash... I inserted the...
New hash sources. Here they have the link to sources of new hash.* files: http://www.fraybyte.org/aldea/viewtopic.php?p=842#842 Io speed tests before...
... In order traversal of hashes is usually expensive, so a hash shouldn't be used when order matters. What would be more intresting is to replace the hash...
... Right, the Tree primitive in IoServer should be used when order matters. ... I'm considering replacing Map's Hash implementation with a skip list based...
... Fray, Thanks for the patch. I don't see what you changed in PHash that would effect the performance of local sets. Could it be that the difference you...
Steve: The changes in PHash, are: 1) put PHASH_DEFAULT_SIZE to 16 in case non LOW_MEMORY_SYSTEM; but you there are the one that can say how it can affect the...
Hi Steve, I have just downloaded the IoVM-2004-11-10.tar.gz. When I untar and run the ./configure I get the following error. $ ./configure for i in IoVM...
Hi Jonathan, ... Looks like this was a bug in the IoVM "make clean" section. I've fixed it. ... Thanks, I've added that. ... Your welcome. :-) ... Skip lists...
... I think that is related to the "make clean" bug. In the IoVM makefile, try changing the "clean:" section to: clean: $(MAKE) -C base clean rm -f _objs/*.d ...