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,...
Hello all. I've created a JavaScript GUI library based on JSOLait. It comes with two controls (a menu and a tree). It also provides foundation to develop...
Ideas for JSOLait 2.0. 1) Change jsolait.js - mod.moduleSearchURIs = [".", "%(baseURI)s/lib", "%(baseURI)s/.."]; This will allow people to place directory with...
Hi, ... I guess "%(baseURI)s/lib" should be removed as the build script should take care of all lib files that come with jsolait. Other than that I see no...
Slava has pointed out a couple of problems regarding the priv parameter passed to the class' scope function. (http://jsolait.net/ticket/5) Here are some...
Hi all, imprt('moduleName') and imprt('libName.moduleName') has the following semantic: if ther is an object jsolait.modules['moduleName'] the object is ...
What is the problem here? A. in module #1 mod.ISingleton = Class("ISingleton", function(publ){ var bIsValid = true; // CONSTRUCTOR publ.init= function(){ ...
Hi, ... If you use 'new SomeConstructor()' and inside the constructor you return null then that will cause the engine to return the object created by the...
That worked. Thanks. I'm currently refactoring my webPhrame project for SVG using RESTful design and your urllib. Are there any plans to include PUT and...
Hi, if you look at http://jsolait.net/wiki/documentation/urllib you see the sendRequest method. Use 'PUT' / 'DELETE' for the type argument. That should work. ...
I have started playing with jsolait and I love it! Thanks for the work, I think it is going in the right direction. I have a question about the usage which I...
Hi, this shows I have not written the docs well enough (http://jsolait.net/wiki/documentation/core#moduleimportfunctionality) What you want to do is change...
... No worries, as I said, it is not quite clear in the docs. If you find similar things that are not quite clear just add a new tiket to the ticket system on...
Hello! I'm using just urllib to get content into my javascript, mainly due to problems with my SOAP implementation (unrelated to jsolait). Can I in any way...
... getHTTP() is not visible outside of urllib. So the only way to find out if a request would fail is to make the request. If you think it would be good to...
Hello there, and thanks! Yes, I'd very much like you to do that. In my case, I've got a check to try to determine whether HTTPRequest is available in the login...