예제 #1
0
    def __init__(self):
        launchy.Plugin.__init__(self)
        self.icon = os.path.join(launchy.getIconsPath(), "pydiry.ico")
        self.hash = launchy.hash(self.getName())
        self.labelHash = launchy.hash("pydiry")

        self.dirs = CaselessDict()
예제 #2
0
	def __init__(self):
		launchy.Plugin.__init__(self)
		self.icon = os.path.join(launchy.getIconsPath(), "pydiry.ico")
		self.hash = launchy.hash(self.getName())
		self.labelHash = launchy.hash("pydiry")
		
		self.dirs = CaselessDict()
예제 #3
0
	def __init__(self):
		launchy.Plugin.__init__(self)
		self.icon = os.path.join(launchy.getIconsPath(), "weby.png")
		self.hash = launchy.hash(self.getName())
		self.labelHash = launchy.hash("pywebindex")
		
		self.widget = None
		self.masterPages = []
		self.db = LinksDB()
예제 #4
0
    def __init__(self):
        launchy.Plugin.__init__(self)
        self.icon = os.path.join(launchy.getIconsPath(), "weby.png")
        self.hash = launchy.hash(self.getName())
        self.labelHash = launchy.hash("pywebindex")

        self.widget = None
        self.masterPages = []
        self.db = LinksDB()
예제 #5
0
    def __init__(self):
        launchy.Plugin.__init__(self)

        self.hash = launchy.hash(self.getName())
#        self.labelHash = launchy.hash("pydiry")

        self.dirs = CaselessDict()
예제 #6
0
    def __init__(self):
        """
        Every plugin should have the following __init__ function.
        """
        launchy.Plugin.__init__(self)

        self.addons = []
        self.name = "Thruster"
        self.id = launchy.hash(self.name)
        self.icon = os.path.join(launchy.getIconsPath(), "%s.png" % self.name)
예제 #7
0
    def __init__(self):
        """
        Every plugin should have the following __init__ function.
        """
        launchy.Plugin.__init__(self)

        self.addons = []
        self.name = "Thruster"
        self.id = launchy.hash(self.name)
        self.icon = os.path.join(launchy.getIconsPath(), "%s.png" % self.name)
예제 #8
0
    def __init__(self):
        launchy.Plugin.__init__(self)
        self.name = "pybookkeeper"
        self.hash = launchy.hash(self.name)
        self.icon = os.path.join(launchy.getIconsPath(), "pybookkeeper.png")
        self.bookmarks = {}

        BOOKKEEPPER_DEBUG("instance created: %s" % self)
        BOOKKEEPPER_DEBUG("name: %s" % self.name)
        BOOKKEEPPER_DEBUG("hash: %s" % self.hash)
        BOOKKEEPPER_DEBUG("icon: %s" % self.icon)
예제 #9
0
    def __init__(self):
        super(LaunchySQLite, self).__init__()
        self.name = "SQLite"
        self.hash = launchy.hash(self.name)
        self.icon = os.path.join(launchy.getIconsPath(), "pysimple.png")

        script_path = launchy.getScriptsPath()
        config_filename = os.path.join(script_path, "sqlite_config.json")

        self.config = read_json(config_filename)
        self.database_filename = self.config["database"]

        self.conn = None
예제 #10
0
	def __init__(self):
		launchy.Plugin.__init__(self)
		self.icon = os.path.join(launchy.getIconsPath(), "python.ico")
		self.hash = launchy.hash(self.getName())
예제 #11
0
	def __init__(self):
		launchy.Plugin.__init__(self)
		self.icon = os.path.join(launchy.getIconsPath(), "python.ico")
		self.hash = launchy.hash(self.getName())
		self.fileCache = []
		self.lastCacheUpdate = 0 # Should cause cache on first time
예제 #12
0
 def resetAddonId(self):
     self.id = launchy.hash(self.getAddonName())
예제 #13
0
 def __init__(self):
     launchy.Plugin.__init__(self)
     self.icon = os.path.join(launchy.getIconsPath(), "python.ico")
     self.hash = launchy.hash(self.getName())
     self.fileCache = []
     self.lastCacheUpdate = 0  # Should cause cache on first time
예제 #14
0
 def resetAddonId(self):
     self.id = launchy.hash(self.getAddonName())
예제 #15
0
 def __init__(self):
     launchy.Plugin.__init__(self)
     self.name = 'FooLaunchy'
     self.hash = launchy.hash(self.name)
     self.icon = os.path.join(launchy.getIconsPath(), 'foobar2000_64.png')
예제 #16
0
 def __init__(self):
     launchy.Plugin.__init__(self)
     self.name = "PyMusicbeeQueue"
     self.hash = launchy.hash(self.name)
     self.icon = os.path.join(launchy.getIconsPath(), "musicbee.png")
예제 #17
0
	def __init__(self):
		launchy.Plugin.__init__(self)
		self.icon = os.path.join(launchy.getIconsPath(), "pysimple.png")
		self.hash = launchy.hash(self.getName())
		self.labelHash = launchy.hash("pyverby")
예제 #18
0
 def __init__(self):
     launchy.Plugin.__init__(self)
     self.icon = os.path.join(launchy.getIconsPath(), "pysimple.png")
     self.hash = launchy.hash(self.getName())
     self.labelHash = launchy.hash("pyverby")
예제 #19
0
 def __init__(self):
     launchy.Plugin.__init__(self)
     self.name = "PyMusicbeeQueue"
     self.hash = launchy.hash(self.name)
     self.icon = os.path.join(launchy.getIconsPath(), "musicbee.png")
예제 #20
0
 def __init__(self):
     launchy.Plugin.__init__(self)  ### 2
     self.name = "PySimple"  ### 3
     self.hash = launchy.hash(self.name)
     self.icon = os.path.join(launchy.getIconsPath(), "pysimple.png")
예제 #21
0
 def __init__(self):
     launchy.Plugin.__init__(self)  ### 2
     self.name = "PySimple"  ### 3
     self.hash = launchy.hash(self.name)
     self.icon = os.path.join(launchy.getIconsPath(), "pysimple.png")
예제 #22
0
 def __init__(self):
     launchy.Plugin.__init__(self)
     self.icon = os.path.join(launchy.getIconsPath(), "python.ico")
     self.hash = launchy.hash(self.getName())
예제 #23
0
파일: pycalc.py 프로젝트: brumar/pylaunchy
	def __init__(self):
		launchy.Plugin.__init__(self)
		self.icon = os.path.join(launchy.getIconsPath(), "pycalc.ico")
		self.hash = launchy.hash(self.getName())
		self.labelHash = launchy.hash("pycalc")
예제 #24
0
 def __init__(self):
     launchy.Plugin.__init__(self)
     self.name = "pyEverything"
     self.hash = launchy.hash(self.name)
     self.icon = os.path.join(launchy.getIconsPath(), "everything.png")
예제 #25
0
 def __init__(self):
     launchy.Plugin.__init__(self)
     self.hash = launchy.hash(self.getName())
예제 #26
0
 def __init__(self):
     launchy.Plugin.__init__(self)
     self.hash = launchy.hash(self.getName())
     self.dirs = CaselessDict()