From 30bd4136ddccdc40546557786a77e0d2561986b2 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Wed, 23 Feb 2005 09:58:11 +0000 Subject: [PATCH] Remove old docs. 2005-02-23 Alexander Larsson * docs/nautilus-context-menus.txt: Remove old docs. --- ChangeLog | 5 ++++ docs/nautilus-context-menus.txt | 42 --------------------------------- 2 files changed, 5 insertions(+), 42 deletions(-) delete mode 100644 docs/nautilus-context-menus.txt diff --git a/ChangeLog b/ChangeLog index db72c943c..16039824e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-02-23 Alexander Larsson + + * docs/nautilus-context-menus.txt: + Remove old docs. + 2005-02-22 Alexander Larsson * libnautilus-private/nautilus-desktop-icon-file.c: diff --git a/docs/nautilus-context-menus.txt b/docs/nautilus-context-menus.txt deleted file mode 100644 index 01b694f0f..000000000 --- a/docs/nautilus-context-menus.txt +++ /dev/null @@ -1,42 +0,0 @@ -Adding Mime-Type Sensitive Context Menus to Nautilus -November 10, 2002 -James Willcox - -Ok, this is how it works: - -1) User selects one or more files in the icon or list view - -2) Nautilus queries bonobo-activation for all components that have the - following properties: - - a) Has an attribute named "nautilus:context_menu_handler", which is - a boolean. - b) Has an attribute named "nautilus:can_handle_multiple_files", which - is also a boolean (I think its meaning is self explanatory) - c) Implements IDL:Bonobo/Listener:1.0 - - Also, the normal nautilus component selection rules apply here, so it - will look at it bonobo:supported_mime_types, - bonobo:supported_uri_schemes, etc. as well. - -3) Then, we look at each component, and find all attributes that start with - "nautilusverb:". The part following the colon will be the event name that - gets passed to Bonobo::Listener::event(). The value of this attribute is - the text that should be displayed in the menu item. So, you might have - something like the following for unpacking an archive: - - - - To specify an icon to display next to the context menu, you can - specify a nautilusverbicon property: - - - - The icon will be taken from the current icon theme. - - If the component has "nauitlus:can_handle_multiple_files" set to false, - the item will still be displayed when multiple files are selected, but - it will be insensitive. When the user clicks the menu item, nautilus - activates the component, and invoked Bonobo::Listener::event() on it, - passing the event name and a CORBA sequence of the selected URIs as the - args.