-
Doing this..
``` js
for (var i in system.stdin) {
print(i);
}
print('done');
```
`print('done');` is never called
-
Mug should support builtin modules like `fs`, `io`, `Binary` objects, `sys`, etc.
I'm not yet sure whether to follow the CommonJS spec, or to model these after RingoJS, node.js, etc. The upshot is th…
-
If the upload in my Stick-based web application is accessed by more XHR-requests simultaneously, it throws a RollbackException:
``` javascript
{
"status": "upload_badrequest",
"exception": "Jav…
botic updated
13 years ago
-
``` javascript
735: if (hasOwnProperty.call(b, key) && !size--) break;
```
It cannot assign value in the second part of conjunction. Adding braces solves it:
``` javascript
735: if (hasOwnProperty.c…
-
```
$ ringo
>> var fs = require('fs')
>> fs.workingDirectory()
'/opt/ringojs/'
>> fs.changeWorkingDirectory('/tmp')
>> fs.workingDirectory()
'/tmp/'
>> require('ringo/subprocess').system('/bin/pwd')
/…
earl updated
13 years ago
-
```[root@bradford ~]# npm install -g fibers@0.5
npm ERR! TypeError: object is not a function
npm ERR! at Object.CALL_NON_FUNCTION (native)
npm ERR! at cb (/usr/lib/nodejs/rimraf.js:43:5)
npm E…
mcepl updated
13 years ago
-
Ideally, I'd like to keep this as a single project/package so that RingoJS code such as the following would work as is:
```
require('system').exit(0);
```
Unfortunately Node's approach to resolving …
olegp updated
13 years ago
-
I'm not entirely sure that this is Java 1.5 specific, but after 2c98c5617fdec5d02e5f58f17020d0448419d486, this is what I get from `ant jar`:
```
compile:
[mkdir] Created dir: /path/to/build/class…
-
POST requests doesn't work properly in RingoJS 0.7 running on App Engine (1.5.0).
Request is properly sent but `postParams` are empty. Post params are also not visible in `params`.
I've created a sim…
-
http://ringojs.org/wiki/web%20framework/
http://ringojs.org/wiki/request%20dispatching/