Exemplo n.º 1
0
 def __init__(self, name, command, filename):
     Source.__init__(self, name=name)
     self.result_type = 'text'
     self.command = command
     self.filename = os.path.expanduser(filename) if filename else None
     self.dynamic = False
     self.description = _('User Source')
Exemplo n.º 2
0
	def __init__(self, name, command, filename):
		Source.__init__(self, name=name)
		self.result_type = 'text'
		self.command = command
		self.filename = os.path.expanduser(filename) if filename else None
		self.dynamic = False
		self.description = _('User Source')
Exemplo n.º 3
0
	def __init__(self, name=None):
		Source.__init__(self, name or __kupfer_name__)
		self._tasks = []
		self._version = 2
Exemplo n.º 4
0
	def __init__(self, leaf):
		Source.__init__(self, u"Composed Command")
		self.leaf = leaf
Exemplo n.º 5
0
 def __init__(self):
     Source.__init__(self, name=_('CustomUrlSource'))
     self.loaded = False
     self.items = []
     __kupfer_settings__.connect("plugin-setting-changed", self._refresh_settings);
Exemplo n.º 6
0
 def __init__(self):
     Source.__init__(self, name=_('User Sources'))
Exemplo n.º 7
0
Arquivo: gtg.py Projeto: jablan/kupfer
 def __init__(self, name=None):
     Source.__init__(self, name or __kupfer_name__)
     self._tasks = []
     self._version = 2
Exemplo n.º 8
0
	def __init__(self):
		Source.__init__(self, _("Triggers"))
		self.trigger_table = {}
Exemplo n.º 9
0
 def __init__(self, leaf):
     Source.__init__(self, str(leaf))
     self.leaf = leaf
Exemplo n.º 10
0
 def __init__(self, leaf):
     Source.__init__(self, str(leaf))
     self.leaf = leaf
Exemplo n.º 11
0
	def __init__(self, leaf):
		Source.__init__(self, unicode(leaf))
		self.leaf = leaf
Exemplo n.º 12
0
	def __init__(self, leaf):
		Source.__init__(self, unicode(leaf))
		self.leaf = leaf
Exemplo n.º 13
0
	def __init__(self):
		Source.__init__(self, _("GnuPG Private Keyring"))
Exemplo n.º 14
0
	def __init__(self):
		Source.__init__(self, _("GnuPG Public Keyring"))
Exemplo n.º 15
0
	def __init__(self):
		Source.__init__(self, name=_('User Sources'))