From 40f836b057896469bca69772d9fc7168b2f8c644 Mon Sep 17 00:00:00 2001 From: JCTutorius Date: Fri, 06 Nov 2009 10:56:11 +0000 Subject: Added 'test' key in metadata to action and event that dont work in the creator, for the thursday 19th november demo. --- diff --git a/addons/chainaction.py b/addons/chainaction.py index 8df7ac8..9e8b6c8 100644 --- a/addons/chainaction.py +++ b/addons/chainaction.py @@ -40,5 +40,6 @@ __action__ = { 'display_name' : 'Chain of actions', 'icon' : 'chain', 'class' : ChainAction, - 'mandatory_props' : ['actions'] + 'mandatory_props' : ['actions'], + 'test' : True } diff --git a/addons/clickaction.py b/addons/clickaction.py index 071af28..2821541 100644 --- a/addons/clickaction.py +++ b/addons/clickaction.py @@ -48,5 +48,6 @@ __action__ = { 'display_name' : 'Click', 'icon' : 'format-justify-center', 'class' : ClickAction, - 'mandatory_props' : ['widget'] + 'mandatory_props' : ['widget'], + 'test' : True } diff --git a/addons/disablewidget.py b/addons/disablewidget.py index b3d9ae6..8b34254 100644 --- a/addons/disablewidget.py +++ b/addons/disablewidget.py @@ -55,5 +55,6 @@ __action__ = { 'display_name' : 'Disable Widget', 'icon' : 'stop', 'class' : DisableWidgetAction, - 'mandatory_props' : ['target'] + 'mandatory_props' : ['target'], + 'test' : True } diff --git a/addons/gtkwidgeteventfilter.py b/addons/gtkwidgeteventfilter.py index 65aa744..b5ce9ae 100644 --- a/addons/gtkwidgeteventfilter.py +++ b/addons/gtkwidgeteventfilter.py @@ -64,6 +64,7 @@ __event__ = { "display_name" : "GTK Event catcher", "icon" : "player_play", "class" : GtkWidgetEventFilter, - "mandatory_props" : ["object_id", "event_name"] + "mandatory_props" : ["object_id", "event_name"], + "test" : True } diff --git a/addons/oncewrapper.py b/addons/oncewrapper.py index c404ae4..3f6b2d0 100644 --- a/addons/oncewrapper.py +++ b/addons/oncewrapper.py @@ -55,5 +55,6 @@ __action__ = { 'display_name' : 'Execute an action only once', 'icon' : 'once_wrapper', 'class' : OnceWrapper, - 'mandatory_props' : ['action'] + 'mandatory_props' : ['action'] , + 'test' : True } diff --git a/addons/timerevent.py b/addons/timerevent.py index 752a865..a986fa0 100644 --- a/addons/timerevent.py +++ b/addons/timerevent.py @@ -69,5 +69,6 @@ __event__ = { "display_name" : "Timed transition", "icon" : "clock", "class" : TimerEvent, - "mandatory_props" : ["timeout"] + "mandatory_props" : ["timeout"], + "test" : True } diff --git a/addons/typetextaction.py b/addons/typetextaction.py index 8b746e6..8c794d9 100644 --- a/addons/typetextaction.py +++ b/addons/typetextaction.py @@ -53,5 +53,6 @@ __action__ = { 'display_name' : 'Type text', 'icon' : 'format-justify-center', 'class' : TypeTextAction, - 'mandatory_props' : ['widgetUAM', 'text'] + 'mandatory_props' : ['widgetUAM', 'text'] , + 'test' : True } -- cgit v0.9.1