Mauro Alexandre

Results 8 comments of Mauro Alexandre

https://github.com/ONE-LOGIC/ngFlowchart/pull/42

+1, it's very important feature

First of all, thanks for your great project. I created snippet to reproduce standalone (sorry my bad code, i'm studying). ## Source https://gist.github.com/upmauro/3534c43ab8688bee9d2a86438f23958e ## Error (when try GET /api/table_a) File...

Hi! I can't find specs about this situation on http://jsonapi.org/ but in my opnion when you GET **"TableA"** a element what the schema is referenced by a many to many...

@jfinkels , second option looks perfect to me.

**flask-restless/flask_restless/helpers.py line 153** `attribute = mapper.all_orm_descriptors[relationname]` mapper.all_orm_descriptors returning array like [('**mapper**', ), ('id', )] ... without string key

As mentioned in the comments, cmp doesn't exist in Python 3. If you really want it, you could define it yourself: def cmp(a, b): return (a > b) - (a...