Daniel Dourvaris

Results 5 issues of Daniel Dourvaris

Taking the following tables: ``` create table a (id1 int, id2 int, primary key (id1, id2)); create table b (id1 int, id2 int, foreign key (id1, id2) references a (id1,...

enhancement

Current paginate iterates over every single page possible, and discards most of them, for large page sets > 50,000 this can be quite slow and noticeable. This patch should make...

pagination

Just for syntax sugar so you can `del(form['something'])` or for multi part forms: ``` python try: appstruct = form['section'].validate_pstruct(pstruct['section']) exceptValidationFailure as e: form['something'] = e.field return form.render() ```

enhancement

Main use case would be something like: ``` python from collections import OrderedDict some_object.asdict(only=['id', 'parent_id', 'name'], DictClass=OrderedDict) ```

Facebook api required passing fields="email" in order to actually return the email - also added name in there for good measure.