aboutsummaryrefslogtreecommitdiff
path: root/core.go
Commit message (Collapse)AuthorAge
* Merge pull request #21 from strukturag/wrapper_supportDoug Black2014-04-24
|\ | | | | Added support to add API resources with a wrapper handler function.
| * Added support to add API resources with a wrapper handler function.Simon Eisenmann2014-04-07
| |
* | Merge pull request #23 from strukturag/patch_and_head_supportDoug Black2014-04-24
|\ \ | | | | | | Added support for HEAD and PATCH requests.
| * | Added support for HEAD and PATCH requests.Simon Eisenmann2014-04-22
| |/
* / Always create readable JSON strings. ↵Simon Eisenmann2014-04-07
|/ | | | http://www.vinaysahni.com/best-practices-for-a-pragmatic-restful-api#pretty-print-gzip)
* s/muxPointer/mux/Doug Black2014-03-30
|
* add some docs for Mux() functionDoug Black2014-03-29
|
* use built in http.Header typeDoug Black2014-03-29
|
* Merge pull request #17 from oleksandr/masterDoug Black2014-03-29
|\ | | | | Added access to request headers and ability to specify response headers.
| * Added request headers as Get/Put/Post/Delete argument. Added response ↵Alex Lobunets2014-02-07
| | | | | | | | headers map as 3rd argument of the return from Get/Put/Post/Delete handlers. Thus, resource can access request headers and set custom response headers if required
* | exported Mux()yuyabe2014-02-01
|/
* fix docs typoDoug Black2014-02-01
|
* only write header onceDoug Black2014-01-28
|
* doc fixDoug Black2014-01-27
|
* support adding one resource on multiple pathsDoug Black2014-01-27
|
* fixes suggested by @macuDoug Black2014-01-27
|
* more descriptive variable namesDoug Black2014-01-27
|
* update docsDoug Black2014-01-27
|
* formatting and use 'errors'Doug Black2014-01-27
|
* add docsDoug Black2014-01-27
|
* export 'method supported' interfacesDoug Black2014-01-27
|
* merge #6Doug Black2014-01-27
|\
| * remove the need to provide “missing/unsupported” implementations in theKaran Misra2014-01-27
| | | | | | | | | | | | | | API consumers. also: - more idiomatic - loosely coupled with the API contract
* | use ServeMux, capitalize API, clean testsDoug Black2014-01-27
| |
* | fixes from issuesDoug Black2014-01-26
|/
* use built in typeDoug Black2014-01-26
|
* fixes from commentsDoug Black2014-01-26
|
* cleanerDoug Black2014-01-25
|
* better practicesDoug Black2014-01-25
|
* reorgDoug Black2014-01-24
|
* go fmtDoug Black2014-01-23
|
* add mechanism for specifying unimplemented methods and dynamic dispatch to a ↵Doug Black2014-01-23
| | | | resource based on HTTP method
* use http.RequestDoug Black2014-01-23
|
* initial commitDoug Black2014-01-23
bgstack15