|
@@ -4,10 +4,39 @@
|
4
|
4
|
#
|
5
|
5
|
# @section howto_writeplugin_basicstruct Plugin basic structure
|
6
|
6
|
# A plugins is a python package that have to contains 3 files :
|
7
|
|
-# - <code>__init__.py</code>
|
8
|
|
-# - <code>main.py</code> ( defined in @ref lodel.plugin.plugins.MAIN_NAME )
|
9
|
|
-# - <code>confspec.py</code> ( defined in @ref lodel.plugin.plugins.CONFSPEC_NAME )
|
|
7
|
+#- <code>__init__.py</code>
|
|
8
|
+#- <code>main.py</code> ( defined in @ref lodel.plugin.plugins.MAIN_FILENAME )
|
|
9
|
+#- <code>confspec.py</code> ( defined in
|
|
10
|
+#@ref lodel.plugin.plugins.CONFSPEC_FILENAME )
|
10
|
11
|
#
|
|
12
|
+# There is an example plugin in @ref plugins/dummy
|
|
13
|
+#
|
|
14
|
+# @subsection howto_writreplugin_confspec Plugin configuration specification
|
|
15
|
+# First of all a good practice is to preffix all plugin specific configuration
|
|
16
|
+# key with <code>lodel2.plugin.PLUGIN_NAME</code>.
|
|
17
|
+#
|
|
18
|
+# A configuration specification is a dict containing dict containing
|
|
19
|
+# tupe(DEFAULT_VALUE, VALIDATOR). The first level dict keys are sections, and
|
|
20
|
+# the dictionnary contained in it contains conf keys. More information on
|
|
21
|
+# validators : @ref lodel.settings.validator
|
|
22
|
+#
|
|
23
|
+# @subsubsection howto_writreplugin_confspec_example Example :
|
|
24
|
+#
|
|
25
|
+#A confspec that matches this peace of configuration file
|
|
26
|
+#<pre>
|
|
27
|
+#[lodel2.plugin.fooplugin]
|
|
28
|
+#hello = ...
|
|
29
|
+#foo = ...
|
|
30
|
+#bar = ...
|
|
31
|
+#</pre>
|
|
32
|
+#would be
|
|
33
|
+#<pre>
|
|
34
|
+#{
|
|
35
|
+# 'lodel2.plugin.fooplugin': {
|
|
36
|
+# 'foo': ...,
|
|
37
|
+# 'bar': ...,
|
|
38
|
+# 'hello': ..., } }
|
|
39
|
+#</pre>
|
11
|
40
|
#
|
12
|
41
|
|
13
|
42
|
from .hooks import LodelHook
|