commit 256bf8c6928f2accfdc1a767806ff94b4d2892f0
Author: Alexander Larsson <alexl@redhat.com>
Date:   2009-06-15

    Update NEWS for release

M	NEWS

commit eb47de12f37e6c026881e94ed44db30dc767d9cc
Author: Daniel Nylander <po@danielnylander.se>
Date:	2009-06-13

    Updated sv translation (Daniel Nylander)

M	po/sv.po

commit 58adb82001be26c72ff216506fc87fcf1c3ed7a0
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-06-12

    Bug 583494 – Audio CD isn't automounting when inserted

M	monitor/gdu/ggduvolumemonitor.c

commit e93df0133f5c6068a0d319cdbc2d9068fa21b02f
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-06-12

    Make gvfs-mount print should_automount for GVolume objects

M	programs/gvfs-mount.c

commit b18516a92cb5306b6f73de83e74a9af7ddd781c0
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-12

    [FTP] rework data connection code

    The new code doesn't rely on funny workaround flags anymore and also
    doesn't set workaround flags unconditionally after any failure.
    It now works like this:
    1) if a default method exists, try the default method.
    2) if the default method failed, try all methods in order until
    one succeeds.
    3) if any method succeeded, make it the new default method.
    This way, we take the proper method by default, and have a proper
    fallback mechanism for flaky connections/servers that sometimes
    fail to
    connect properly.

    Also, it's much easier to add new methods (like active FTP) later.

M	daemon/gvfsbackendftp.c
M	daemon/gvfsbackendftp.h
M	daemon/gvfsftptask.c

commit 1ef4f0d82da583c97c93052b6e4ccc632351746d
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-12

    [FTP] indentation fixes

M	daemon/gvfsbackendftp.h

commit 3175d847032e3105c4ade67ba0ab032c859b2b2c
Author: Ivar Smolin <okul@linux.ee>
Date:	2009-06-12

    Updating Estonian translation

M	po/et.po

commit 883ebd74c283d873cb383709d50e1b4faf60e0f1
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-11

    [FTP] get rid of connection read/write functions

    use get_data_stream() instead and call read/write on that manually.
    Reduces the number of API.

M	daemon/gvfsbackendftp.c
M	daemon/gvfsftpconnection.c
M	daemon/gvfsftpconnection.h

commit b07c3a9b238f03b203c09adbb764e88b585cfdc6
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-11

    [FTP] simplify debug id API

    Add a separate function for requesting the debug id

M	daemon/gvfsbackendftp.c
M	daemon/gvfsftpconnection.c
M	daemon/gvfsftpconnection.h
M	daemon/gvfsftpdircache.c

commit 1f97543c162244e85b08de190a38f92b4338312b
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:	2009-06-11

    Updated Spanish translation

M	po/es.po

commit a1fdb3ff05aa8731d82f82f8bb508c533dd6049e
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-11

    [FTP] improve error handling for opening files

    permission handler now sets EPERM when file exists and ENOENT when it
    doesn't.

M	daemon/gvfsbackendftp.c

commit b6637656b002baed39647d6b7c66d79d6bae4ed5
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-11

    [FTP] close data connection before invoking error handlers

    Some ftp commands like RETR require an open data connection, but
    if they
    fail, we want to invoke error handlers. To allow those handlers
    to open
    data connections themselves, we close any potentially open ones beofre
    invoking them.

M	daemon/gvfsftptask.c

commit 61fcfbd9fb9e7505f9917cc2db5665b46a90e005
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-11

    [FTP] Bug 522208 - display not available error when ...

    Try to return EPERM when there's a permission problem instead of
    returning the default error code "Operation failed".

M	daemon/gvfsbackendftp.c

commit 36bd5e3846effed5fe8252ece85c93f00c3a0761
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-11

    [FTP] use directory cache for error handling

    Fix FIXME that complained about not having access to the cache from
    error handlers.
    Now that we have access, we can use it to check if a file exists
    and/or
    is a directory instead of issuing some commands manually.

M	daemon/gvfsbackendftp.c

commit f9940f8318eb0835fb793557dbd914b856cbabf9
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-09

    [FTP] rework handling of uncached files

    The directory cache needs a callback to lookup uncachable files.
    Uncachaable files are files that can be accessed but where the parent
    directory cannot be listed.
    This has to go into the directory cache, as the directory cache
    performs
    symlink resolving and looking up symlinks may encounter such files.

    Fixes a testcase in Andreas' test collection.

M	daemon/gvfsbackendftp.c
M	daemon/gvfsftpdircache.c
M	daemon/gvfsftpdircache.h

