diff --git a/docs/docsite/rst/community/contributor_license_agreement.rst b/docs/docsite/rst/community/contributor_license_agreement.rst new file mode 100644 index 00000000000..b0a0f11736c --- /dev/null +++ b/docs/docsite/rst/community/contributor_license_agreement.rst @@ -0,0 +1,7 @@ +.. _contributor_license_agreement: + +****************************** +Contributors License Agreement +****************************** + +By contributing you agree that these contributions are your own (or approved by your employer) and you grant a full, complete, irrevocable copyright license to all users and developers of the project, present and future, pursuant to the license of the project. diff --git a/docs/docsite/rst/community/index.rst b/docs/docsite/rst/community/index.rst index ba066d86969..629eecf5faf 100644 --- a/docs/docsite/rst/community/index.rst +++ b/docs/docsite/rst/community/index.rst @@ -21,8 +21,5 @@ To get started, please read and understand the :ref:`code_of_conduct`, and then maintainers release_managers communication + contributor_license_agreement other_tools_and_programs - - - - diff --git a/docs/docsite/rst/dev_guide/developing_modules_checklist.rst b/docs/docsite/rst/dev_guide/developing_modules_checklist.rst index a18b5c2e49d..d0c682847e4 100644 --- a/docs/docsite/rst/dev_guide/developing_modules_checklist.rst +++ b/docs/docsite/rst/dev_guide/developing_modules_checklist.rst @@ -117,8 +117,8 @@ Read the complete :ref:`module metadata specification ` serializable. A common pitfall is to try returning an object via exit_json(). Instead, convert the fields you need from the object into the fields of a dictionary and return the dictionary. -* When fetching URLs, please use either fetch_url or open_url from ansible.module_utils.urls - rather than urllib2; urllib2 does not natively verify TLS certificates and so is insecure for https. +* When fetching URLs, please use either fetch_url or open_url from ansible.module_utils.urls + rather than urllib2; urllib2 does not natively verify TLS certificates and so is insecure for https. * facts modules must return facts in the ansible_facts field of the :ref:`result dictionary`. * modules that are purely about fact gathering need to implement check_mode.