You cannot post messages because only members can post, and you are not currently a member.
Description:
This disscusion group is for discussing GLUEscript, a JavaScript interpreter which can be used to generate dynamic webpages, writing GUI applications with wxWidgets, system scripts, ...
|
|
|
GLUEscript 0.2.00
|
| |
Today I've released the first version of GLUEscript in the 0.2.00
series. Because I've made the switch to an Ubuntu environment (32-
bit), this release is a source code only release. This is a first
release, so I assume there will be some bugs to hunt for. I hope some
of who you can help to find them ...... more »
|
|
curl onWrite() How to know when all data is in?
|
| |
HI, I've been working with another local server using GLUEscript curl. I am having problem knowing when all the data is in before writing out NET response.print Does curl.Info.SIZE_DOWNLOAD report the size sent by the Content-Length: header? This is my trial code (response) is from a GLUEscript "net" HTTPserver which... more »
|
|
wx.DirDialog()
|
| |
HI, I am having a bit of trouble using wx.DirDialog() Any thoughts appreciated please. Paul var wx = require("wx"); // I've tried var getDir = new wx.DirDialog( blah blah // and also null instead of wx.theApp.topWindow, var getDir = wx.DirDialog(wx.theApp.topWind ow, "Choose Image... more »
|
|
Using "net" and and jQuery().ajax(...)
|
| |
I've been using ... var factory = new net.HTTPRequestHandlerFactory( ); factory.createRequestHandler = function(request) { var handler = new net.HTTPRequestHandler(); handler.handleRequest = function(request,... more »
|
|
Making a call to the command line/shell and receiving string back
|
| |
HI,
I'm still working through the documentation, is this where GLUEscript
can make a system call as it were to the command-line to launch
external processes and receive results back - system.Process and
various system.Pipe ?
So that would look something like ...?
system = require("system");... more »
|
|
|