summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* docs: add section about migrating from 0.7 to 1.0Günther Wagner2022-07-032-0/+29
|
* OAuth2 Pkce WorkflowGünther Wagner2022-01-1210-491/+18
|
* Add gi-docgen and proper documentation CIGünther Wagner2021-10-212-0/+76
|
* Port to the Meson build systemNiels De Graef2021-10-212-0/+27
| | | | | | | | | | | | | | | | | | | See the [Meson website] for a full reference. To build, test and/or install the librest library, you essentially need the following commands: ``` $ meson build $ ninja -C build $ meson test -C build $ ninja -C build install ``` For the GNOME initiative, see https://wiki.gnome.org/Initiatives/GnomeGoals/MesonPorting [Meson website]: http://mesonbuild.com/ https://gitlab.gnome.org/GNOME/librest/merge_requests/1
* docs: Add some missing symbolsTimm Bäder2017-10-171-0/+3
| | | | So they end up being available in the generated html documentation.
* Add rest_proxy_add_soup_feature()Christophe Fergeau2014-08-251-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 Fergeau2014-08-251-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 glossaryEmmanuele Bassi2014-03-101-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 XMLEmmanuele Bassi2014-03-102-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_CPPFLAGSEmmanuele Bassi2014-03-101-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 nameRoss Burton2012-12-021-1/+1
|
* build: Fix scanner library flags to fix distchecklibrest-0.7.7Rob Bradford2011-03-161-1/+3
|
* oauth-proxy: Added 'signature-host' property.Eitan Isaacson2011-03-071-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 fixesRoss Burton2010-08-111-3/+3
|
* flickr: add flickr_proxy_new_upload_for_fileRoss Burton2010-08-061-0/+1
|
* flickr: add upload support, with a special FlickrProxyCall modeRoss Burton2010-08-061-0/+1
|
* docs: remove Class structures that have no membersRoss Burton2010-08-041-6/+7
|
* docs: ignore the private structsRoss Burton2010-08-042-15/+2
|
* docs: merge rest-extras into restRoss Burton2010-08-049-217/+122
|
* rest: add RestParam and RestParams typesRoss Burton2010-07-082-0/+37
|
* docs: add oauth2 proxyRoss Burton2010-05-263-0/+42
|
* docs: ignore rest-proxy-call-private.hRoss Burton2010-05-171-1/+1
|
* docs: update rest-sectionsRoss Burton2010-05-171-0/+4
|
* docs: document librest-extrasRoss Burton2010-05-175-1/+206
|
* docs: remove rest-extras from rest docs, they don't workRoss Burton2010-05-174-51/+12
|
* Remove FacebookProxyRoss Burton2010-05-073-45/+0
|
* Split the Facebook and Flickr backends to librest-extrasRoss Burton2009-10-081-3/+3
|
* Version the API documentationRoss Burton2009-10-081-0/+1
|
* Update for the versioned libraryRoss Burton2009-10-081-1/+1
|
* Add oauth_proxy_is_oauth10a()Ross Burton2009-08-051-0/+1
|
* Add flickr_proxy_is_successful to the API docsRoss Burton2009-08-041-0/+2
|
* Add async forms of oauth_proxy_request_token and _access_tokenRoss Burton2009-08-031-0/+2
|
* Add new symbols to the API docsRoss Burton2009-08-031-83/+87
|
* Add Facebook symbols to the API docsRoss Burton2009-05-293-0/+44
|
* Update API docs for new flickr symbolsRoss Burton2009-05-241-0/+2
|
* Update API documentationRoss Burton2009-05-203-2/+44
|
* Remove rest_xml_node_new from the docsRoss Burton2009-05-151-1/+0
|
* Update documentation sectionsRoss Burton2009-05-151-41/+60
|
* Remove symbols which don't exist any moreRoss Burton2009-05-151-5/+1
|
* Merge branch 'master' into oauthRoss Burton2008-09-291-3/+1
|\
| * Rename rest_proxy_call_get_response_message to _status_messageRoss Burton2008-09-191-1/+1
| |
| * Remove prototypes of rest_proxy_call_add_params_from_hash and ↵Ross Burton2008-09-191-2/+0
| | | | | | | | rest_proxy_call_add_headers_from_hash as they are not implemented
* | Merge branch 'master' into oauthRoss Burton2008-09-191-0/+3
|\ \ | |/
| * Add the classes to the docs, as they have vfuncs to documentRoss Burton2008-09-191-0/+2
| |
| * Add rest_proxy_call_get_params to the docsRoss Burton2008-09-181-0/+1
| |
* | Add OAuth proxy to the docsRoss Burton2008-09-182-0/+35
|/
* Add customisable generated gtk-doc files.Rob Bradford2008-09-174-0/+97
|
* Setup makefiles for gtk-docRob Bradford2008-09-173-0/+92