Esempio n. 1
0
 def __init__(self, website, title, url):
     ShowUrlAction.__init__(self, website, url)
     self._title = title
Esempio n. 2
0
 def __init__(self, name, email):
     ShowUrlAction.__init__(self, name,
                            "mailto: \"%s\" <%s>" % (name, email))
     self._email = email
 def __init__(self, name, url, item_type):
     ShowUrlAction.__init__(self, name, url)
     self._item_type = item_type
Esempio n. 4
0
 def __init__(self, name, url):
     ShowUrlAction.__init__(self, name, url)
Esempio n. 5
0
 def __init__(self, term):
     url = self.BASE_URL % urllib.urlencode({'q': term})
     ShowUrlAction.__init__(self, term, url)
Esempio n. 6
0
 def __init__(self, term):
     url = self.BASE_URL % urllib.urlencode({'p': term})
     ShowUrlAction.__init__(self, term, url)
 def __init__(self, name, email):
     ShowUrlAction.__init__(self, name, "mailto: \"%s\" <%s>" % (name, email))
     self._email = email
Esempio n. 8
0
 def __init__(self, name, uri, escaped_uri):
     ShowUrlAction.__init__(self, name, uri)
     self._display_uri = gio.File(uri=escaped_uri).get_parse_name()
 def __init__(self, name, identifier, publisher=None, snippet=None):
     ShowUrlAction.__init__(self, name, identifier)
Esempio n. 10
0
 def __init__(self, name, url, item_type):
     ShowUrlAction.__init__(self, name, url)
     self._item_type = item_type
Esempio n. 11
0
 def __init__(self, name, identifier, publisher=None, snippet=None):
     ShowUrlAction.__init__(self, name, identifier)
Esempio n. 12
0
 def __init__(self, website, query, url):
     ShowUrlAction.__init__(self, website, url)
     self._query = query
Esempio n. 13
0
 def __init__(self, website, title, url):
     ShowUrlAction.__init__(self, website, url)
     self._title = title
Esempio n. 14
0
 def __init__(self, name, url, tags=None):
     """
     @param tags: Is ignored since 2.23.1,
     just there for backwards compatibility 
     """
     ShowUrlAction.__init__(self, name, url)
Esempio n. 15
0
 def __init__(self, website, query, url):
     ShowUrlAction.__init__(self, website, url)
     self._query = query
Esempio n. 16
0
 def __init__(self, name, uri, escaped_uri):
     ShowUrlAction.__init__(self, name, uri)
     self._display_uri = gio.File (uri=escaped_uri).get_parse_name()
Esempio n. 17
0
 def __init__(self, name, url, tags=None):
     """
     @param tags: Is ignored since 2.23.1,
     just there for backwards compatibility 
     """
     ShowUrlAction.__init__(self, name, url)
Esempio n. 18
0
 def __init__(self, title, lang):
     ShowUrlAction.__init__(self, title,
                            WIKIPEDIA_ARTICLE_URL + '?' + urllib.urlencode({'l': lang, 'q': title}))
Esempio n. 19
0
 def __init__(self, name, url):
     ShowUrlAction.__init__(self, name, url)
Esempio n. 20
0
 def __init__(self, title, lang):
     ShowUrlAction.__init__(self, title,
                            WIKIPEDIA_ARTICLE_URL + '?' + urllib.urlencode({'l': lang, 'q': title}))