commit 9d7a1de3017e240b0af23d2a51237d75fb14ae09
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-09

    [FTP] reuse cancellable instead of creating a new one

    Now that a corner case in glib was fixed, it's possible to use
    g_cancellable_reset() and reuse the cancellable after timeouts instead
    of creating a new one.

    If you want to avoid random hangs and g_critical()s when transferring
    files, you need glib commit ced88fd0de4aedb537552561582875b427081eeb
    I've update the glib requirements accordingly.

M	configure.ac
M	daemon/gvfsbackendftp.c

commit 1b49b7c775bfadbea13651c7406e8b12dfb42ad1
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-08

    [FTP] fix EISDIR function

    I'm not sure why the function claimed 550 answers to CWD commands
    would
    indicate that the path is a directory, but /dev/null certainly is
    not a
    directory.

M	daemon/gvfsbackendftp.c

commit e3288d2f30f592695f3df30b60f21d37f5a64e8a
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-08

    [FTP] make the pull callback emit progress callbacks

    The progress callbacks are throttled to at most once per second to not
    overload dbus for very fast connections. This is implemented somewhat
    ugly using a cancellable that interrupts once per second to ensure
    progress updates are sent.
    If someone knows a saner approach, please tell me (or better:
    provide a
    patch).

M	daemon/gvfsbackendftp.c

commit 47e7ba99968d2ee481782e6fe61fb3ccb0eb8606
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-08

    [FTP] almost implement pull vfunc

    Progress updates are not sent yet.

M	daemon/gvfsbackendftp.c
M	daemon/gvfsbackendftp.h

commit dd02f8de178ce85d09b3fc1ed31626fb19dfcb44
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-05

    [FTP] use an empty username if none was given

    fixes an assertion

M	daemon/gvfsbackendftp.c

commit d94f06322c52eaed1d7732419c6120556613f3d6
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-05

    [FTP] handle error cases when opening/closing data connection

    There were a few conditions that were checked using return_if_fail()
    that were valid.

M	daemon/gvfsftptask.c
M	daemon/gvfsftptask.h

commit 4cebb73a48341b3695bc34750eab7290dc44b629
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-05

    [FTP] keep list of busy connections

    A busy connection is a connection that is currently used as a
    handle for
    a file transfer (upload or download). If all connections are busy, we
    can just return EBUSY instead of waiting for 30 seconds for a
    connection
    to become available.

    This is mostly useful for performance when there is a maximum of 1
    connection to the server and this connection is busy transferring a
    file. Even gio functions like g_file_copy() sometimes do additional
    operations while transferring files. (It does a query_info for the
    progress callback.)

M	daemon/gvfsbackendftp.h
M	daemon/gvfsftptask.c

commit 7428ea86b4c1f04ca6530d8eff4ca60cc8894f7e
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-05

    [FTP] don't free nonexisting entry

M	daemon/gvfsftpdircache.c

commit 8207ca57b8d0bb24ca29d1bae696a892f7962295
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-05

    [FTP] compute the ftp path for the ftp_path variable

M	daemon/gvfsftpfile.c

commit b4e9f6a3241f072f6275a0a50b6909b8d1a6474b
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-04

    [FTP] whitespace changes

    - replace tabs with 8 spaces
    - remove spaces at end of line

M	daemon/gvfsbackendftp.c
M	daemon/gvfsbackendftp.h
M	daemon/gvfsftpconnection.c
M	daemon/gvfsftpconnection.h
M	daemon/gvfsftpdircache.c
M	daemon/gvfsftpdircache.h
M	daemon/gvfsftpfile.c
M	daemon/gvfsftpfile.h
M	daemon/gvfsftptask.c
M	daemon/gvfsftptask.h

commit 099ec12159453b224957f36bef4271bfd9c326b3
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-04

    [FTP] improve debugging

    - print LIST replies again
    - make connections have a debug id and use it for debugging prints

M	daemon/gvfsbackendftp.c
M	daemon/gvfsftpconnection.c
M	daemon/gvfsftpconnection.h
M	daemon/gvfsftpdircache.c
M	daemon/gvfsftpdircache.h
M	daemon/gvfsftptask.c

commit 5bca61ba06c374b5d4ef197e4805074880ddee20
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-04

    [FTP] rework cache handling

    The cache handling has been split into a separate file and structure
    now. While the API still isn't perfect, it's much clearer than before.
    It's also faster when looking up lots of symlinks.

M	daemon/Makefile.am
M	daemon/gvfsbackendftp.c
M	daemon/gvfsbackendftp.h
M	daemon/gvfsftpconnection.c
M	daemon/gvfsftpconnection.h
A	daemon/gvfsftpdircache.c
A	daemon/gvfsftpdircache.h
M	daemon/gvfsftpfile.c
M	daemon/gvfsftpfile.h

