index.rst 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. Contributing to Wagtail
  2. =======================
  3. Issues
  4. ~~~~~~
  5. The easiest way to contribute to Wagtail is to tell us how to improve it! First, check to see if your bug or feature request has already been submitted at `github.com/wagtail/wagtail/issues <https://github.com/wagtail/wagtail/issues>`_. If it has, and you have some supporting information which may help us deal with it, comment on the existing issue. If not, please `create a new one <https://github.com/wagtail/wagtail/issues/new>`_, providing as much relevant context as possible. For example, if you're experiencing problems with installation, detail your environment and the steps you've already taken. If something isn't displaying correctly, tell us what browser you're using, and include a screenshot if possible.
  6. If your bug report is a security issue, **do not** report it with an issue. Please read our ​guide to :doc:`reporting security issues <security>`.
  7. .. toctree::
  8. :maxdepth: 2
  9. issue_tracking
  10. Pull requests
  11. ~~~~~~~~~~~~~
  12. If you're a Python or Django developer, `fork it <https://github.com/wagtail/wagtail/>`_ and read the :ref:`developing docs <developing>` to get stuck in! We welcome all contributions, whether they solve problems which are specific to you or they address existing issues. If you're stuck for ideas, pick something from the `issue list <https://github.com/wagtail/wagtail/issues?state=open>`_, or email us directly on `hello@wagtail.io <mailto:hello@wagtail.io>`_ if you'd like us to suggest something!
  13. For large-scale changes, we'd generally recommend breaking them down into smaller pull requests that achieve a single well-defined task and can be reviewed individually. If this isn't possible, we recommend opening a pull request on the `Wagtail RFCs <https://github.com/wagtail/rfcs/>`_ repository, so that there's a chance for the community to discuss the change before it gets implemented.
  14. .. toctree::
  15. :maxdepth: 2
  16. developing
  17. committing
  18. Translations
  19. ~~~~~~~~~~~~
  20. Wagtail has internationalisation support so if you are fluent in a non-English language you can contribute by localising the interface.
  21. Translation work should be submitted through `Transifex <https://www.transifex.com/projects/p/wagtail/>`_.
  22. Other contributions
  23. ~~~~~~~~~~~~~~~~~~~
  24. We welcome contributions to all aspects of Wagtail. If you would like to improve the design of the user interface, or extend the documentation, please submit a pull request as above. If you're not familiar with Github or pull requests, `contact us directly <mailto:hello@wagtail.io>`_ and we'll work something out.
  25. Developing packages for Wagtail
  26. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  27. If you are developing packages for Wagtail, you can add the following `PyPI <https://pypi.org/>`_ classifiers:
  28. * `Framework :: Wagtail <https://pypi.org/search/?c=Framework+%3A%3A+Wagtail>`_
  29. * `Framework :: Wagtail :: 1 <https://pypi.org/search/?c=Framework+%3A%3A+Wagtail+%3A%3A+1>`_
  30. * `Framework :: Wagtail :: 2 <https://pypi.org/search/?c=Framework+%3A%3A+Wagtail+%3A%3A+2>`_
  31. You can also find a curated list of awesome packages, articles, and other cool resources from the Wagtail community at `Awesome Wagtail <https://github.com/springload/awesome-wagtail>`_.
  32. More information
  33. ~~~~~~~~~~~~~~~~
  34. .. toctree::
  35. :maxdepth: 2
  36. styleguide
  37. general_guidelines
  38. python_guidelines
  39. html_guidelines
  40. css_guidelines
  41. javascript_guidelines
  42. security
  43. release_process