Transmission-XBMC/default.py

31 lines
791 B
Python
Raw Normal View History

2010-05-28 02:38:06 +00:00
# -*- coding: utf-8 -*-
2010-07-13 01:09:42 +00:00
# Copyright (c) 2010 Correl J. Roush
2010-05-28 02:38:06 +00:00
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__ = "http://github.com/correl/Transmission-XBMC"
2010-05-28 02:38:06 +00:00
__svn_url__ = ""
__credits__ = ""
2010-09-03 21:56:14 +00:00
__version__ = "0.5.2"
__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