commit 5e3ce10bd814834731ac70e584a90b64ab2860fe
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-04

    [FTP] do not add double slashes when constructing relative to root

M	daemon/gvfsftpfile.c

commit 06e0e082a174b9fd4405af93ca66e8bfc9b888b9
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-04

    [FTP] properly reduce connection count when freeing connection

M	daemon/gvfsftptask.c

commit e62142b001e218d268a85f2f90993cdf42148fae
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-02

    [FTP] introduce GVfsFtpTask

    split out the old FtpConnection struct into a separate GVfsFtpTask
    structure that acts as a one-stop solution to vfuncs. It keeps
    track of
    all important structures:
    - the backend
    - the current job
    - the potential connection to the server
    - the error state
    during the lifetime of a backend vfunc and supplies convenience
    functions to ease implementing these vfuncs. The API of gvfsftptask.h
    is
    documented.

M	daemon/Makefile.am
M	daemon/gvfsbackendftp.c
M	daemon/gvfsbackendftp.h
M	daemon/gvfsftpconnection.c
M	daemon/gvfsftpconnection.h
A	daemon/gvfsftptask.c
A	daemon/gvfsftptask.h

commit 2f5c4dcfd579f9b9cceb8eb08b71d4318e9c03b6
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-03

    [FTP] split out file code

    Next step in cleaning up the ftp backend: Split out FtpFile, which is
    used for the proper translation between FTP paths and gvfs paths.

M	daemon/Makefile.am
M	daemon/gvfsbackendftp.c
A	daemon/gvfsftpfile.c
A	daemon/gvfsftpfile.h

commit 9bc35b2b30b3f43ae7385b078c0b2fdfbdd30b1e
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-05-28

    [FTP] split out connection code

    the current FtpConnection object is not flexible enough. It is
    doing too
    many things at once, namely:
    1) handling a physical connection to the ftp server
    2) handling a GVfsJob's lifetime
    Also, the file gvfsbackendftp.c is too big, counting >2000 lines.

    This is the first step in an attempt to separate these two things. It
    splits out the physical connection into different files and makes the
    old FtpConnection code use this instead.
    A side effect of this is that it includes a change so that reading
    lines
    is now done with a GDataInputStream instead of manually, as
    suggested by
    Alex.

M	daemon/Makefile.am
M	daemon/gvfsbackendftp.c
A	daemon/gvfsftpconnection.c
A	daemon/gvfsftpconnection.h

commit fd13a19ac747c5f79b32e47724e0ee1cfa36a58f
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-10

    [TRASH] pass cancellables to GFile operations

    No operations in the trash backend passed the job's cancellable
    on. This
    patch fixes this.
    It also passes on the progress callback in trash_backend_pull

M	daemon/gvfsbackendtrash.c

commit df5339b873f1f1e9dd1c1d9fe113a16b52808213
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-10

    signal the need for updates (changes wire protocol and internal API)

    Send a boolean send_progress to the daemon in the case of push/pull
    jobs
    that indicates if progress updates should be sent to the client.
    Oftentimes the daemons can avoid quite a bit of work (like querying
    file
    sizes or setting up and operating machinery required to send progress
    updates) when it's not required.

    Patch also includes fixes to daemons to ensure they don't call a NULL
    progress_callback (previously, NULL was not a possible value).

M	client/gdaemonfile.c
M	daemon/gvfsbackendobexftp.c
M	daemon/gvfsjobpull.c
M	daemon/gvfsjobpull.h
M	daemon/gvfsjobpush.c
M	daemon/gvfsjobpush.h

commit 060d792d9a47009e33ee01aac0706893deb80e9b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	2009-06-10

    Updated Norwegian bokmål translation.

M	po/nb.po

commit 27b14622b7fcc228ddd617ebd723751ccd8dadaa
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-06-08

    gdu: Use DriveDetach() method to power down hard disk enclosures

    See this commit

    http://cgit.freedesktop.org/DeviceKit/DeviceKit-disks/commit/?id=5b7350df8b63cf4178a2fe69ee740b5222130421

    for details about DriveDetach(). In a nutshell it allows us to offer
    an Eject() option on USB enclosures. Currently we don't do this since
    such devices don't have removable media.

    With this change, we'll set can_eject to TRUE if the device is
    detachable. If the device is both detachable and removable, we prefer
    Eject over Detach() when doing the deed (e.g. consider a USB optical
    drive; it is both detachable and removable).

    To sum up, the net result of this change is that users of Nautilus
    will get an Eject option and the eject icon in Nautilus' sidebar. Upon
    the user pressing Eject in the UI we'll unmount all partitions as
    usual. Then if the device is not removable, we'll invoke
    DriveDetach(). That will make DeviceKit-disks send these two SCSI
    commands

     SYNCHRONIZE CACHE
     STOP

    and then we'll unbind e.g. the usb-storage driver from the USB
    interface of the USB device. The net result is that the device appears
    to be disconnected (ie. we get remove uevents for e.g. /dev/sdb[0..N]
    and /dev/sdb) and also that the device powers down.

    Right now DeviceKit-disks only supports DriveDetach() for USB devices
    but should it gain support for doing the same thing for Firewire,
    eSATA, whatever then we'll get that support for free too.

