~ubuntu-branches/ubuntu/trusty/glib2.0/trusty-proposed

« back to all changes in this revision

Viewing changes to gio/gfileinfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-03-09 11:28:22 UTC
  • mfrom: (3.4.8 experimental)
  • Revision ID: james.westby@ubuntu.com-20100309112822-j4n0v3xbtsup8s97
Tags: 2.23.5-1ubuntu1
* Resync on Debian
* debian/patches/01_gettext-desktopfiles.patch:
  - updated to use gettext for X-GNOME-Fullname too
* debian/patches/71_gio_launch_handler.patch:
  - new gio default launch handle feature required for wncksync
* debian/control.in, 
  debian/patches/80-gtester-subunit.patch:
  - gtester-report subunit support
* debian/libglib2.0-0.symbols:
  - updated the symbols list for the gio launcher handler
* debian/rules:
  - don't break build on test suite errors, debian recently activated this but
    the build breaks even when there is no error in the testsuite

Show diffs side-by-side

added added

removed removed

Lines of Context:
783
783
 **/
784
784
#define G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT "trash::item-count"     /* uint32 */
785
785
 
 
786
/**
 
787
 * G_FILE_ATTRIBUTE_TRASH_ORIG_PATH:
 
788
 *
 
789
 * A key in the "trash" namespace.  When requested against
 
790
 * items in "trash:///", will return the original path to the file before it
 
791
 * was trashed. Corresponding #GFileAttributeType is
 
792
 * %G_FILE_ATTRIBUTE_TYPE_STRING.
 
793
 *
 
794
 * Since: 2.24.
 
795
 **/
 
796
#define G_FILE_ATTRIBUTE_TRASH_ORIG_PATH "trash::orig-path"     /* string */
 
797
 
 
798
/**
 
799
 * G_FILE_ATTRIBUTE_TRASH_DELETION_DATE:
 
800
 *
 
801
 * A key in the "trash" namespace.  When requested against
 
802
 * items in "trash:///", will return the date and time when the file
 
803
 * was trashed. The format of the returned string is YYYY-MM-DDThh:mm:ss.
 
804
 * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
 
805
 *
 
806
 * Since: 2.24.
 
807
 **/
 
808
#define G_FILE_ATTRIBUTE_TRASH_DELETION_DATE "trash::deletion-date"  /* string */
 
809
 
786
810
GType              g_file_info_get_type                  (void) G_GNUC_CONST;
787
811
 
788
812
GFileInfo *        g_file_info_new                       (void);