summaryrefslogtreecommitdiff
path: root/gdata/gdata-batch-feed.c
Commit message (Collapse)AuthorAgeFilesLines
* build: Fix -Werror build for clangTing-Wei Lan2015-06-091-1/+2
| | | | | | This fixes implicit enumeration type conversion. https://bugzilla.gnome.org/show_bug.cgi?id=750480
* core: Mark all API as stable and impose API and ABI stability guaranteesPhilip Withnall2014-11-031-1/+1
| | | | | | | | It’s time for libgdata to grow up and start guaranteeing some stability for its users. In this vein, it’s already been API stable for around 3 years (since 0.9.1) — it’s about time that was made explicit. http://upstream-tracker.org/versions/libgdata.html is quite interesting.
* core: Use g_ascii_strto[u]ll() instead of strto[u]l()Philip Withnall2014-08-091-2/+2
| | | | | | | | The GLib functions are locale-independent. While there are few situations where a locale-independent server-provided string would be parsed differently by strtoul() in different user locales, it’s best to be safe (and consistent with our use of g_ascii_strtod(), which more easily causes problems).
* core: Ensure GDataBatchOperation's operations' callbacks are always calledPhilip Withnall2010-12-101-3/+3
| | | | | Even in error conditions, the callbacks for each of the operations in a GDataBatchOperation should be called, or memory leaks could result.
* core: Fix a memory leak in GDataBatchOperationPhilip Withnall2010-12-091-1/+3
|
* [core] Batch operation supportPhilip Withnall2010-07-121-0/+167
Add batch operation support. Batch operations are executed by creating a new GDataBatchOperation, adding the required operations to it, then running it (sync or async). Batch operations are only supported by services which implement GDataBatchable. This includes full test cases and documentation. Closes: bgo#579169