Skip to content

Commit b227604

Browse files
committed
Merge pull request #164 from dagalufh/tommy-work
V2.2
2 parents cab8008 + 6b5f9d0 commit b227604

40 files changed

+3473
-601
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,8 @@ Icon
4343
# gedit tmp files
4444
#*****************
4545
*~
46+
47+
*.pyc
48+
debug
49+
4650

-30.6 KB
Binary file not shown.

Contents/Code/Docs/WorkInProgress.odt

13.7 KB
Binary file not shown.
-223 Bytes
Binary file not shown.

Contents/Code/__init__.py

+19-6
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@
1515

1616
NAME = 'WebTools'
1717
ICON = 'WebTools.png'
18-
VERSION = '2.1'
18+
VERSION = '2.2'
1919
AUTHTOKEN = ''
2020
SECRETKEY = ''
21+
DEBUGMODE = False
2122

2223

2324
#********** Imports needed *********
@@ -33,19 +34,25 @@
3334
#********** Initialize *********
3435
def Start():
3536
global SECRETKEY
36-
PLUGIN_VERSION = VERSION
37-
print("******** Started %s on %s **********" %(NAME + ' V' + PLUGIN_VERSION, Platform.OS))
38-
Log.Debug("******* Started %s on %s ***********" %(NAME + ' V' + PLUGIN_VERSION, Platform.OS))
37+
global VERSION
38+
global DEBUGMODE
39+
# Switch to debug mode if needed
40+
debugFile = Core.storage.join_path(Core.app_support_path, Core.config.bundles_dir_name, NAME + '.bundle', 'debug')
41+
DEBUGMODE = os.path.isfile(debugFile)
42+
if DEBUGMODE:
43+
VERSION = VERSION + ' ****** WARNING Debug mode on *********'
44+
print("******** Started %s on %s **********" %(NAME + ' V' + VERSION, Platform.OS))
45+
Log.Debug("******* Started %s on %s ***********" %(NAME + ' V' + VERSION, Platform.OS))
3946
HTTP.CacheTime = 0
4047
DirectoryObject.thumb = R(ICON)
41-
ObjectContainer.title1 = NAME + ' V' + PLUGIN_VERSION
48+
ObjectContainer.title1 = NAME + ' V' + VERSION
4249
Plugin.AddViewGroup('List', viewMode='List', mediaType='items')
4350
ObjectContainer.view_group = 'List'
4451
makeSettings()
4552

4653
# Get the secret key used to access the PMS framework ********** FUTURE USE ***************
4754
SECRETKEY = genSecretKeyAsStr()
48-
startWeb(SECRETKEY)
55+
startWeb(SECRETKEY, VERSION, DEBUGMODE)
4956

5057
####################################################################################################
5158
# Generate secret key
@@ -89,6 +96,12 @@ def makeSettings():
8996
# Create the pwdset entry
9097
if Dict['pwdset'] == None:
9198
Dict['pwdset'] = False
99+
# Init the installed dict
100+
if Dict['installed'] == None:
101+
Dict['installed'] = {}
102+
# Init the allBundle Dict
103+
if Dict['PMS-AllBundleInfo'] == None:
104+
Dict['PMS-AllBundleInfo'] = {}
92105
return
93106

94107
####################################################################################################

0 commit comments

Comments
 (0)