You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gnome-vfs2/gnome-vfs-2.0.2-read-only.p...

53 lines
1.2 KiB

auto-import changelog data from gnome-vfs2-2.2.2-4.src.rpm Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com> - debuginfo rebuild Mon Feb 24 2003 Alexander Larsson <alexl@redhat.com> 2.2.2-3 - Added patch to fix smb crash (#84982) Mon Feb 24 2003 Alexander Larsson <alexl@redhat.com> 2.2.2-2 - Add patch to fix notify race (#84668) Wed Feb 12 2003 Alexander Larsson <alexl@redhat.com> 2.2.2-1 - 2.2.2, fixes bad memleak (#83791) Tue Feb 11 2003 Havoc Pennington <hp@redhat.com> 2.2.1-3 - kill menu editing again, it was very very broken Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 2.2.1-2 - fix file list (#68226) - prereq GConf2 Mon Feb 10 2003 Alexander Larsson <alexl@redhat.com> 2.2.1-1 - Update to 2.2.1. fixes gnome-theme-manager hang Thu Feb 06 2003 Havoc Pennington <hp@redhat.com> 2.2.0-7 - move to menu editing modules.conf by default, we'll see if it works Tue Jan 28 2003 Matt Wilson <msw@redhat.com> 2.2.0-6 - use LIBTOOL=/usr/bin/libtool Mon Jan 27 2003 Havoc Pennington <hp@redhat.com> - it would help to *install* the stupid menu edit conf file - update the vfolder-hacks patch with some fixes Fri Jan 24 2003 Havoc Pennington <hp@redhat.com> - hack up editable vfolder backend to maybe work (still not the default config file) Wed Jan 22 2003 Havoc Pennington <hp@redhat.com> - include a non-default config file to use new vfolder method - build the new vfolder method Wed Jan 22 2003 Tim Powers <timp@redhat.com> - rebuilt Tue Jan 21 2003 Alexander Larsson <alexl@redhat.com> - Update to 2.2.0 Mon Jan 13 2003 Havoc Pennington <hp@redhat.com> - variation on the subfolders hack to try to fix it Sat Jan 11 2003 Havoc Pennington <hp@redhat.com> - fix bug where empty folders with empty subfolders would still be visible. Sat Jan 11 2003 Havoc Pennington <hp@redhat.com> - finish adapting desktop-method.c to underscore-prefixing action Sat Jan 11 2003 Havoc Pennington <hp@redhat.com> - adapt desktop-method.c to underscore-prefixing action Sat Jan 11 2003 Havoc Pennington <hp@redhat.com> - hardcode <DontShowIfEmpty>, it's stupid to ever override this. Sat Jan 11 2003 Havoc Pennington <hp@redhat.com> - make network:/// use libdesktop.so, and modify libdesktop.so to support it Sat Jan 11 2003 Havoc Pennington <hp@redhat.com> - Revert to George's vfolder backend from gnome-vfs-2.0.2 or so - put back libdesktop.so - don't build the new vfolder backend Wed Jan 08 2003 Alexander Larsson <alexl@redhat.com> 2.1.6-2 - Removed __libdir fix that was fixed upstream Wed Jan 08 2003 Alexander Larsson <alexl@redhat.com> 2.1.6-1 - Update to 2.1.6 Tue Jan 07 2003 Nalin Dahyabhai <nalin@redhat.com> 2.1.5-3 - rebuild Mon Dec 16 2002 Tim Powers <timp@redhat.com> 2.1.5-2 - rebuild Mon Dec 16 2002 Alexander Larsson <alexl@redhat.com> 2.1.5-1 - Update to 2.1.5 Thu Dec 12 2002 Nalin Dahyabhai <nalin@redhat.com> - use OpenSSL's pkg-config information, if available
20 years ago
--- gnome-vfs-2.0.2/modules/vfolder-desktop-method.c.read-only 2002-08-23 11:45:03.000000000 -0400
+++ gnome-vfs-2.0.2/modules/vfolder-desktop-method.c 2002-08-23 12:09:27.000000000 -0400
@@ -1162,7 +1162,8 @@
folder->entry.type = ENTRY_FOLDER;
folder->entry.name = g_strdup (name);
folder->entry.refcount = 1;
-
+ folder->read_only = TRUE;
+
return folder;
}
@@ -6084,28 +6085,28 @@
static GnomeVFSMethod method = {
sizeof (GnomeVFSMethod),
do_open,
- do_create,
+ NULL, /* do_create, */
do_close,
do_read,
- do_write,
+ NULL, /* do_write, */
do_seek,
do_tell,
- do_truncate_handle,
+ NULL, /* do_truncate_handle, */
do_open_directory,
do_close_directory,
do_read_directory,
do_get_file_info,
do_get_file_info_from_handle,
do_is_local,
- do_make_directory,
- do_remove_directory,
- do_move,
- do_unlink,
+ NULL, /* do_make_directory, */
+ NULL, /* do_remove_directory, */
+ NULL, /* do_move, */
+ NULL, /* do_unlink, */
do_check_same_fs,
- do_set_file_info,
- do_truncate,
- NULL /* find_directory */,
- NULL /* create_symbolic_link */,
+ NULL, /* do_set_file_info, */
+ NULL, /* do_truncate, */
+ NULL /* find_directory */,
+ NULL /* create_symbolic_link */,
do_monitor_add,
do_monitor_cancel
};