Author: remi
Date: 2009-06-10 11:33:13 +0200 (Wed, 10 Jun 2009)
New Revision: 4772

Modified:
   
software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/01_resourcePluginsServer.py
Log:
* handled "playAttitune" actuation type

Modified: 
software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/01_resourcePluginsServer.py
===================================================================
--- 
software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/01_resourcePluginsServer.py
    2009-06-10 08:48:55 UTC (rev 4771)
+++ 
software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/01_resourcePluginsServer.py
    2009-06-10 09:33:13 UTC (rev 4772)
@@ -198,11 +198,17 @@
             plugin.getDescription().getName(), messageStr))
         actuationName = messagesList[0]
         arguments = messagesList[1:]
-        
resourceRobotContentInteractions.getPguContextsManager().insertActuation(
-            pluginInterpreterContext,
-            actuationName,
-            arguments
-        )
+        if actuationName == "playAttitune":
+            
resourceRobotContentInteractions.getPguContextsManager().insertAttitune(
+                pluginInterpreterContext,
+                arguments[0]
+            )
+        else:
+            
resourceRobotContentInteractions.getPguContextsManager().insertActuation(
+                pluginInterpreterContext,
+                actuationName,
+                arguments
+            )
 
     def __onPluginStarting(self, pluginInterpreterContext):
         plugin = pluginInterpreterContext.getParentPlugin()


------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Tux-droid-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tux-droid-svn

Reply via email to