mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-30 06:00:07 +01:00
This is a large commit because it's difficult to split this up and we don't care about bisecting here anyway. doxygen is going to produce the API documentation only sphinx is going to produce the prose user (and a bit of developer) documentation. The source split is doc/api and doc/user. Steps performed: - run the doxygen-to-sphinx.sh script to convert all .dox sources to .rst - manually fixed the .rst to render correctly - add a few extra .rst documents to generate the right hierarchy - hook up sphinx-build in meson - add a new @mainpage for doxygen more aimed at developers For the build directory: - sphinx produces /Documentation - doxygen now produces /api/ These need to be manually combined in the wayland-web repo, meson doesn't support subdirectories as output paths within the build dir and the documentation doesn't need to be installed anywhere. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
18 lines
663 B
ReStructuredText
18 lines
663 B
ReStructuredText
|
|
.. _contributing:
|
|
|
|
==============================================================================
|
|
Contributing to libinput
|
|
==============================================================================
|
|
|
|
Contributions to libinput are always welcome. Any patches should be sent to
|
|
the
|
|
`wayland-devel <https://lists.freedesktop.org/mailman/listinfo/wayland-devel>`_
|
|
email list with a subject prefix of ``[PATCH libinput]``. The easiest
|
|
way to achieve that is to run the following command in the libinput
|
|
repository: ::
|
|
|
|
git config --add format.subjectprefix "PATCH libinput"
|
|
|
|
Likewise, any new features should also be discussed publicly on the
|
|
wayland-devel list.
|