Transmission-XBMC/default.py

30 lines
712 B
Python
Raw Normal View History

2010-05-28 02:38:06 +00:00
# -*- coding: utf-8 -*-
import os
import xbmc
import xbmcgui
import xbmcaddon
2010-05-28 03:27:03 +00:00
__scriptname__ = "Transmission-XBMC"
__author__ = "Correl Roush <correl@gmail.com>"
__url__ = ""
2010-05-28 02:38:06 +00:00
__svn_url__ = ""
__credits__ = ""
__version__ = "0.5.0"
__XBMC_Revision__ = "30377"
2010-05-28 02:38:06 +00:00
BASE_RESOURCE_PATH = xbmc.translatePath( os.path.join( os.getcwd(), 'resources', 'lib' ) )
sys.path.append (BASE_RESOURCE_PATH)
__settings__ = xbmcaddon.Addon(id='script.transmission')
__language__ = __settings__.getLocalizedString
2010-05-28 02:38:06 +00:00
KEY_BUTTON_BACK = 275
KEY_KEYBOARD_ESC = 61467
if __name__ == '__main__':
from gui import TransmissionGUI
w = TransmissionGUI("script-Transmission-main.xml",os.getcwd() ,"Default")
2010-05-28 02:38:06 +00:00
w.doModal()
del w