summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* programs: Add simple gvfs-mime test applicationBastien Nocera2011-08-263-0/+175
| | | | | | List the apps registered for a particular mime-type, and set a particular application as the default handler for a mime-type.
* Updated Norwegian bokmål translationKjartan Maraas2011-08-261-123/+390
|
* Revert "afp: start read loop directly on connect"Carl-Anton Ingmarsson2011-08-263-10/+16
| | | | This reverts commit 5c1242031634859004ce330581342c273a251d20.
* Revert "afp: reuse g_vfs_afp_connection_send_command in the sync version"Carl-Anton Ingmarsson2011-08-264-95/+128
| | | | This reverts commit ecc1730d3bfdc11fa07f15893267a7ea054328f1.
* Updated Swedish translationDaniel Nylander2011-08-261-361/+552
|
* afp: change open_fork to be able to return file information for the opened forkCarl-Anton Ingmarsson2011-08-251-34/+66
|
* Updated POTFILES.inPiotr Drąg2011-08-251-2/+6
|
* afp: make the afp backends optionalCarl-Anton Ingmarsson2011-08-252-3/+25
|
* afp: start read loop directly on connectCarl-Anton Ingmarsson2011-08-253-16/+10
| | | | | also change g_vfs_afp_connection_get_server_info to take a GSocketConnectable instead of a GVfsAfpConnection
* afp: reuse g_vfs_afp_connection_send_command in the sync versionCarl-Anton Ingmarsson2011-08-254-128/+95
|
* afp: add set_unix_privs functionCarl-Anton Ingmarsson2011-08-251-72/+128
| | | | also use it in our attribute setting code
* afp: create file if it doesn't exist when doing replaceCarl-Anton Ingmarsson2011-08-251-73/+75
|
* afp: implement copyCarl-Anton Ingmarsson2011-08-251-5/+218
|
* afp: add copy_file function wrapping FPCopyFileCarl-Anton Ingmarsson2011-08-252-1/+129
|
* afp: add move_and_rename utility functionCarl-Anton Ingmarsson2011-08-251-35/+85
|
* afp: use FPGetFileDirParms when querying root volume infoCarl-Anton Ingmarsson2011-08-251-44/+32
|
* afp: query for and set G_FILE_OWNER_[USER|USER_REAL|GROUP]Carl-Anton Ingmarsson2011-08-252-4/+239
|
* afp: fail replace early if the given file is a directoryCarl-Anton Ingmarsson2011-08-251-10/+10
|
* afp: print errors for some more results from FPExchangeFilesCarl-Anton Ingmarsson2011-08-252-0/+9
|
* afp: check files etag when doing a replaceCarl-Anton Ingmarsson2011-08-251-4/+46
|
* afp: retrieve etag on close_writeCarl-Anton Ingmarsson2011-08-251-9/+65
|
* afp: use delete function to delete temporary fileCarl-Anton Ingmarsson2011-08-251-17/+1
|
* afp: change close_fork to take a gint16 fork_refnum parameterCarl-Anton Ingmarsson2011-08-251-7/+7
|
* afp: small cleanup in create_fileCarl-Anton Ingmarsson2011-08-251-27/+30
| | | | | use g_simple_async_result_set_op_res_gpointer to store data needed for the operation
* afp: replace some tabs with spacesCarl-Anton Ingmarsson2011-08-251-4/+4
|
* afp: fix some memoryleaksCarl-Anton Ingmarsson2011-08-255-75/+76
| | | | | | change g_vfs_afp_connection_send_command to take a "char *reply_buf" paramater to use for storing the reply data instead of reusing the buf data pointer in GVfsAfpCommand
* afp: fix some leaks of GSimpleAsyncResultsCarl-Anton Ingmarsson2011-08-253-32/+38
|
* afp: change update_cache to use a GIO like apiCarl-Anton Ingmarsson2011-08-251-51/+67
|
* afp: read directly into the given read bufferCarl-Anton Ingmarsson2011-08-253-21/+57
| | | | this way we can skip an memcpy and gain some extra performance
* afp: add a read_all_async functionCarl-Anton Ingmarsson2011-08-251-32/+120
|
* afp: print better error message when trying to delete an open fileCarl-Anton Ingmarsson2011-08-251-0/+4
|
* afp: avoid useless copy when writingCarl-Anton Ingmarsson2011-08-253-77/+201
|
* afp: mount volumes as the user who is logged in in the afpbrowse backendCarl-Anton Ingmarsson2011-08-252-3/+17
| | | | | this way you don't have to write your user credentials twice if you're first browsing a server and then mounting one of it's volumes.
* afp: small indent fixCarl-Anton Ingmarsson2011-08-251-2/+2
|
* afp: fix compile warningsCarl-Anton Ingmarsson2011-08-251-3/+4
|
* afp: implement enumerate for AfpVersion < 3.1Carl-Anton Ingmarsson2011-08-251-35/+46
|
* afp: small indenting fixesCarl-Anton Ingmarsson2011-08-252-6/+6
|
* afp: set etag from mod time and fix bug when retreiving afp::children-countCarl-Anton Ingmarsson2011-08-251-4/+13
|
* afp: return G_IO_ERROR_IS_DIRECTORY when trying to open a directory for readCarl-Anton Ingmarsson2011-08-251-2/+2
|
* afp: implement moveCarl-Anton Ingmarsson2011-08-252-61/+377
|
* afp: add and use defines for afp specific file attributesCarl-Anton Ingmarsson2011-08-251-8/+15
|
* afp: fix renaming of files/directories outside of the root directoryCarl-Anton Ingmarsson2011-08-251-22/+55
| | | | | we now first query for the file's/directory's parent dir id which we then use in the FPRename command
* afp: fix bug where we accidentaly popped two requests from the send queueCarl-Anton Ingmarsson2011-08-251-1/+0
|
* afp: use g_strcmp0 instead of g_str_equal in g_slist_find_customCarl-Anton Ingmarsson2011-08-251-5/+5
|
* afp: remove debug printCarl-Anton Ingmarsson2011-08-251-1/+0
|
* afp: implement setting of G_FILE_ATTRIBUTE_UNIX_[MODE|UID|GID]Carl-Anton Ingmarsson2011-08-252-2/+202
|
* include gvfsdaemonprotocol.h in gvfsjobsetattribute.h since it uses ↵Carl-Anton Ingmarsson2011-08-251-0/+1
| | | | | | GDbusAttributeValue https://bugzilla.gnome.org/show_bug.cgi?id=655264
* afp: set G_FILE_ATTRIBUTE_ACCESS_CAN_[READ|WRITE|EXECUTE] from unix privsCarl-Anton Ingmarsson2011-08-251-1/+43
|
* afp: use goffset in g_vfs_afp_reply_seekCarl-Anton Ingmarsson2011-08-252-3/+3
|
* afp: skip undocumented pad bytes after UTF8Name_offsetCarl-Anton Ingmarsson2011-08-251-0/+2
|