1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
Contributing guide
==================
python-hpilo is maintained by Dennis Kaarsemaker on GitHub_. If you have a
problem with the software, that's the place to file an issue. And if you want
to contribute to the project, that's the place to go to as well.
Patches can be submitted as pull requests on github or mailed to
dennis@kaarsemaker.net.
If you are looking for a really simple way of contributing, please contribute
test data from a server model that's not included in the tests yet, see
`tests/README` for more details.
Coding guidelines
-----------------
* python-hpilo currently supports python 2.6, 2.7 and 3.5 or newer. Any new
code in `hpilo.py` and `hpilo_cli` needs to be compatible with all these
versions.
* No non-stdlib dependencies in `hpilo.py` and `hpilo_cli`. Examples may have
additional dependencies.
* All methods call into :func:`_info_tag` or :func:`_control_tag`. Any
new method must do so too, to be able to use it in :meth:`call_delayed`.
* All new methods must be documented. A docstring is mandatory and will appear
in the docs. For methods that return data, sample output must be added to the
documentation too.
* All new methods must be tested. You should add data for the xml
parser/generator tests and, if applicable, a test that manipulates the iLO.
See the `tests/README` file in the git repository for more details on tests.
Contributors
------------
The following people have generously contributed patches to python-hpilo:
* `Alexander Gubin <https://github.com/alxgu>`_
* `Alexey Vekshin <https://github.com/veksh>`_
* `Ali Asad Lotia <https://github.com/lotia>`_
* `Andrew Glen-Young <https://github.com/agy>`_
* `Christoph Handel <https://github.com/fragfutter>`_
* `Frederic Brin <https://github.com/ExaneServerTeam>`_
* `Hans Guthrie <https://github.com/hansdg1>`_
* `Kevin Sweeney <https://github.com/kevints>`_
* `Nathan Garabedian <https://github.com/ngara>`_
* `Peter Fisher <https://github.com/peterfisher>`_
* `Ronald van Zon <https://github.com/Eagllus>`_
* `Sten Spans <https://github.com/sspans>`_
* `Vinson Lee <https://github.com/vinsonlee>`_
* `Vito Piserchia <https://github.com/vpiserchia>`_
.. _GitHub: https://github.com/seveas/python-hpilo
|