aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Improve modelsDavid Medina2012-02-043-20/+47
| | | | | | Now the models maps itself from json encoded Then we can inherit it and change behaviour to use polymorphism into resources ;)
* Fix parse_argsDavid Medina2012-02-031-2/+4
|
* Fix imports to new environmentDavid Medina2012-02-0322-27/+51
| | | | Absolute imports as PEP8 tells
* Pypi environment by setuptoolsDavid Medina2012-02-038-24/+73
|
* Complete new redesign trying to code less coupledDavid Medina2012-02-0320-6/+463
| | | | | | | | | | | | | | | | | | | | and I think that I'm getting it :P Log from another repo (rebase hell if I'd try) ------------------------------------------------- d64647909aa3ddde6532994f3bd895e297dd1c1d +Model mapper prototype 53fa5c47c14ebf405ac11af0b21b3bc4f1251558 Complete client 0af9075da9fddd14f0c04cb3ad5a74f33a6dcaf7 Fix exceptions typo eae8232b4235451bac344f0114895dcf159d3af5 +ResouceFactory (renamed from uris) 14c66bea1bf0a68fd540d1b73a8c25aa69c854ce WIP on Uri Factory 8012908b795d598510a7e4d288f40b324e751aab Fix client instance 3e97153664365146ac558ada22bb9d3fc1a3189d Fast night services prototype 785a0bdc2ddd815d911255ba7e91c5d71cc82a74 fix typo 84f03a039fb2413f2e156d3ec0bd226e65bcae31 WIP on client f53076153d96b492f23e01f91debe8fafbc4cfe0 Trying wrapping requests library for our needs 52ea9f888048853760990053211c9e0c4440b810 Initial commit
* Reset projectDavid Medina2012-02-0333-2681/+0
|
* Update setup.pyDavid Medina2012-01-171-1/+1
|
* Merge branch 'develop'David Medina2011-12-0327-314/+1637
|\
| * Complete AuthGist handlerDavid Medina2011-12-032-5/+151
| |
| * Added owner filterDavid Medina2011-12-031-1/+1
| |
| * Gist public handler completedDavid Medina2011-11-303-5/+87
| |
| * Fix mime_header to return None if neededDavid Medina2011-11-302-1/+6
| |
| * Fix get_converter to delete converter in kwargsDavid Medina2011-11-302-7/+9
| | | | | | | | | | It doesn't matter if converter is populate in kwargs to requests but it's more elegant and simplify tests
| * GistComment modelDavid Medina2011-11-292-1/+18
| |
| * pep8David Medina2011-11-292-7/+15
| |
| * MimeType mixinDavid Medina2011-11-283-2/+56
| |
| * Diff between 'my' and 'get'David Medina2011-11-272-8/+80
| |
| * Inject handler hookDavid Medina2011-11-272-1/+7
| |
| * Complete AuthUser handler testDavid Medina2011-11-174-24/+167
| | | | | | | | Update code putting tests in green
| * Del authors on code. Delegate it to AUTHORS ;)David Medina2011-11-1714-217/+4
| |
| * PEP8David Medina2011-11-171-11/+13
| |
| * Wip on AuthUser handler testsDavid Medina2011-11-164-5/+72
| | | | | | | | Also "python way" with Design by contract
| * Fix 411 with PUT requestDavid Medina2011-11-162-2/+12
| | | | | | | | with data as None, requests module didn't add specific header
| * API change: Added gravatar_id in User modelDavid Medina2011-11-155-12/+32
| | | | | | | | Also fix some bugs, update test and PEP8
| * Complete anonymous User handler testDavid Medina2011-11-142-6/+149
| |
| * Added user and limit in all User handler methodsDavid Medina2011-11-141-5/+5
| |
| * Fix converter bugDavid Medina2011-11-142-4/+7
| |
| * Added handler base testDavid Medina2011-11-132-1/+57
| |
| * Added limit to querys that return several itemsDavid Medina2011-11-131-9/+16
| | | | | | | | In user handler
| * Fix limit bugDavid Medina2011-11-132-2/+4
| |
| * Fix bug. Instance converter in handler baseDavid Medina2011-11-131-2/+2
| |
| * Explicit > implicitDavid Medina2011-11-131-23/+63
| | | | | | | | user arg in all anonymous user handler methods
| * Testing on fire (handlers, user_handler)David Medina2011-11-137-8/+163
| | | | | | | | Also fix bugs, pep8
| * PEP8 and renamingDavid Medina2011-11-124-2/+6
| |
| * Added converters testDavid Medina2011-11-124-101/+92
| |
| * Catch unauthorized requests. Bad credentialsDavid Medina2011-11-122-2/+4
| |
| * Added core_test and fix some bugs / pep8David Medina2011-11-125-49/+156
| | | | | | | | Readme to Markdown
| * Updated readmeDavid Medina2011-11-101-17/+13
| |
| * Init test enviromentDavid Medina2011-11-107-6/+64
| | | | | | | | Also rename user handler module to 'users'
| * Some detailsDavid Medina2011-11-103-11/+6
| |
| * Merge pull request #2 from akaihola/gistsDavid Medina2011-11-094-5/+144
| |\ | | | | | | Gist handler and init tests
| | * Updated example in README.rst to work with current versionAntti Kaihola2011-11-091-7/+12
| | |
| | * Merged create_gist() into current HEAD of copitux/developAntti Kaihola2011-11-0930-2243/+1001
| | |\ | | |/ | |/|
| * | Fixing bugs. Crazy night :SDavid Medina2011-11-096-29/+33
| | |
| * | Support for proxys in _bool handlerDavid Medina2011-11-091-1/+14
| | | | | | | | | | | | Proxys: _put, _delete
| * | Added support for extra args to get_resourcesDavid Medina2011-11-092-4/+9
| | | | | | | | | | | | Paginate coupled? :S
| * | Added User/AuthUser handlerDavid Medina2011-11-092-81/+205
| | |
| * | Prefix handlersDavid Medina2011-11-081-11/+21
| | | | | | | | | | | | Also give the possibility of inject converter in requests
| * | Added post_resource to handlerDavid Medina2011-11-081-0/+7
| | |
| * | Abstract and decouple convertersDavid Medina2011-11-083-63/+126
| | |