diff options
Diffstat (limited to 'MgaRepo/plugins/sample.py.txt')
-rw-r--r-- | MgaRepo/plugins/sample.py.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/MgaRepo/plugins/sample.py.txt b/MgaRepo/plugins/sample.py.txt new file mode 100644 index 0000000..846cb6d --- /dev/null +++ b/MgaRepo/plugins/sample.py.txt @@ -0,0 +1,14 @@ +# Sample mgarepo plugin. In order to test it, rename to sample.py +# vim:ft=python +from MgaRepo import config + +def users_wrapper(section, option=None, default=None, walk=False): + d = {"foolano": "Foolano De Tal <foolano@bla.com>", + "ceeclano": "Ceeclano Algumacoisa <ceeclano@bli.com>", + "beltrano": "Beltrano Bla <beltrano@mail.ru>"} + if walk: + return d.items() + + return d.get(option, default) + +config.wrap("users", handler=users_wrapper) |