Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJCTutorius <charlie@tutorius-dev.(none)>2009-11-06 10:56:11 (GMT)
committer JCTutorius <charlie@tutorius-dev.(none)>2009-11-06 10:56:11 (GMT)
commit40f836b057896469bca69772d9fc7168b2f8c644 (patch)
tree7bfe0d488869e9286dfb97b3a66da4f9dd55fda2
parent80cb8a676d3087819c05ae63db9c662d4951b8d2 (diff)
Added 'test' key in metadata to action and event that dont work in the creator, for the thursday 19th november demo.
-rw-r--r--addons/chainaction.py3
-rw-r--r--addons/clickaction.py3
-rw-r--r--addons/disablewidget.py3
-rw-r--r--addons/gtkwidgeteventfilter.py3
-rw-r--r--addons/oncewrapper.py3
-rw-r--r--addons/timerevent.py3
-rw-r--r--addons/typetextaction.py3
7 files changed, 14 insertions, 7 deletions
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
}