File-roller Nautilus Extract To extension

Registered by yop

In Gnome/Nautilus you have only extract here. It should also be an option "extract to..", that opens the file-roller extract to dialog.

Blueprint information

Status:
Not started
Approver:
None
Priority:
Undefined
Drafter:
None
Direction:
Needs approval
Assignee:
None
Definition:
New
Series goal:
None
Implementation:
Unknown
Milestone target:
None

Related branches

Sprints

Whiteboard

It easy done by only add this to the source of nautilus-fileroller.c

if (all_archives && can_write) {
  NautilusMenuItem *item;

  item = nautilus_menu_item_new ("NautilusFr::extract_to",
            _("Extract To..."),
            _("Extract the selected archive"),
            NULL);
  g_signal_connect (item,
      "activate",
      G_CALLBACK (extract_to_callback),
      provider);
  g_object_set_data_full (G_OBJECT (item),
     "files",
     nautilus_file_info_list_copy (files),
     (GDestroyNotify) nautilus_file_info_list_free);

  items = g_list_append (items, item);

 }

(?)

Work Items

This blueprint contains Public information 
Everyone can see this information.

Subscribers

No subscribers.