[tuxdroid-svn] r4883 - software_suite_v3/smart-core/smart-server/trunk/resources/04_robot_content_i
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-06-24 07:49:46
|
Author: remi
Date: 2009-06-24 09:49:39 +0200 (Wed, 24 Jun 2009)
New Revision: 4883
Modified:
software_suite_v3/smart-core/smart-server/trunk/resources/04_robot_content_interactions/00_resourceRobotContentInteractions.py
Log:
* fixed bug of gadgets without "on demand" in the thumbnails bar view.
Modified: software_suite_v3/smart-core/smart-server/trunk/resources/04_robot_content_interactions/00_resourceRobotContentInteractions.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/resources/04_robot_content_interactions/00_resourceRobotContentInteractions.py 2009-06-24 07:46:21 UTC (rev 4882)
+++ software_suite_v3/smart-core/smart-server/trunk/resources/04_robot_content_interactions/00_resourceRobotContentInteractions.py 2009-06-24 07:49:39 UTC (rev 4883)
@@ -375,7 +375,7 @@
"""
self.__onDemandList = []
for ugcObj in resourceUgcServer.getUgcContainer().getUgcs():
- if ugcObj.getDescription().onDemandIsActivated():
+ if ugcObj.getDescription().onDemandIsActivated() == 'true':
self.__onDemandList.append(ugcObj)
self.computeOnDemandDictForThumbnailBar()
|