[Goodies-commits] r6543 - in sion/trunk: . src

Enrico Troeger enrico at xfce.org
Sun Jan 25 13:26:21 CET 2009


Author: enrico
Date: 2009-01-25 12:26:20 +0000 (Sun, 25 Jan 2009)
New Revision: 6543

Modified:
   sion/trunk/ChangeLog
   sion/trunk/README
   sion/trunk/sion.1.in
   sion/trunk/src/main.c
   sion/trunk/src/window.c
Log:
Fix spelling of GVfs.

Modified: sion/trunk/ChangeLog
===================================================================
--- sion/trunk/ChangeLog	2009-01-25 12:26:08 UTC (rev 6542)
+++ sion/trunk/ChangeLog	2009-01-25 12:26:20 UTC (rev 6543)
@@ -5,6 +5,8 @@
  * src/bookmarkeditdialog.c, src/common.c:
    Add a hack to make the 'davs://' scheme also available even if GVfs
    tells to not support it (GVfs bug #538461).
+ * README, sion.1.in, src/main.c, src/window.c:
+   Fix spelling of GVfs.
 
 
 2009-01-19  Enrico Tröger  <enrico(at)xfce(dot)org>

Modified: sion/trunk/README
===================================================================
--- sion/trunk/README	2009-01-25 12:26:08 UTC (rev 6542)
+++ sion/trunk/README	2009-01-25 12:26:20 UTC (rev 6543)
@@ -5,10 +5,17 @@
 About
 =====
 Sion is a frontend to easily manage connections to remote filesystems using
-GIO/GVFS. It allows you to quickly connect/mount a remote filesystem and manage
+GIO/GVfs. It allows you to quickly connect/mount a remote filesystem and manage
 bookmarks of such.
 
+GVfs is an userspace virtual filesystem and the successor of GnomeVfs but doesn't
+depend on Gnome itself. It only requires a recent GLib version and a properly setup
+DBus system. Then it provides almost transparent access to remote
+resources like FTP or SFTP (SSH) connections, SMB (windows shares) or special resources
+like the Trash (trash://), Burn (burn://) or even accessing your digital photo camera
+(gphoto2://).
 
+
 Requirements
 ============
 For compiling Sion, you will need the GTK (>= 2.12.0) libraries

Modified: sion/trunk/sion.1.in
===================================================================
--- sion/trunk/sion.1.in	2009-01-25 12:26:08 UTC (rev 6542)
+++ sion/trunk/sion.1.in	2009-01-25 12:26:20 UTC (rev 6543)
@@ -1,13 +1,13 @@
 .TH "SION" "1" "" "sion @VERSION@" ""
 .SH "NAME"
-sion \(em a simple frontend to easily connect to remote filesystems with GIO/GVFS
+sion \(em a simple frontend to easily connect to remote filesystems with GIO/GVfs
 .SH "SYNOPSIS"
 .PP
 \fBsion\fR [\fBoption\fP]
 .SH "DESCRIPTION"
 .PP
 Sion is a frontend to easily manage connections to remote filesystems using
-GIO/GVFS. It allows you to quickly mount a remote filesystem and manage
+GIO/GVfs. It allows you to quickly mount a remote filesystem and manage
 bookmarks to such.
 .PP
 Homepage: http://www.uvena.de/sion/

Modified: sion/trunk/src/main.c
===================================================================
--- sion/trunk/src/main.c	2009-01-25 12:26:08 UTC (rev 6542)
+++ sion/trunk/src/main.c	2009-01-25 12:26:20 UTC (rev 6543)
@@ -130,7 +130,7 @@
 	accel_filename = g_build_filename(g_get_user_config_dir(), PACKAGE, "accels", NULL);
 	gtk_accel_map_load(accel_filename);
 
-	/* GVFS currently depends on gnome-mount for HAL-based GVolumeMonitor implementation,
+	/* GVfs currently depends on gnome-mount for HAL-based GVolumeMonitor implementation,
 	 * when gnome-mount is not installed, we can use "unix" as GVolumeMonitor implementation. */
 	if ((vm_impl = sion_settings_get_vm_impl(settings)) != NULL)
 		g_setenv("GIO_USE_VOLUME_MONITOR", vm_impl, 0);

Modified: sion/trunk/src/window.c
===================================================================
--- sion/trunk/src/window.c	2009-01-25 12:26:08 UTC (rev 6542)
+++ sion/trunk/src/window.c	2009-01-25 12:26:20 UTC (rev 6543)
@@ -1234,7 +1234,7 @@
 	gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(priv->swin_iconview), GTK_SHADOW_IN);
 	gtk_container_add(GTK_CONTAINER(priv->swin_iconview), priv->iconview);
 
-	/* Init the GVFS backend */
+	/* Init the GVfs backend */
 	priv->backend_gvfs = sion_backend_gvfs_new(priv->store);
 	g_signal_connect(priv->backend_gvfs, "mounts-changed", G_CALLBACK(mounts_changed_cb), window);
 	g_signal_connect(priv->backend_gvfs, "operation-failed",




More information about the Goodies-commits mailing list