M	monitor/gdu/ggdudrive.c

commit c16e50b7d91438f6ba5e13d18c5ae90bcdd4a51c
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-06-08

    show speed in progress updates of gvfs-copy

M	programs/gvfs-copy.c

commit c371751552a7ed6ecfd76077e8ec080a61fe6f9b
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-06-05

    gphoto2: Disable debug spew

    This errornously got introduced as part of the last commit.

M	daemon/gvfsbackendgphoto2.c

commit 7cffd6b46384f0290e641784f8c5ecb7946bcff2
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-06-05

    gphoto2: Fix gphoto2 backend to work with Canon EOS 5D

    This bug was introduced during the 2.25 cycle as part of supporting
    multiple storage heads. Previously we didn't use basedir, now we
    do. And we failed to check if the basedir is actually set.

M	daemon/gvfsbackendgphoto2.c
M	monitor/gphoto2/ggphoto2volumemonitor.c

commit 3b64f78030aff331552f420d2e85f1d143edd10b
Author: Erdal Ronahi <erdal.ronahi@gmail.com>
Date:	2009-06-05

    Updated Kurdish translation

M	po/ku.po

commit e646c3d703e74a3cbef5cc7a7a4330a483718d73
Author: Christian Persch <chpe@gnome.org>
Date:	2009-06-04

    Correct "srdcir" typo to "srcdir"

M	Makefile.am

commit ee581405d10eb9ee9b516717e1b2e5bfefee9ab0
Author: Mattias Põldaru <mahfiaz gmail com>
Date:	2009-06-04

    Updating Estonian translation

M	po/et.po

