Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1030611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T12:43:41+00:00 2026-05-16T12:43:41+00:00

The following code import gtk import nautilus import os def alert(message): A function to

  • 0

The following code

import gtk
import nautilus
import os
def alert(message):
    """A function to debug"""
    dialog = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_INFO, gtk.BUTTONS_CLOSE, message)
    dialog.run()
    dialog.destroy()

class TestExtension(nautilus.MenuProvider):
    def __init__(self):
        pass

    def get_file_items(self, window, files):
        items = []
        """Called when the user selects a file in Nautilus."""
        item = nautilus.MenuItem("NautilusPython::test_item", "Test", "Test")
        item.connect("activate", self.menu_activate_cb, files)
        items.append(item)
        return items

    def menu_activate_cb(self, menu, files):
        """Called when the user selects the menu."""
        for name in files:
            alert(name)

does not produce any Messages.
However

import easygui
import nautilus
import os

def alert(message):
    """A function to debug"""
    easygui.msgbox(message)

class TestExtension(nautilus.MenuProvider):
    def __init__(self):
        pass

    def get_file_items(self, window, files):
        items = []
        """Called when the user selects a file in Nautilus."""
        item = nautilus.MenuItem("NautilusPython::test_item", "Test", "Test")
        item.connect("activate", self.menu_activate_cb, files)
        items.append(item)
        return items

    def menu_activate_cb(self, menu, files):
        """Called when the user selects the menu."""
        for name in files:
            alert(name)

works nicely and produces the requested Messages.

Can someone explain this – or better – provide a workaround?

(Even better is that when moving the alert()-call into get_file_items() the message appears correctly)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T12:43:42+00:00Added an answer on May 16, 2026 at 12:43 pm

    On the nautilus mailing list Ahmad Sherif found my error:

    gtk.MessageDialog is not working with your code because the fifth argument
    has to be either string or None, and the variable name is of type
    nautilus.FileInfo, which means you need to call alert(name.get_name())
    not just alert(name)
    Please refer to the docs for more info about nautilus.FileInfo.

    Thanks to Ahmad for pointing this out.

    In a second posting Ahmad explained how to debug better:

    I think you could’ve obtained such debug info if you launched Nautilus
    from terminal. […]
    You should quit Nautilus first (nautilus -q) then launch it (nautilus --no-desktop).
    If [nautilus] did [automatically] re-spawn [after quitting], you should edit
    /usr/share/applications/nautilus.desktop as follows (A backup of it would
    be a good idea):

    • Replace “X-GNOME-AutoRestart=true” with “X-GNOME-AutoRestart=false”
    • Comment this line out “X-GNOME-Autostart-Phase=Desktop” by “#” at the beginning of the line. Actually I forgot why I did this but this how my is my configuration :).
    • Add this line “AutostartCondition=GNOME /apps/nautilus/preferences/show_desktop”
    • Finally, you should restart your session, then try quitting and launching again.

    Credits go to wrc1944 […] for the respawning solution.

    Applying the steps Ahmad explained I was able to see the error-message my faulty code generated.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.