Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add rest_proxy_add_soup_feature() | Christophe Fergeau | 2014-08-25 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | This function can be helpful if one wants more control over libsoup features than what librest simple API provide. For example, to get full access to libsoup cookie API (say to be able to add arbitrary cookies to the soup session), one can do: RestProxy *proxy = g_object_new(REST_TYPE_PROXY, "url-format", url, "disable-cookies", TRUE, NULL); SoupSessionFeature *cookie_jar = SOUP_SESSION_FEATURE(soup_cookie_jar_new ()); rest_proxy_add_soup_feature(proxy, cookie_jar); It's then possible to use all the soup_cookie_* methods to deal with cookies. https://bugzilla.gnome.org/show_bug.cgi?id=728340 | ||||
* | Add rest_proxy_call_get_function() | Christophe Fergeau | 2014-08-25 | 1 | -0/+1 |
| | | | | | | | | There are rest_proxy_call_[gs]et_method() methods, a rest_proxy_call_set_function() method, but no corresponding getter. Adding it makes the API more consistent. https://bugzilla.gnome.org/show_bug.cgi?id=708358 | ||||
* | Add indices and annotation glossary | Emmanuele Bassi | 2014-03-10 | 1 | -0/+15 |
| | | | | | | | The latter, especially, avoids gtk-doc complaining about introspection annotations in the documentation comments. https://bugzilla.gnome.org/show_bug.cgi?id=712747 | ||||
* | Rename rest-docs from SGML to XML | Emmanuele Bassi | 2014-03-10 | 2 | -1/+1 |
| | | | | | | It's an XML file, let's use the right extension. https://bugzilla.gnome.org/show_bug.cgi?id=712747 | ||||
* | build: Replace INCLUDES with AM_CPPFLAGS | Emmanuele Bassi | 2014-03-10 | 1 | -1/+1 |
| | | | | | | INCLUDES is deprecated and should not be used in modern autotools. https://bugzilla.gnome.org/show_bug.cgi?id=712747 | ||||
* | oauth: fix typo in method name | Ross Burton | 2012-12-02 | 1 | -1/+1 |
| | |||||
* | build: Fix scanner library flags to fix distchecklibrest-0.7.7 | Rob Bradford | 2011-03-16 | 1 | -1/+3 |
| | |||||
* | oauth-proxy: Added 'signature-host' property. | Eitan Isaacson | 2011-03-07 | 1 | -0/+2 |
| | | | | | | | | | This enables signing with a different hostname than the one in the endpoint. The case in point is Photobucket: It has "silo" URLs that are used for certain types of operations, such as api123.photobucket.com, yet the signature still expects to use api.photobucket.com in the base string. Fixes: https://bugs.meego.com/show_bug.cgi?id=14192 | ||||
* | Small documentation fixes | Ross Burton | 2010-08-11 | 1 | -3/+3 |
| | |||||
* | flickr: add flickr_proxy_new_upload_for_file | Ross Burton | 2010-08-06 | 1 | -0/+1 |
| | |||||
* | flickr: add upload support, with a special FlickrProxyCall mode | Ross Burton | 2010-08-06 | 1 | -0/+1 |
| | |||||
* | docs: remove Class structures that have no members | Ross Burton | 2010-08-04 | 1 | -6/+7 |
| | |||||
* | docs: ignore the private structs | Ross Burton | 2010-08-04 | 2 | -15/+2 |
| | |||||
* | docs: merge rest-extras into rest | Ross Burton | 2010-08-04 | 9 | -217/+122 |
| | |||||
* | rest: add RestParam and RestParams types | Ross Burton | 2010-07-08 | 2 | -0/+37 |
| | |||||
* | docs: add oauth2 proxy | Ross Burton | 2010-05-26 | 3 | -0/+42 |
| | |||||
* | docs: ignore rest-proxy-call-private.h | Ross Burton | 2010-05-17 | 1 | -1/+1 |
| | |||||
* | docs: update rest-sections | Ross Burton | 2010-05-17 | 1 | -0/+4 |
| | |||||
* | docs: document librest-extras | Ross Burton | 2010-05-17 | 5 | -1/+206 |
| | |||||
* | docs: remove rest-extras from rest docs, they don't work | Ross Burton | 2010-05-17 | 4 | -51/+12 |
| | |||||
* | Remove FacebookProxy | Ross Burton | 2010-05-07 | 3 | -45/+0 |
| | |||||
* | Split the Facebook and Flickr backends to librest-extras | Ross Burton | 2009-10-08 | 1 | -3/+3 |
| | |||||
* | Version the API documentation | Ross Burton | 2009-10-08 | 1 | -0/+1 |
| | |||||
* | Update for the versioned library | Ross Burton | 2009-10-08 | 1 | -1/+1 |
| | |||||
* | Add oauth_proxy_is_oauth10a() | Ross Burton | 2009-08-05 | 1 | -0/+1 |
| | |||||
* | Add flickr_proxy_is_successful to the API docs | Ross Burton | 2009-08-04 | 1 | -0/+2 |
| | |||||
* | Add async forms of oauth_proxy_request_token and _access_token | Ross Burton | 2009-08-03 | 1 | -0/+2 |
| | |||||
* | Add new symbols to the API docs | Ross Burton | 2009-08-03 | 1 | -83/+87 |
| | |||||
* | Add Facebook symbols to the API docs | Ross Burton | 2009-05-29 | 3 | -0/+44 |
| | |||||
* | Update API docs for new flickr symbols | Ross Burton | 2009-05-24 | 1 | -0/+2 |
| | |||||
* | Update API documentation | Ross Burton | 2009-05-20 | 3 | -2/+44 |
| | |||||
* | Remove rest_xml_node_new from the docs | Ross Burton | 2009-05-15 | 1 | -1/+0 |
| | |||||
* | Update documentation sections | Ross Burton | 2009-05-15 | 1 | -41/+60 |
| | |||||
* | Remove symbols which don't exist any more | Ross Burton | 2009-05-15 | 1 | -5/+1 |
| | |||||
* | Merge branch 'master' into oauth | Ross Burton | 2008-09-29 | 1 | -3/+1 |
|\ | |||||
| * | Rename rest_proxy_call_get_response_message to _status_message | Ross Burton | 2008-09-19 | 1 | -1/+1 |
| | | |||||
| * | Remove prototypes of rest_proxy_call_add_params_from_hash and ↵ | Ross Burton | 2008-09-19 | 1 | -2/+0 |
| | | | | | | | | rest_proxy_call_add_headers_from_hash as they are not implemented | ||||
* | | Merge branch 'master' into oauth | Ross Burton | 2008-09-19 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Add the classes to the docs, as they have vfuncs to document | Ross Burton | 2008-09-19 | 1 | -0/+2 |
| | | |||||
| * | Add rest_proxy_call_get_params to the docs | Ross Burton | 2008-09-18 | 1 | -0/+1 |
| | | |||||
* | | Add OAuth proxy to the docs | Ross Burton | 2008-09-18 | 2 | -0/+35 |
|/ | |||||
* | Add customisable generated gtk-doc files. | Rob Bradford | 2008-09-17 | 4 | -0/+97 |
| | |||||
* | Setup makefiles for gtk-doc | Rob Bradford | 2008-09-17 | 2 | -0/+91 |