commit 384b3a679e3cf5138ada51338d613df517e0658a
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-06-02

    Bug 583704 – undefined reference to
    `gdu_error_check_polkit_not_authorized'

    With the new polkit 1.0 version that gnome-disk-utility is now using,
    authorizations are obtained out-of-band. So we don't need to handle it
    here.

M	monitor/gdu/Makefile.am
M	monitor/gdu/ggduvolume.c
D	monitor/gdu/polkit.c
D	monitor/gdu/polkit.h

commit 586a4e0a2ca6d3c021e8eaf509fb689e0d398082
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-05-26

    [FTP] clarify code

    Don't use:
      if (error)
	/* error handling */
      else
	/* normal code */;
      return;

    Instead use:
      if (error) {
	/* error handling */
	return;
      }
      /* normal code */
      return;

    This avoids lots of indentation for normal code and clarifies what the
    default flow of the code is.

M	daemon/gvfsbackendftp.c

commit 0891475dd5cd3b6ff639d720f9e4f9d266874eea
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-05-26

    [FTP] ensure the same remote address is used for all connections

    Save the address of the current connection, so that for future
    connections, we are sure to connect to the same machine.
    The idea here is to avoid using mirrors that have a different state,
    which might cause Heisenbugs.

M	daemon/gvfsbackendftp.c

commit 9047c1b587218bcc366b48fa5386b45ce120f53f
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-05-25

    [FTP] make ftp backend use gnio instead of libsoup

    This removes all traces of libsoup and uses gnio replacement functions
    instead. Note that various things have subtle differences, so
    expect new
    bugs.

M	daemon/Makefile.am
M	daemon/gvfsbackendftp.c

commit f5b86958b0706ee3a290cede78483d66607ed212
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-05-25

    require gnio for ftp backend

M	configure.ac

commit 8b1f581fbf7eed686d20cd729cd6620a0eabec01
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:	2009-05-26

    Updated Spanish translation

M	po/es.po

commit 7a86c013a21741d61154969872bf8e1cfd1165e6
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-05-26

    [FTP] rework creating the root file info

    There is no need to make the root file info backend specific, as
    it just
    returns a bunch of default values anyway. Also, we want to use
    the host
    display name in there.

M	daemon/gvfsbackendftp.c

commit 4b9af0f85c49d243febddff1f2bdf2409bed9cec
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-05-26

    [FTP] keep the host's display name around

    Previously we used soup_address_get_name() to query the host name on
    demand, but this will not be possible with gnio.

M	daemon/gvfsbackendftp.c

commit 11c321f41cb0b5fa3bab8ec1eb93c20c1b79a6d0
Author: Christian Kellner <gicmo@gnome.org>
Date:	2009-05-26

    [dav] Ensure we have a valid username (#582373)

    If g_mount_source_ask_password didn't fill in a new username fall
    back to the one we pre-filled it with.
    Patch by Frederic Peters <fpeters@0d.be>

M	daemon/gvfsbackenddav.c

commit c8e37497c132722a6d99a8c9511a90e90bcf3da9
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-05-26

    [FTP] rework directory listing

    This is in preparation to both making directory listing caches simpler
    and to prepare for a gnio switch.

    The code gets rid of reading the directory listing line by line and
    instead reads it as one big chunk and splits it into lines upon
    parsing.

M	daemon/gvfsbackendftp.c

commit dfc299b02ae45c6f651bf532e88b56bbcc554ab1
Author: Christian Kellner <gicmo@gnome.org>
Date:	2009-05-26

    Require glib 2.20.1

    Due to the use of g_cancellable_connect/disconnect we need
    glib 2.20.1.

M	configure.ac

commit f2ba1297f17dbbd7dd72e031f347adb0de045fb8
Author: Pavol Šimo <palo.simo@gmail.com>
Date:	2009-05-20

    Updated Slovak translation

M	po/sk.po

commit 5bebce4592fee584bbc6db29a3e62b4005a1a71f
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-05-15

    Use new race-free cancellable signal connect APIs (#572844)

M	client/gdaemonfileenumerator.c
M	common/gdbusutils.c
M	daemon/gvfsbackendftp.c

commit 87741642cd920ef4e48d09755be1cc6db6a0774b
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-05-13

    [ftp] This data connection close isn't needed

    While it oesn't hurt either, I'm removing it because it violates the
    rule that data connections should be closed before receiving the reply
    indicating the transfer is done on the command connection.

M	daemon/gvfsbackendftp.c

commit 5073d2736d6a83de04e749ae5952071da3d1ccbc
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:	2009-05-12

    CDDA: allow query well-formed filenames only

    This will check for ".wav" suffix as long as sscanf()
    doesn't care of the rest of the formatting string after
    last placeholder. Querying filenames like
    "Track 10.nonsense" will now throw an error.

    Partially fixes https://bugzilla.redhat.com/show_bug.cgi?id=499266

M	daemon/gvfsbackendcdda.c

commit edb7ccb661746fd55ed3b935b44a61d011a0807c
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-05-12

    Ref the infos in next_files_finish (#582195)

    In later glib versions setting the GSimpleAsyncResult gpointer data
    frees the old data using the destroy notify, which can cause crashes
    since we return it. So, just copy+ref the list instead of trying
    to steal
    the asyncresult one.

M	client/gdaemonfileenumerator.c

commit d0a339d10b789c53352b61b291eb55d67f770254
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-05-08

    Emit the new pre-unmount signal on GMounts (#576105)

M	monitor/proxy/gproxyshadowmount.c
M	monitor/proxy/gproxyvolumemonitor.c

commit e4cca36cab78b1951db5e7aa7f590599a5d5c290
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:	2009-05-07

    FTP: parse file sizes > 4GB correctly

    Use 64-bit strtoull() instead of 32-bit strtoul()
    when converting string to number.

    https://bugzilla.redhat.com/show_bug.cgi?id=499286

M	daemon/gvfsbackendftp.c

commit 59dd3b33a71a930651f23142e2a7d7e57727144f
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-05-01

    Fix bug where drives are not ignored as they ought to be

    This should fix part of

     https://bugzilla.redhat.com/show_bug.cgi?id=498649#c14

    (the other part is fixed in the Fedora livecd scripts)

M	monitor/gdu/ggduvolumemonitor.c

commit 3f3f21fe6e2bdac8fd6acf048da6fb228adde092
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-05-01

    Use new gnome-disk-utility API to figure out when media was inserted

    This fixes a problem with Nautilus automounting newly created volumes
    appearing as a result of formatting/partitioning.

M	monitor/gdu/ggdudrive.c

commit 8488ee446cf2ddb1380065bc0f983dc60682f7fc
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-15

    Pass the 'flush' mount option for vfat

    This mount option makes the vfat filesystem driver flush data more
    often. As a consequence

     1. users never get to see the gnome-disk-utility notification daemon
	dialog just added

	 http://people.freedesktop.org/~david/gdu-unmount-busy-1.png

	but that's useful for other filesystems as well.

     2. The Nautilus copy dialog stays up until things are on the disk

    We do this in gvfs rather than DeviceKit-disks because in some
    scenarios 'flush' may be unwanted and there is currently no way to
    turn it off (e.g. no 'noflush' or 'flush=0' option).

    Ideally the kernel would get this kind of thing right by itself.

M	monitor/gdu/ggduvolume.c

commit 1ba5521dc86d7be59fc809bb7c118275fad8e4c8
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-15

    Use new gnome-disk-utility API to hide unwanted devices

    This is to resolve bugs like

     https://bugzilla.redhat.com/show_bug.cgi?id=495170

M	monitor/gdu/ggduvolumemonitor.c

commit 4a58fb55b55ad2608121059c86bd338d3db20233
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-13

    Bug 576083 – pre-unmount signals not being triggered

    Basically emit GVolumeMonitor::mount-pre-unmount on the volume monitor
    and retry unmount operation a couple of times.

M	monitor/gdu/ggdumount.c

commit 3c1f25749807eeede01068b885b0b618251a225a
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-13

    Show user-mountable fstab entries

    Show all entries from /etc/fstab for which

     - the entry is user mountable
     - the mount point is in /media or $HOME
     - if it's a /dev file make sure it exists and is not handled
       by DeviceKit-disks already

    For example this /etc/fstab entry

     "quad.local:/media/FusionMedia /media/FusionMedia nfs defaults,users
     0 0"

    makes Nautilus display this when unmounted

     http://people.freedesktop.org/~david/gvfs-user-mountable-fstab-entries.png

    and these GVolume and GMount objects to appear when mounted

     Volume(0): FusionMedia
       Type: GProxyVolume (GProxyVolumeMonitorGdu)
       themed icons:  [folder-remote]  [folder]
       can_mount=1
       can_eject=0
       Mount(0): FusionMedia -> file:///media/FusionMedia
	 Type: GProxyMount (GProxyVolumeMonitorGdu)
	 themed icons:	[folder-remote]  [folder]
	 can_unmount=1
	 can_eject=0
	 is_shadowed=0

    This should resolve http://bugzilla.gnome.org/show_bug.cgi?id=536292

M	monitor/gdu/ggdumount.c
M	monitor/gdu/ggduvolume.c
M	monitor/gdu/ggduvolume.h
M	monitor/gdu/ggduvolumemonitor.c

commit 6d96b756d39a924d1244388f20d93a0a96d06698
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-11

    Never ignore drives without media

M	monitor/gdu/ggduvolumemonitor.c

commit d51ca4c383628ff06fbd37a1a3622d394ddfc0d5
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-11

    Ignore drives without volumes

    This fixes a problem on some dmraid setups where we have drives
    without any partitions (the dmraid boot scripts removes all partitions
    (!)). See https://bugzilla.redhat.com/show_bug.cgi?id=495152 for more
    details.

    This fix is also consistent with the policy of ignoring drives where
    all volumes are ignored. E.g. prior to this patch we didn't shown
    neither sdb if sdb1 was a the only unrecognized partition on sdb.. so
    if you delete sdb1, it would be natural to keep hiding sdb (which is
    what this patch does).

M	monitor/gdu/ggduvolumemonitor.c

commit b8f430b51f4071a7c7ba6601caf20f817fda531d
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-09

    Bug 576587 – allow eject even on non-ejectable volumes

    This fixes a host of problems with e.g. Kindle or iPod devices
    requiring to be "ejected" to display messages such as

     "If you want to use your Kindle and continue charging, please eject
     your Kindle from your computer."

    to the user.

    Previously we relied on HAL fdi files or similar to tag that such
    devices needed to be ejectable. Now we just set everything as
    ejectable.

    For this to really work well the Nautilus patch in

     http://bugzilla.gnome.org/show_bug.cgi?id=574067

    needs to be reverted.

M	monitor/gdu/ggdudrive.c

commit 39e79a8e40355cd235d56a8695c3b0deae5e76c7
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-09

    Ignore drives if all volumes of the drive are ignored

M	monitor/gdu/ggduvolumemonitor.c

commit 965a1d6ca3556e2c93a30f230f7529b7eee8c525
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-09

    Don't add a volume if the device is mounted and ignored

    This fixes a problem where e.g. /dev/sdb1 a) is not referenced in
    /etc/fstab; and b) is mounted in an ignored location e.g. /mnt/live.

    Specifically this bug affects the Fedora Live CD, see
    https://bugzilla.redhat.com/show_bug.cgi?id=495033 for details.

M	monitor/gdu/ggduvolumemonitor.c

commit 7d8e6aed725cae07f8e02a4fa6facac356008f8c
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-09

    Remove debug spew

M	monitor/gdu/ggduvolume.c

commit f1806a6055af42213362d7d686e6844abf4bf027
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-09

    Avoid automounting volumes on virtual and unknown buses

    Basically we want to avoid automounting volumes from

     1. drives on a 'virtual' or unset bus
     2. volumes without a drive

    This is to avoid interference with things like Fedora's livecd-tools
    that use device-mapper to set up images. See

     https://bugzilla.redhat.com/show_bug.cgi?id=494144 for more

    background.

    In the future we might want to relax 1. so automounting things like
    Linux MD and LVM2 devices work.

M	monitor/gdu/ggduvolume.c

commit fff39a618cd0ce467e6629cee461784e404cca83
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:	2009-04-09

    Fix how we determine if a volume is ignored

    This fixes a typo - wrong assignment of device file when testing
    whether the
    volume should be ignored or not. It led to empty GVolume list
    associated to a
    GDrive and thus inability to mount anything via computer://

    Signed-off-by: David Zeuthen <davidz@redhat.com>

M	monitor/gdu/ggduvolumemonitor.c

commit 794ff41937d194287c12ea7b4dbb991a1ea38a41
Author: David Zeuthen <davidz@redhat.com>
Date:	2009-04-09

    Bug 573826 – gdu volume monitor

    Add the GNOME Disk Utility based volume monitor, see

     http://bugzilla.gnome.org/show_bug.cgi?id=573826
     http://mail.gnome.org/archives/gvfs-list/2009-March/msg00002.html

    for details.

M	configure.ac
M	monitor/Makefile.am
A	monitor/gdu/Makefile.am
A	monitor/gdu/gdu-volume-monitor-daemon.c
A	monitor/gdu/gdu.monitor
A	monitor/gdu/ggdudrive.c
A	monitor/gdu/ggdudrive.h
A	monitor/gdu/ggdumount.c
A	monitor/gdu/ggdumount.h
A	monitor/gdu/ggduvolume.c
A	monitor/gdu/ggduvolume.h
A	monitor/gdu/ggduvolumemonitor.c
A	monitor/gdu/ggduvolumemonitor.h
A	monitor/gdu/org.gtk.Private.GduVolumeMonitor.service.in
A	monitor/gdu/polkit.c
A	monitor/gdu/polkit.h

commit 37af452e511ac1698965da70ad4f48c72b2bb42e
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:	2009-04-30

    Updated Oriya Translation.

M	po/or.po

commit 345e4b2d5849294286f6a740ae43f22fb8a09a79
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-04-26

    split create_file_info() function

    The previous function was looking ugly due to early returns.
    This caused leaks and made it hard to read.

M	daemon/gvfsbackendftp.c

commit fa3fa7c8e30d680678c59d5fc60305090fc8661f
Author: Andreas Henriksson <andreas@fatal.se>
Date:	2009-04-26

    ftp: try to find hidden file/dir even when there's nothing to
    enumerate.

    Don't bail out early, always try to find hidden files directories.
    Fixes case when there's a symlink to a subdir of a
    hidden directory which we can't enumerate. (#559142)

M	daemon/gvfsbackendftp.c

commit 22c55fb6df556517cac030fd4fafce46c9aa0342
Author: Benjamin Otte <otte@gnome.org>
Date:	2009-04-26

    Bug 580125 – Logging in to a FTP server only works for the 2nd
    attempt

    Various fixes for sending the OPTS command:
    1) only send it after we're sure we've read the FEAT response (which
       moves it to after the login)
    2) ignore potential errors from the OPTS command

    Also fixes:
    Bug 580124 – Copying from FTP crashes

M	daemon/gvfsbackendftp.c

commit e53be4e80e9194ad4917102e243cecec7bd2a665
Author: Andreas Henriksson <andreas@fatal.se>
Date:	2009-04-26

    use FTP_FEATURES_DEFAULT macro

    the previous code was spelling out the default feature instead

M	daemon/gvfsbackendftp.c

commit 255e56b873c9eebad72ddd5c0e38927ae05d1caa
Author: Andreas Henriksson <andreas@fatal.se>
Date:	2009-04-26

    fix typo in comment

M	daemon/gvfsbackendftp.c

commit c580f3a886d6e4c94bbe12cd508ec78caf74df66
Author: Jordi Mas i Hernandez <jmas@softcatala.org>
Date:	2009-04-22

    Minor fixes to Catalan translation

M	po/ca.po

commit a16dc3208f437d3176f10835dd5ac302189ec947
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-20

    Bump master to 1.3.1 post branch

    Further 1.2.x work happens on the gnome-2-26 branch

M	configure.ac

commit c14ba27f69736c8e1f88c7692c81d2473559438c
Author: Funda Wang <fundawang@gmail.com>
Date:	2009-04-17

    Updated zh_CN translation.

M	po/ChangeLog
M	po/zh_CN.po

commit 4e49395240190526efe8833c802ee49de8b3915f
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-17

    Don't trust remote permissions mask fully

    We don't actually know what gids we're in, and also there may be other
    things not visible via sftp like ACLs that decide the user
    permissions. So, we only use the permissions for group and other if
    they result in a positive, otherwise we leave the attibute unset
    (meaning "don't know").

M	daemon/gvfsbackendsftp.c

commit e6d9c864f508aebf8e6bb8d67c5978f8f077137d
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-17

    Fix up .gitignore files

    Update old ignore files and add new ones as needed

M	.gitignore
M	client/.gitignore
M	daemon/.gitignore
A	monitor/gphoto2/.gitignore
A	monitor/hal/.gitignore
M	po/.gitignore
A	programs/.gitignore

commit a8620dfb94955fd9e6678dc936b7f97d8610df00
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-17

    Add rules to autogenerate ChangeLog

M	Makefile.am

commit cd9a1633a35b1243805c0e531a1f7bd75160a7d4
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-17

    Mention micro commits in README.commits

M	README.commits

commit 6fa515051dc7f082896151545a41a29853f4a3bc
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-17

    Add README.commits and dist it

    Add file explaining how we want commits to look.
    Also dist gvfs.doap and the ChangeLog.pre-1-2

M	Makefile.am
A	README.commits

commit 8cd532cf7715a4791d8156a711ecb7344b27cb46
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-17

    Move ChangeLog to ChangeLog.pre-1-2

    We're not using manual ChangeLogs anymore.

R099	ChangeLog	ChangeLog.pre-1-2

commit ec63735ed67da8da1cb80994efed477179c1b8fc
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-17

    Add gvfs.doap file

    Add short description for cgit

A	gvfs.doap

commit 5acc130a5a08d54f5701d58309c9b53352859c2d
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-16

    Add g_vfs_backend_is_mounted()

    2009-04-16	Alexander Larsson  <alexl@redhat.com>

	* daemon/gvfsbackend.[ch]:
	Add g_vfs_backend_is_mounted()

	* daemon/gvfsdaemon.c:
	(g_vfs_daemon_re_register_job_sources):
	Don't re-register backends that have not finished mounted
	yet. (#578861)



    svn path=/trunk/; revision=2378

M	ChangeLog
M	daemon/gvfsbackend.c
M	daemon/gvfsbackend.h
M	daemon/gvfsdaemon.c

commit 62a573a22dc12f0f6d6afddc41d93059dc19a90e
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-16

    Bug 578574 – always show drive names in computer://

    2009-04-16	Alexander Larsson  <alexl@redhat.com>

	Bug 578574 – always show drive names in computer://

	* daemon/gvfsbackendcomputer.c:
	(recompute_files):
	If mount has a drive, use its name as part of the display name.
	Patch from David Zeuthen



    svn path=/trunk/; revision=2377

M	ChangeLog
M	daemon/gvfsbackendcomputer.c

commit ced485ed5cf632e5f48f31546a4c731e8984729d
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-16

    Bug 523420 – gvfs-bash-completion.sh has a shebang and is executable

    2009-04-16	Alexander Larsson  <alexl@redhat.com>

	Bug 523420 – gvfs-bash-completion.sh has a shebang and is
	executable

	* programs/Makefile.am:
	Don't install gvfs-bash-completion.sh as executable

	* programs/gvfs-bash-completion.sh:
	Remove shebang



    svn path=/trunk/; revision=2376

M	ChangeLog
M	programs/Makefile.am
M	programs/gvfs-bash-completion.sh

commit ba5f948aad464ceafabc3d2e3d4994ae6867f4da
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-13

    Pick up SSH_AUTH_SOCK from gnome-keyring (#578708) Patch from
    Stef Walter.

    2009-04-13	Alexander Larsson  <alexl@redhat.com>

	* daemon/gvfsbackendsftp.c:
	Pick up SSH_AUTH_SOCK from gnome-keyring (#578708)
	Patch from Stef Walter.


    svn path=/trunk/; revision=2375

M	ChangeLog
M	daemon/gvfsbackendsftp.c

commit 975d034c64814608d35bd191fad458d6866f81a9
Author: Alexander Larsson <alexl@redhat.com>
Date:	2009-04-13

    Post release version bump

    2009-04-13	Alexander Larsson  <alexl@redhat.com>

	* configure.ac:
	Post release version bump

    === gvfs 1.2.2 ===

     line, and those below, will be ignored--

    M	 ChangeLog
    M	 configure.ac
    M	 po/ChangeLog

    svn path=/trunk/; revision=2374

M	ChangeLog
M	configure.ac
M	po/ChangeLog
