From f2ab953f48ab69a7a205578f4cc37e289e962ee1 Mon Sep 17 00:00:00 2001 From: Gian Mario Tagliaretti Date: Sat, 11 Apr 2009 08:18:40 +0000 Subject: Add gio.File and gio.Seekable in docs, gio.File it's not yet completed 2009-04-11 Gian Mario Tagliaretti * docs/Makefile.am: * docs/reference/pygio-classes.xml: * docs/reference/pygio-constants.xml: * docs/reference/pygio-file.xml: * docs/reference/pygio-seekable.xml: Add gio.File and gio.Seekable in docs, gio.File it's not yet completed only the index is. svn path=/trunk/; revision=1058 --- docs/reference/pygio-constants.xml | 142 +++++++++++++++++++++++++++++++++++++ 1 file changed, 142 insertions(+) (limited to 'docs/reference/pygio-constants.xml') diff --git a/docs/reference/pygio-constants.xml b/docs/reference/pygio-constants.xml index b2bcbf2..6bddc93 100644 --- a/docs/reference/pygio-constants.xml +++ b/docs/reference/pygio-constants.xml @@ -17,6 +17,10 @@ + + + + @@ -391,6 +395,144 @@ + + Gio File Create Flags Constants + + + Flags used when an operation may create a file. + + + + + gio.FILE_CREATE_NONE + + No flags set. + + + + gio.FILE_CREATE_PRIVATE + + Create a file that can only be accessed by the current user. + + + + gio.FILE_CREATE_REPLACE_DESTINATION + + + Replace the destination as if it didn't exist before. Don't try + to keep any old permissions, replace instead of following links. This is + generally useful if you're doing a "copy over" rather than a "save new version of" + replace operation. You can think of it as "unlink destination" before writing + to it, although the implementation may not be exactly like that. + + + + + + + + Gio File Copy Flags Constants + + + Flags used when copying or moving files. + + + + + gio.FILE_COPY_NONE + + No flags set. + + + + gio.FILE_COPY_OVERWRITE + + Overwrite any existing files. + + + + gio.FILE_COPY_BACKUP + + Make a backup of any existing files. + + + + gio.FILE_COPY_NOFOLLOW_SYMLINKS + + Don't follow symlinks. + + + + gio.FILE_COPY_ALL_METADATA + + Copy all file metadata instead of just default set used for copy + (see gio.FileInfo). + + + + gio.FILE_COPY_NO_FALLBACK_FOR_MOVE + + Don't use copy and delete fallback if native move not supported. + + + + gio.FILE_COPY_TARGET_DEFAULT_PERMS + + Leaves target file with default perms, instead of setting the source file perms. + + + + + + + Gio File Copy Monitor Constants + + + Flags used to set what a + gio.FileMonitor + will watch for. + + + + + gio.FILE_MONITOR_NONE + + No flags set. + + + + gio.FILE_MONITOR_WATCH_MOUNTS + + Watch for mount events. + + + + + + + Gio File Create Flags Constants + + + Flags used when querying a + gio.FileInfo. + + + + + gio.FILE_QUERY_INFO_NONE + + No flags set. + + + + gio.FILE_QUERY_INFO_NOFOLLOW_SYMLINKS + + Don't follow symlinks. + + + + + Gio Mount Mount Flags Constants -- cgit