[KSS-checkins] r42042 - kukit/azax/branch/1.1-ree-load-event-cleanup/plugins/core

reebalazs at codespeak.net reebalazs at codespeak.net
Sat Apr 14 11:01:53 CEST 2007


Author: reebalazs
Date: Sat Apr 14 11:01:53 2007
New Revision: 42042

Modified:
   kukit/azax/branch/1.1-ree-load-event-cleanup/plugins/core/commands.py
Log:
Add moveNodeBefore action (presumably missing)

Modified: kukit/azax/branch/1.1-ree-load-event-cleanup/plugins/core/commands.py
==============================================================================
--- kukit/azax/branch/1.1-ree-load-event-cleanup/plugins/core/commands.py	(original)
+++ kukit/azax/branch/1.1-ree-load-event-cleanup/plugins/core/commands.py	Sat Apr 14 11:01:53 2007
@@ -103,6 +103,11 @@
         command = self.commands.addCommand('moveNodeAfter', selector)
         data = command.addParam('html_id', id)
 
+    def moveNodeBefore(self, selector, id):
+        """ see interfaces.py """
+        command = self.commands.addCommand('moveNodeBefore', selector)
+        data = command.addParam('html_id', id)
+
     def copyChildNodesTo(self, selector, id):
         """ see interfaces.py """
         command = self.commands.addCommand('copyChildNodesTo', selector)


More information about the Kukit-checkins mailing list