~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

Viewing changes to servers/groupwise/soup-soap-response.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.1.79 upstream) (1.6.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20100517170206-4ufr52vwrhh26yh0
Tags: 2.30.1-1ubuntu1
* Merge from debian experimental. Remaining change:
  (LP: #42199, #229669, #173703, #360344, #508494)
  + debian/control:
    - add Vcs-Bzr tag
    - don't use libgnome
    - Use Breaks instead of Conflicts against evolution 2.25 and earlier.
  + debian/evolution-data-server.install,
    debian/patches/45_libcamel_providers_version.patch:
    - use the upstream versioning, not a Debian-specific one 
  + debian/libedata-book1.2-dev.install, debian/libebackend-1.2-dev.install,
    debian/libcamel1.2-dev.install, debian/libedataserverui1.2-dev.install:
    - install html documentation
  + debian/rules:
    - don't build documentation it's shipped with the tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
 * Create a new empty #SoupSoapResponse object, which can be modified
62
62
 * with the accessor functions provided with this class.
63
63
 *
64
 
 * Return value: the new #SoupSoapResponse (or %NULL if there was an
 
64
 * Returns: the new #SoupSoapResponse (or %NULL if there was an
65
65
 * error).
66
66
 */
67
67
SoupSoapResponse *
80
80
 * Create a new #SoupSoapResponse object from the XML string contained
81
81
 * in @xmlstr.
82
82
 *
83
 
 * Return value: the new #SoupSoapResponse (or %NULL if there was an
 
83
 * Returns: the new #SoupSoapResponse (or %NULL if there was an
84
84
 * error).
85
85
 */
86
86
SoupSoapResponse *
125
125
 * Parses the string contained in @xmlstr and sets all properties from
126
126
 * it in the @response object.
127
127
 *
128
 
 * Return value: %TRUE if successful, %FALSE otherwise.
 
128
 * Returns: %TRUE if successful, %FALSE otherwise.
129
129
 */
130
130
gboolean
131
131
soup_soap_response_from_string (SoupSoapResponse *response, const gchar *xmlstr)
194
194
 *
195
195
 * Gets the method name from the SOAP response.
196
196
 *
197
 
 * Return value: the method name.
 
197
 * Returns: the method name.
198
198
 */
199
199
const gchar *
200
200
soup_soap_response_get_method_name (SoupSoapResponse *response)
234
234
 *
235
235
 * Returns the parameter name.
236
236
 *
237
 
 * Return value: the parameter name.
 
237
 * Returns: the parameter name.
238
238
 */
239
239
const gchar *
240
240
soup_soap_parameter_get_name (SoupSoapParameter *param)
250
250
 *
251
251
 * Returns the parameter's (integer) value.
252
252
 *
253
 
 * Return value: the parameter value as an integer
 
253
 * Returns: the parameter value as an integer
254
254
 */
255
255
gint
256
256
soup_soap_parameter_get_int_value (SoupSoapParameter *param)
276
276
 *
277
277
 * Returns the parameter's value.
278
278
 *
279
 
 * Return value: the parameter value as a string, which must be freed
 
279
 * Returns: the parameter value as a string, which must be freed
280
280
 * by the caller.
281
281
 */
282
282
gchar *
301
301
 * for compound data types, which can contain several parameters
302
302
 * themselves.
303
303
 *
304
 
 * Return value: the first child or %NULL if there are no children.
 
304
 * Returns: the first child or %NULL if there are no children.
305
305
 */
306
306
SoupSoapParameter *
307
307
soup_soap_parameter_get_first_child (SoupSoapParameter *param)
319
319
 * Gets the first child of the given #SoupSoapParameter whose name is
320
320
 * @name.
321
321
 *
322
 
 * Return value: the first child with the given name or %NULL if there
 
322
 * Returns: the first child with the given name or %NULL if there
323
323
 * are no children.
324
324
 */
325
325
SoupSoapParameter *
350
350
 *
351
351
 * FIXME: the name of this method is wrong
352
352
 *
353
 
 * Return value: the next sibling, or %NULL if there are no more
 
353
 * Returns: the next sibling, or %NULL if there are no more
354
354
 * siblings.
355
355
 */
356
356
SoupSoapParameter *
371
371
 *
372
372
 * FIXME: the name of this method is wrong
373
373
 *
374
 
 * Return value: the next sibling with the given name, or %NULL
 
374
 * Returns: the next sibling with the given name, or %NULL
375
375
 */
376
376
SoupSoapParameter *
377
377
soup_soap_parameter_get_next_child_by_name (SoupSoapParameter *param,
399
399
 *
400
400
 * Returns the named property of @param.
401
401
 *
402
 
 * Return value: the property, which must be freed by the caller.
 
402
 * Returns: the property, which must be freed by the caller.
403
403
 */
404
404
gchar *
405
405
soup_soap_parameter_get_property (SoupSoapParameter *param, const gchar *prop_name)
423
423
 *
424
424
 * Returns the list of parameters received in the SOAP response.
425
425
 *
426
 
 * Return value: a list of #SoupSoapParameter
 
426
 * Returns: a list of #SoupSoapParameter
427
427
 */
428
428
const GList *
429
429
soup_soap_response_get_parameters (SoupSoapResponse *response)
442
442
 *
443
443
 * Retrieves the first parameter contained in the SOAP response.
444
444
 *
445
 
 * Return value: a #SoupSoapParameter representing the first
 
445
 * Returns: a #SoupSoapParameter representing the first
446
446
 * parameter, or %NULL if there are no parameters.
447
447
 */
448
448
SoupSoapParameter *
464
464
 * Retrieves the first parameter contained in the SOAP response whose
465
465
 * name is @name.
466
466
 *
467
 
 * Return value: a #SoupSoapParameter representing the first parameter
 
467
 * Returns: a #SoupSoapParameter representing the first parameter
468
468
 * with the given name, or %NULL.
469
469
 */
470
470
SoupSoapParameter *
496
496
 * Retrieves the parameter following @from in the #SoupSoapResponse
497
497
 * object.
498
498
 *
499
 
 * Return value: a #SoupSoapParameter representing the parameter.
 
499
 * Returns: a #SoupSoapParameter representing the parameter.
500
500
 */
501
501
SoupSoapParameter *
502
502
soup_soap_response_get_next_parameter (SoupSoapResponse *response,
525
525
 * Retrieves the first parameter following @from in the
526
526
 * #SoupSoapResponse object whose name matches @name.
527
527
 *
528
 
 * Return value: a #SoupSoapParameter representing the parameter.
 
528
 * Returns: a #SoupSoapParameter representing the parameter.
529
529
 */
530
530
SoupSoapParameter *
531
531
soup_soap_response_get_next_parameter_by_name (SoupSoapResponse *response,