... I think it is valid. I just did a little test using jsolait-online using json-rpc. A method on the server returns the cookies sent to the server. the...
Not sure what this has to do with jsolait really. To be honest it looks like advertisment to me, which should go straight to the spam bucket. Oops no, there is...
There was a lack of feedback to my testing threaad, but I need it done, so I've started it. I welcome feedback, but right now, my priority is getting my...
Just a thought that has been crossing my mind. Would it be a bad idea to enable classes to be instanciated with and without the new keyword? e.g. o = new C()...
1. I don't think you should add object declaration without the "new" keyword. It will make it harder to read and understand what the code does as well as...
... keyword. It will make it harder to read and understand what the code does as well as actually encourage people to make the mistake. I have to agree with...
Well, I think you can make it optional to allow object creation without the new keyword ("Class.createWithoutNew = true" or something like that). This way if...
Looks interesting, but couple of quick questions: * Is there any way to generate documentation for it? Going through code is fun, but looking at docs in one...
Been hacking some more: http://jsolait.net/download/jsolait.2005-09-16.zip It includes some auto generated docs though they sometimes don't include everything...
... code is fun, but looking at docs in one place can speed up learning how to use the new code. yeap, I included some autogenerated docs in the latest...
If anyone cares to chat about jsolait join: irc://irc.freenode.net/jsolait I, keyjaque usually hang out there during the day(London time). If I am not there...
I know two articles with SVN hosts list: http://weblogs.asp.net/fmarguerie/archive/2005/04/27/404793.aspx http://subversion.tigris.org/project_links.html (at...
I tried to come online couple of times and "jsolait" room doesn't seem to be registered, there wasn't anybody there. I tried to send you a msg and was told...
I am not online 24/7 so if noone is in the channel then it gets closed I guess. I have seen someone in there called sherrif. Ususally I am online during...
Allright, I finally decided to move my domains to a new host. To be persize to my new dedicated server. I will be installing Apache and SVN soon. I am still...
I would check-out http://projects.edgewall.com/trac/ It appears to be the most popular Python based bug-tracked. Slava <http://liquidmaze.emeraldhand.com/>...
Hi, I'm having a strange problem with the xmlrpc module. When getting the response from the server (see below) with Firefox or IE on Windows, it works fine....
The Class function you provide in jsolait does not allow for the creation of multiple instances. In the following code, both instances will alert the same...
... Indeed they do. This is because you access the prototype of the class and not the instance of it. The publ object represents the myClass.prototype object...
Jan is right. To me "publ" is a reference to static members, since that's how essentially script behaves. I write "_static" instead of "publ" to always...
... that's how essentially script behaves. I write "_static" instead of "publ" to always remember. I.e. - var myClass = Class("myClass", function(_static){ Not...
Hello I'm new here and to Yahoo groups. I just discovered this most interesting project. I'm wondering how well does the library perform? Is it really slow?...
Hi Kevin, ... Depends on what you mean by slow and what functionality you are talking about and what you compare it to. E.g. the encoding and encryption...
Hey. True. I know how JS prototyping works and essentially JS world is not exactly the same as C++ or C# OO worlds where I am coming from. I call publ "static"...
Finally, http://jsolait.net moved to my new server. Whats new? jsolait's source has now moved from my private subversion repository to a new one on the server....
... Here the example: var xmlrpc=imprt('xmlrpc'); var service = new xmlrpc.ServiceProxy('/test.py', ['echo']); service.echo('Hello jsolait', function(result,...