From cafcffbb7412d8a80200d288d6819bd4a6779399 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Thu, 26 Mar 2009 22:42:30 +0530 Subject: Adding plugin manager --- silpa/common/silpamodule.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 silpa/common/silpamodule.py (limited to 'silpa/common/silpamodule.py') diff --git a/silpa/common/silpamodule.py b/silpa/common/silpamodule.py new file mode 100644 index 0000000..8a35f2d --- /dev/null +++ b/silpa/common/silpamodule.py @@ -0,0 +1,14 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- +class SilpaModule: + def __init__(self): + self.response = None + + def get_errormessage(self): + return None + def get_successmessage(self): + return None + def get_module_name(self): + return "Untitled Silpa Module" + def get_info(self): + return "Module description" -- cgit From c5368252e3091368ae55475757ed3134d6f84249 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Sun, 29 Mar 2009 17:59:40 +0530 Subject: new modules --- silpa/common/silpamodule.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'silpa/common/silpamodule.py') diff --git a/silpa/common/silpamodule.py b/silpa/common/silpamodule.py index 8a35f2d..7c5a538 100644 --- a/silpa/common/silpamodule.py +++ b/silpa/common/silpamodule.py @@ -12,3 +12,5 @@ class SilpaModule: return "Untitled Silpa Module" def get_info(self): return "Module description" + def process(self,object): + return "Not Implemented" -- cgit