2 new revisions:
Revision: e1c927c26a
Author: Janne Härkönen <
j...@reaktor.fi>
Date: Thu Jan 28 11:56:39 2010
Log: some doc for content assist hook
http://code.google.com/p/robotframework-ride/source/detail?r=e1c927c26a
Revision: f58b4ad1ed
Author: Janne Härkönen <
j...@reaktor.fi>
Date: Thu Jan 28 21:26:08 2010
Log: Still needed here
http://code.google.com/p/robotframework-ride/source/detail?r=f58b4ad1ed
==============================================================================
Revision: e1c927c26a
Author: Janne Härkönen <
j...@reaktor.fi>
Date: Thu Jan 28 11:56:39 2010
Log: some doc for content assist hook
http://code.google.com/p/robotframework-ride/source/detail?r=e1c927c26a
Modified:
/src/robotide/pluginapi/plugin.py
=======================================
--- /src/robotide/pluginapi/plugin.py Thu Jan 28 09:37:06 2010
+++ /src/robotide/pluginapi/plugin.py Thu Jan 28 11:56:39 2010
@@ -291,6 +291,11 @@
return self.__namespace.is_library_keyword(self.datafile, name)
def register_content_assist_hook(self, hook):
+ """Allows plugin to insert values in content assist dialog.
+
+ ``hook`` must be a callable, which should return a list of
instances
+ of `ContentAssistItem` class.
+ """
self.__namespace.register_content_assist_hook(hook)
def get_plugins(self):
==============================================================================
Revision: f58b4ad1ed
Author: Janne Härkönen <
j...@reaktor.fi>
Date: Thu Jan 28 21:26:08 2010
Log: Still needed here
http://code.google.com/p/robotframework-ride/source/detail?r=f58b4ad1ed
Modified:
/src/robotide/model/files.py
=======================================
--- /src/robotide/model/files.py Thu Jan 28 09:36:42 2010
+++ /src/robotide/model/files.py Thu Jan 28 21:26:08 2010
@@ -21,6 +21,7 @@
from robotide.robotapi import TestSuiteData, ResourceFileData,
InitFileData,\
UserErrorHandler
from robotide.writer import FileWriter
+from robotide.namespace import VariableSpec
from tables import InitFileSettingTable, SuiteSettingTable,\
ResourceSettingTable, VariableTable, TestCaseTable,
UserKeywordTable