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

« back to all changes in this revision

Viewing changes to libedataserver/e-source.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:
274
274
 *
275
275
 * Update the ESource properties from @node.
276
276
 *
277
 
 * Return value: %TRUE if the data in @node was recognized and parsed into
 
277
 * Returns: %TRUE if the data in @node was recognized and parsed into
278
278
 * acceptable values for @source, %FALSE otherwise.
279
279
 **/
280
280
gboolean
408
408
 * Assuming that @node is a valid ESource specification, retrieve the name of
409
409
 * the source from it.
410
410
 *
411
 
 * Return value: Name of the source in the specified @node.  The caller must
 
411
 * Returns: Name of the source in the specified @node.  The caller must
412
412
 * free the string.
413
413
 **/
414
414
gchar *
653
653
 * Return the textual representation of the color for @source, or %NULL if it
654
654
 * has none.  The returned string should be parsable by #gdk_color_parse().
655
655
 *
656
 
 * Return value: a string specifying the color
 
656
 * Returns: a string specifying the color
657
657
 *
658
658
 * Since: 1.10
659
659
 **/
682
682
 *
683
683
 * If @source has an associated color, return it in *@color_return.
684
684
 *
685
 
 * Return value: %TRUE if the @source has a defined color (and hence
 
685
 * Returns: %TRUE if the @source has a defined color (and hence
686
686
 * *@color_return was set), %FALSE otherwise.
687
687
 **/
688
688
gboolean
822
822
 *
823
823
 * Compares if @a is equivalent to @b.
824
824
 *
825
 
 * Return value: %TRUE if @a is equivalent to @b,
 
825
 * Returns: %TRUE if @a is equivalent to @b,
826
826
 * %FALSE otherwise.
 
827
 *
 
828
 * Since: 2.24
827
829
 **/
828
830
gboolean
829
831
e_source_equal (ESource *a, ESource *b)
878
880
 *
879
881
 * Compares if @a is equivalent to @b.
880
882
 *
881
 
 * Return value: %TRUE if @a is equivalent to @b,
 
883
 * Returns: %TRUE if @a is equivalent to @b,
882
884
 * %FALSE otherwise.
 
885
 *
 
886
 * Since: 2.24
883
887
 **/
884
888
gboolean
885
889
e_source_xmlstr_equal (const gchar *a, const gchar *b)
931
935
        return g_hash_table_lookup (priv->properties, property);
932
936
}
933
937
 
 
938
/**
 
939
 * e_source_get_duped_property:
 
940
 *
 
941
 * Since: 1.12
 
942
 **/
934
943
gchar *
935
944
e_source_get_duped_property (ESource *source, const gchar *property)
936
945
{