appengine_js icon indicating copy to clipboard operation
appengine_js copied to clipboard

Google App Engine for Javascript

Results 5 appengine_js issues
Sort by recently updated
recently updated
newest added

Looks like http://appenginejs.org/ and http://appenginejs.org/docs redirect to some weird domain ( maybe its a parked domain or hacked ).. Not really sure if there is an alternative source for the...

I've implemented the email validator, which was labeled as FIXME. The only form it refuses is quoted-string form in the local part. More on this can be found on: http://en.wikipedia.org/wiki/Email_address#Syntax

The website http://www.appenginejs.org no longer refers to this project.

JSON.stringify uses value returned by toJSON and serializes it to string, so it should be an object. Currenty Model objects are double-serialized when using JSON.stringify on them. Please refer to:...

here is the patch ... \lib\google\appengine\ext\db\model.js line: 357 /* */ Model.prototype.toData = function () { var data = { key: this.key().toString() } var properties = this.constructor.properties(); // for (var i...