Philipp Naderer-Puiu

Results 16 issues of Philipp Naderer-Puiu

The `io` module introduces `ByteArray` and `ByteString` via `defineClass()`. This adds both to the engine's global host objects. This prevents using `const` in the context of i/o. ```sh ~ >...

java
javascript
discussion

The following code can lead to an out-of-sync Java system properties with `engine.properties`: ``` const engine = require("ringo/engine"); engine.properties.foo = "bar"; engine.properties.foo === java.lang.System.getProperty("foo"); // true engine.properties.foo = {}; engine.properties.foo...

java
javascript

Jetty 9.x will be End of Community Support and more or less EOL starting this June. We should ship RingoJS 4.0.0 before this date. See: https://github.com/eclipse/jetty.project/issues/7958

java
security

This would implement a standard-based deep clone function. This would make a good addition in RingoJS 3.1 and looks like an Ringo-side implementation to mee. Otherwise we could implement it...

javascript

`ringo-admin create -w` creates a plain JSGI application. I suggest to add another skeleton, e.g. named `stick-webapp` which integrates: * stick * reinhardt * validator * ringo-sqlstore (can be removed...

discussion

At the moment the asserts module has an `isNotNull()` and `isNull()`, but only an `isNotUndefined()`. Should we add an `isDefined()` too for better readability?

javascript

The Java NIO API provides useful standard open options[1] for file operations. At the moment Ringo only supports `READ, WRITE, APPEND`. Ringo could also provide shortcuts / options for `CREATE,...

java
javascript

Directly ship the type definitions with this package and add a `type` property to `package.json`.

### TL;DR For App Engine's standard Node runtime I needed the `roles/storage.objectAdmin` permission on the service account. **Expected behavior** The README should mention this role. **Observed behavior** The REAME only...

bug
good first issue

At the moment there is no documentation in the wiki about operators in where clauses.