diff options
| author | Nicolas Vigier <boklm@mageia.org> | 2011-01-06 14:51:53 +0000 |
|---|---|---|
| committer | Nicolas Vigier <boklm@mageia.org> | 2011-01-06 14:51:53 +0000 |
| commit | d62a7f9774d9df9ce29e56dbecbab2f520fc3be5 (patch) | |
| tree | b3350af8c7bd48ba75eafd2e8641ad1e278d8e4a /RepSys/plugins/sample.py.txt | |
| download | mgarepo-1.9.tar mgarepo-1.9.tar.gz mgarepo-1.9.tar.bz2 mgarepo-1.9.tar.xz mgarepo-1.9.zip | |
To avoid confusion, Mageia repsys fork is being renamed to mgarepo1.9
Diffstat (limited to 'RepSys/plugins/sample.py.txt')
| -rw-r--r-- | RepSys/plugins/sample.py.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/RepSys/plugins/sample.py.txt b/RepSys/plugins/sample.py.txt new file mode 100644 index 0000000..9877f3c --- /dev/null +++ b/RepSys/plugins/sample.py.txt @@ -0,0 +1,14 @@ +# Sample repsys plugin. In order to test it, rename to sample.py +# vim:ft=python +from RepSys 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) |
