Fix some broken links (#42079)
* Fix some broken links * We now only serve via https * redirects don't work with anchors, so update those links (devel/dev_guide)
This commit is contained in:
parent
6024a766e9
commit
e9dbebfa57
7 changed files with 23 additions and 24 deletions
|
@ -20,7 +20,7 @@ PEP 8 and basic style checks
|
||||||
* [PEP 8](https://www.python.org/dev/peps/pep-0008/) is a great Python style guide, which you should read.
|
* [PEP 8](https://www.python.org/dev/peps/pep-0008/) is a great Python style guide, which you should read.
|
||||||
* PEP 8 must not be strictly followed in all aspects, but most of it is good advice.
|
* PEP 8 must not be strictly followed in all aspects, but most of it is good advice.
|
||||||
* The line is limited to 160 characters.
|
* The line is limited to 160 characters.
|
||||||
* To run checks for things we care about, use [ansible-test](https://docs.ansible.com/ansible/dev_guide/testing_pep8.html#running-locally).
|
* To run checks for things we care about, use [ansible-test](https://docs.ansible.com/ansible/devel/dev_guide/testing_sanity.html).
|
||||||
* Similarly, additional checks can be made with "make pyflakes".
|
* Similarly, additional checks can be made with "make pyflakes".
|
||||||
* There is no need to submit code changes for PEP 8 and pyflakes fixes, as these break attribution history. Project leadership will make these periodically.
|
* There is no need to submit code changes for PEP 8 and pyflakes fixes, as these break attribution history. Project leadership will make these periodically.
|
||||||
* Do not submit pull requests that simply adjust whitespace in the code.
|
* Do not submit pull requests that simply adjust whitespace in the code.
|
||||||
|
@ -28,7 +28,7 @@ PEP 8 and basic style checks
|
||||||
Testing
|
Testing
|
||||||
=======
|
=======
|
||||||
|
|
||||||
* Much of ansible's testing needs are in integration, not unit tests. Add module tests there.
|
* Much of Ansible's testing needs are in integration, not unit tests. Add module tests there.
|
||||||
* That being said, there are unit tests too!
|
* That being said, there are unit tests too!
|
||||||
* Code written must absolutely pass tests (i.e. "make tests")
|
* Code written must absolutely pass tests (i.e. "make tests")
|
||||||
* You should anticipate any error paths in your code and test down those error paths.
|
* You should anticipate any error paths in your code and test down those error paths.
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -9,7 +9,7 @@
|
||||||
# make deb-src -------------- produce a DEB source
|
# make deb-src -------------- produce a DEB source
|
||||||
# make deb ------------------ produce a DEB
|
# make deb ------------------ produce a DEB
|
||||||
# make docs ----------------- rebuild the manpages (results are checked in)
|
# make docs ----------------- rebuild the manpages (results are checked in)
|
||||||
# make tests ---------------- run the tests (see https://docs.ansible.com/ansible/dev_guide/testing_units.html for requirements)
|
# make tests ---------------- run the tests (see https://docs.ansible.com/ansible/devel/dev_guide/testing_units.html for requirements)
|
||||||
# make pyflakes, make pep8 -- source code checks
|
# make pyflakes, make pep8 -- source code checks
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
|
|
|
@ -65,7 +65,7 @@ For instance ensuring that a specific tenant exists, is done using the following
|
||||||
description: Customer XYZ
|
description: Customer XYZ
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
A complete list of existing ACI modules is available for the latest stable release on the :ref:`list of network modules <network_modules>`. You can also view the `current development version <http://docs.ansible.com/ansible/devel/modules/list_of_network_modules.html#aci>`_.
|
A complete list of existing ACI modules is available for the latest stable release on the :ref:`list of network modules <network_modules>`. You can also view the `current development version <https://docs.ansible.com/ansible/devel/modules/list_of_network_modules.html#aci>`_.
|
||||||
|
|
||||||
Querying ACI configuration
|
Querying ACI configuration
|
||||||
..........................
|
..........................
|
||||||
|
|
|
@ -209,5 +209,5 @@ Appendix
|
||||||
|
|
||||||
- [1] - https://docs.ansible.com/ansible/latest/vault.html
|
- [1] - https://docs.ansible.com/ansible/latest/vault.html
|
||||||
|
|
||||||
- [2] - http://docs.ansible.com/ansible-tower/latest/html/userguide/credentials.html
|
- [2] - https://docs.ansible.com/ansible-tower/latest/html/userguide/credentials.html
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,7 @@
|
||||||
# If a key doesn't apply to your module (ex: choices, default, or
|
# If a key doesn't apply to your module (ex: choices, default, or
|
||||||
# aliases) you can use the word 'null', or an empty list, [], where
|
# aliases) you can use the word 'null', or an empty list, [], where
|
||||||
# appropriate.
|
# appropriate.
|
||||||
#
|
# See https://docs.ansible.com/ansible/devel/dev_guide/developing_modules_documenting.html for more information
|
||||||
# See https://docs.ansible.com/ansible/dev_guide/developing_modules_documenting.html for more information
|
|
||||||
#
|
#
|
||||||
module: modulename
|
module: modulename
|
||||||
short_description: This is a sentence describing the module
|
short_description: This is a sentence describing the module
|
||||||
|
|
|
@ -47,7 +47,7 @@ New module development
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
Please read
|
Please read
|
||||||
`link <https://docs.ansible.com/ansible/dev_guide/developing_modules.html#how-to-develop-a-module>`__,
|
`link <https://docs.ansible.com/ansible/devel/dev_guide/developing_modules.html>`__,
|
||||||
first to know what common properties, functions and features every module must
|
first to know what common properties, functions and features every module must
|
||||||
have.
|
have.
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# This Makefile is for legacy integration tests.
|
# This Makefile is for legacy integration tests.
|
||||||
# Most new tests should be implemented using ansible-test.
|
# Most new tests should be implemented using ansible-test.
|
||||||
# Existing tests are slowly being migrated to ansible-test.
|
# Existing tests are slowly being migrated to ansible-test.
|
||||||
# See: https://docs.ansible.com/ansible/dev_guide/testing_integration.html
|
# See: https://docs.ansible.com/ansible/devel/dev_guide/testing_integration.html
|
||||||
|
|
||||||
TEST_DIR ?= ~/ansible_testing
|
TEST_DIR ?= ~/ansible_testing
|
||||||
INVENTORY ?= inventory
|
INVENTORY ?= inventory
|
||||||
|
|
Loading…
Reference in a new issue