[tuxdroid-svn] r5090 - software_suite_v3/smart-core/smart-server/trunk/resources/05_user_configurat
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-07-08 15:09:47
|
Author: remi
Date: 2009-07-08 16:47:40 +0200 (Wed, 08 Jul 2009)
New Revision: 5090
Modified:
software_suite_v3/smart-core/smart-server/trunk/resources/05_user_configurations/00_resourceUsers.py
Log:
* Automatically launch the webbrowser (plugin) after the user configuration load.
Modified: software_suite_v3/smart-core/smart-server/trunk/resources/05_user_configurations/00_resourceUsers.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/resources/05_user_configurations/00_resourceUsers.py 2009-07-08 14:38:14 UTC (rev 5089)
+++ software_suite_v3/smart-core/smart-server/trunk/resources/05_user_configurations/00_resourceUsers.py 2009-07-08 14:47:40 UTC (rev 5090)
@@ -117,6 +117,10 @@
# Start ugc server
resourceUgcServer.startServer(os.path.join(TDS_USERS_CONF_PATH,
userName, "ugcs"))
+ # Start the webbrowser (TuxBox)
+ t = threading.Thread(target = resourcePluginsServer.startPlugin,
+ args = ("63ef331b-eb82-4e4b-b246-07412191f263", "run", {}))
+ t.start()
return result
def getCurrentUserConfiguration(self):
@@ -124,7 +128,7 @@
@return: The current user configuration as string.
"""
return self.__userConfiguration
-
+
def getCurrentUserBasePath(self):
"""Get the current user base directory
@return: A string.
|