From 2fc47723f0d84ca8529cc2281d8fa236d5399a36 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 23 Dec 2013 22:52:33 +0100 Subject: [PATCH] [DEV] add monk doc generator --- sources/monk_edn.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 sources/monk_edn.py diff --git a/sources/monk_edn.py b/sources/monk_edn.py new file mode 100755 index 0000000..2d1619a --- /dev/null +++ b/sources/monk_edn.py @@ -0,0 +1,21 @@ +#!/usr/bin/python +import monkModule as module +import monkTools as tools +import monkDebug as debug +import datetime + + +def get_desc(): + return "EDN application N'ours editor (Editeur De N'ours)" + +def create(): + # module name is 'edn' and type binary. + myModule = module.Module(__file__, 'edn', 'APPLICATION') + # enable doculentation : + myModule.set_website("http://heeroyui.github.io/edn/") + myModule.set_path(tools.get_current_path(__file__) + "/appl/") + + # add the currrent module at the + return myModule + +