Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius/translator.py
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-12-02 22:36:46 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-12-02 22:36:46 (GMT)
commit5511467f6f7eab041b53563c883f72cd7547402f (patch)
tree6a2101c3bc99db3865ba11d678fe27e370e7ba09 /tutorius/translator.py
parentaa26bcdf23f0d096ca38c6b48b7f479fb2fdcc6d (diff)
Creator : Updating for working property updates from activity to Shell (HACK alert in saveTutorial!!!)
Diffstat (limited to 'tutorius/translator.py')
-rw-r--r--tutorius/translator.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tutorius/translator.py b/tutorius/translator.py
index 4f29078..bd24f8f 100644
--- a/tutorius/translator.py
+++ b/tutorius/translator.py
@@ -177,7 +177,7 @@ class ResourceTranslator(object):
install_error_cb(old_action, exception)
# Decorated functions
- def install(self, action, action_installed_cb, error_cb):
+ def install(self, action, action_installed_cb, error_cb, is_editing=False, editing_cb=None):
# Make a new copy of the action that we want to install,
# because translate() changes the action and we
# don't want to modify the caller's action representation
@@ -187,7 +187,9 @@ class ResourceTranslator(object):
# Send the new action to the probe manager
self._probe_manager.install(new_action, save_args(self.action_installed, action_installed_cb),
- save_args(self.action_install_error, error_cb, new_action))
+ save_args(self.action_install_error, error_cb, new_action),
+ is_editing=is_editing,
+ editing_cb=editing_cb)
def update(self, action_address, newaction):
translated_new_action = copy_module.deepcopy(newaction)