diff options
author | David Zeuthen <davidz@redhat.com> | 2008-07-29 21:40:22 +0000 |
---|---|---|
committer | David Zeuthen <davidz@src.gnome.org> | 2008-07-29 21:40:22 +0000 |
commit | d99071af2fae9a1468a87d928ab6502bc29b23f8 (patch) | |
tree | 96bc09cb68326ee1badd520a85e7e3e4ef75dd86 /libnautilus-private/apps_nautilus_preferences.schemas.in | |
parent | f564363d4256f19587fac88e827a4caf5423babd (diff) | |
download | nautilus-d99071af2fae9a1468a87d928ab6502bc29b23f8.tar.gz |
Require gio 2.17.5 for g_mount_guess_content_type().
2008-07-29 David Zeuthen <davidz@redhat.com>
* configure.in:
Require gio 2.17.5 for g_mount_guess_content_type().
* data/nautilus.xml.in:
Delete x-content/* definitions; these are in shared-mime-info 0.50
and greater.
* libnautilus-private/nautilus-global-preferences.c:
* libnautilus-private/nautilus-global-preferences.h:
* libnautilus-private/apps_nautilus_preferences.schemas.in:
Remove /apps/nautilus/preferences/media_autorun_x_content_ask
and add /apps/nautilus/preferences/media_autorun_x_content_start_app
instead since we're inverting the logic. Now, by default (except
for x-content/software for which we're shipping an app ourselves)
we default to asking the user what action to take.
* libnautilus-private/nautilus-autorun.c:
* libnautilus-private/nautilus-autorun.h:
Use g_mount_guess_content_type() instead of using our own
sniffing code. Also provide an option for the user to select
an application to use (#532474).
* src/nautilus-file-management-properties.c:
Catch up with API changes to nautilus_autorun_prepare_combo_box()
svn path=/trunk/; revision=14425
Diffstat (limited to 'libnautilus-private/apps_nautilus_preferences.schemas.in')
-rw-r--r-- | libnautilus-private/apps_nautilus_preferences.schemas.in | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/libnautilus-private/apps_nautilus_preferences.schemas.in b/libnautilus-private/apps_nautilus_preferences.schemas.in index f34b07fc0..d69e64442 100644 --- a/libnautilus-private/apps_nautilus_preferences.schemas.in +++ b/libnautilus-private/apps_nautilus_preferences.schemas.in @@ -147,16 +147,19 @@ </schema> <schema> - <key>/schemas/apps/nautilus/preferences/media_autorun_x_content_ask</key> - <applyto>/apps/nautilus/preferences/media_autorun_x_content_ask</applyto> + <key>/schemas/apps/nautilus/preferences/media_autorun_x_content_start_app</key> + <applyto>/apps/nautilus/preferences/media_autorun_x_content_start_app</applyto> <owner>nautilus</owner> <type>list</type> <list_type>string</list_type> - <default>[]</default> + <default>[x-content/software]</default> <locale name="C"> - <short>List of x-content/* types to ask the user what to do on insertion</short> + <short>List of x-content/* types where the preferred application will be launched</short> <long> - List of x-content/* types to ask the user what to do on insertion. + List of x-content/* types for which the user have chosen to + start an application in the preference capplet. The + preferred application for the given type will be started on + insertion on media matching these types. </long> </locale> </schema> @@ -169,9 +172,12 @@ <list_type>string</list_type> <default>[]</default> <locale name="C"> - <short>List of x-content/* where to prompt the user on insertion</short> + <short>List of x-content/* types set to "Do Nothing"</short> <long> - List of x-content/* types to ask the user what to do on insertion. + List of x-content/* types for which the user have chosen + "Do Nothing" in the preference capplet. No prompt will be + shown nor will any matching application be started on + insertion of media matching these types. </long> </locale> </schema> @@ -184,10 +190,11 @@ <list_type>string</list_type> <default>[]</default> <locale name="C"> - <short>List of x-content/* types where a folder window should be opened</short> + <short>List of x-content/* types set to "Open Folder"</short> <long> - List of x-content/* types where a folder window should be opened - on insertion. + List of x-content/* types for which the user have chosen + "Open Folder" in the preferences capplet. A folder window + will be opened on insertion of media matching these types. </long> </locale> </schema> |