| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-05-04 | chore(docs): re-skin main documentation | Misko Hevery | |
| 2012-04-11 | docs($http): fix return types | Igor Minar | |
| 2012-04-11 | feat($http): expose the defaults config as $http.defaults | Igor Minar | |
| Often it is impossible to set the http defaults during the config phase, because the config info is not available at this time. A good example is authentication - often the app needs to bootstrap, allow user to enter credentials and only then it gains access to session token which then should be sent to the server with every request. Without having the ability to set the defaults at runtime, the developer either has to resort to hacks, or has to set the session token header with every request made by the app. | |||
| 2012-04-04 | feat($http): add withCredentials config option | Vojta Jina | |
| 2012-03-28 | feat($http): make the transform defaults to an array | Igor Minar | |
| $httpProvider.defaults.transformRequest and $httpProvider.defaults.transformResponse are now arrays containing single function. This makes it easy to add an extra transform fn. adding an extra fn before had to be done in this cluncky way: $httpProvider.defaults.transformResponse = [$httpProvider.defaults.transformResponse, myTransformFn]; after this change, it's simply: $httpProvider.defaults.transformResponse.push(myTransformFn); | |||
| 2012-03-28 | style($http): remove redundant 'use strict' header | Igor Minar | |
| 2012-03-28 | chore(Rakefile): get ready for modules | Misko Hevery | |
| 2012-03-28 | chore(module): move files around in preparation for more modules | Misko Hevery | |
