updating_the_class_reference.rst 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .. _doc_updating_the_class_reference:
  2. Contributing to the class reference
  3. ===================================
  4. .. highlight:: shell
  5. The :ref:`Class reference <doc_class_reference>` is a set of articles describing
  6. the public API of the engine. This includes descriptions for various classes,
  7. methods, properties, and global objects, available for scripting. The class reference
  8. is available online, from the documentation sidebar, and in the Godot editor, from
  9. the help menu.
  10. As the engine grows and features are added or modified, some parts of the class reference
  11. become obsolete and new descriptions and examples need to be added. While developers are
  12. encouraged to document all of their work in the class reference when submitting a pull request,
  13. we can't expect everyone to be able to write high quality documentation, so there is
  14. always work for contributors like you to polish existing and create missing reference material.
  15. The source of the class reference
  16. ---------------------------------
  17. As the class reference is available in two places, online and in the editor, we need to
  18. take care to keep things in sync. To achieve this the `main Godot repository <https://github.com/godotengine/godot/>`_
  19. is picked as the source of truth, and the documentation for the class reference is tracked there.
  20. .. warning::
  21. You should **not** edit ``.rst`` files in the ``classes/`` folder of the
  22. `documentation repository <https://github.com/godotengine/godot-docs/>`_.
  23. These files are generated automatically and are synced manually by project
  24. maintainers. Read further to learn how to correctly edit the class reference.
  25. In the main repository the class reference is stored in XML files, one for each exposed
  26. class or global object. The majority of these files is located in `doc/classes/
  27. <https://github.com/godotengine/godot/tree/master/doc/classes>`_, but some modules
  28. contain their own documentation as well. You will find it in the ``modules/<module_name>/doc_classes/``
  29. directory. To learn more about editing XML files refer to :ref:`doc_class_reference_primer`.
  30. .. seealso::
  31. For details on Git usage and the pull request workflow, please
  32. refer to the :ref:`doc_pr_workflow` page.
  33. If you want to translate the class reference from English to another
  34. language, see :ref:`doc_editor_and_docs_localization`. This guide is
  35. also available as a `video tutorial on YouTube
  36. <https://www.youtube.com/watch?v=5jeHXxeX-JY>`_.
  37. **Important:** If you plan to make large changes, you should create an issue on
  38. the `godot-docs repository <https://github.com/godotengine/godot-docs/>`_
  39. or comment on an existing issue. Doing so lets others know you're already
  40. taking care of a given class.
  41. What to contribute
  42. ------------------
  43. The natural place to start contributing is the classes that you are most familiar with.
  44. This ensures that the added description will be based on experience and the necessary
  45. know-how, not just the name of a method or a property. We advise not to add low effort
  46. descriptions, no matter how appealing it may look. Such descriptions obscure the need
  47. for documentation and are hard to identify automatically.
  48. .. seealso::
  49. Following this principle is important and allows us to create tools for contributors.
  50. Such as the class reference's `completion status tracker <https://godotengine.github.io/doc-status/>`_.
  51. You can use it to quickly find documentation pages missing descriptions.
  52. If you decide to document a class, but don't know what a particular method does, don't
  53. worry. Leave it for now, and list the methods you skipped when you open a pull request
  54. with your changes. Another writer will take care of it.
  55. You can still look at the methods' implementation in Godot's source code on GitHub.
  56. If you have doubts, feel free to ask on the `Q&A website <https://ask.godotengine.org/>`_
  57. and `Godot Contributors Chat <https://chat.godotengine.org/>`_.
  58. .. warning::
  59. Unless you make minor changes, like fixing a typo, we do not recommend using the
  60. GitHub web editor to edit the class reference's XML files. It lacks features to edit
  61. XML well, like keeping indentations consistent, and it does not allow amending commits
  62. based on reviews.
  63. It also doesn't allow you to test your changes in the engine or with validation
  64. scripts as described in :ref:`doc_class_reference_editing_xml`.
  65. Updating class reference when working on the engine
  66. ---------------------------------------------------
  67. When you create a new class or modify an existing engine's API, you need to re-generate
  68. the XML files in ``doc/classes/``.
  69. To do so, you first need to compile Godot. See the :ref:`doc_introduction_to_the_buildsystem`
  70. page to learn how. Then, execute the compiled Godot binary from the Godot root directory
  71. with the ``--doctool`` option. For example, if you're on 64-bit Linux, the command might be:
  72. ::
  73. ./bin/godot.linuxbsd.editor.x86_64 --doctool
  74. The exact set of suffixes may be different. Carefully read through the linked article to
  75. learn more about that.
  76. The XML files in ``doc/classes/`` should then be up-to-date with current Godot Engine
  77. features. You can then check what changed using the ``git diff`` command.
  78. Please only include changes that are relevant to your work on the API in your commits.
  79. You can discard changes in other XML files using ``git checkout``, but consider reporting
  80. if you notice unrelated files being updated. Ideally, running this command should only
  81. bring up the changes that you yourself have made.
  82. You will then need to add descriptions to any newly generated entries.