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

  • Home
  • SEARCH
  • 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

Ask A Question

Stats

  • Questions 510k
  • Answers 510k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer By default, POI reads the cached response to the formula… May 16, 2026 at 5:02 pm
  • Editorial Team
    Editorial Team added an answer I suggest you use the FILTER_VALIDATE_EMAIL filter: if (filter_var($email, FILTER_VALIDATE_EMAIL))… May 16, 2026 at 5:02 pm
  • Editorial Team
    Editorial Team added an answer Ok, I lied. I did not try replacing the SurfaceScrollViewer… May 16, 2026 at 5:02 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

consider the following python code: import gtk class MainWindow(): def __init__(self): self.window = gtk.Window()
The following code import types class A: class D: pass class C: pass for
given the following code: import ctypes ip=192.168.1.1 thisdll = ctypes.cdll['aDLL'] thisdll.functionThatExpectsAnIP(ip) how can I
I have following code import sys from ctypes import * from ctypes.util import find_library
I'm running the following code: import org.eclipse.core.resources.IWorkspace; import org.eclipse.core.resources.ResourcesPlugin; public class WorkspaceTest { public
I have the following code: #import <Foundation/Foundation.h> #import ServerRequest.h // works even though this
Consider the following code: A.java: import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @Retention(RetentionPolicy.RUNTIME) @interface A{} C.java: import
The following code puts a cube at (0, 0, 0) and another at (0,
I have the following sample code where I download a pdf from the European
I currently use the following code to upload one file to a remote server:

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.