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-04 02:21:14 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-12-04 02:21:14 (GMT)
commit49ab39870266196f6267f83dd6951f839ebde773 (patch)
tree116fb1552882edf5b4e42bbcc293c5ec918abca4 /tutorius/translator.py
parentb8c9419f0381c1864035af76853ed1c02ad434cc (diff)
parent243d29608df4816f791c98407c10fa8a702574e1 (diff)
Merge ../../simpoirs-clone into remote_integration
Conflicts: src/extensions/tutoriusremote.py
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)