diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index a7dc6ddbc3..75bf8d5d27 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,6 +1,6 @@ ## Code of Conduct Please be sure you have read our Code of Conduct here: -https://pulpproject.org/conduct/ +https://pulpproject.org/help/more/governance/code-of-conduct/ Thank you for keeping our community a welcoming one! diff --git a/README.md b/README.md index 0be39ca249..d3974ea8e3 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Using Pulp you can: Pulp is completely free and open-source! - License: GPLv2+ -- Documentation: https://docs.pulpproject.org/ +- Documentation: https://pulpproject.org/ - Source: https://github.com/pulp/pulpcore/ - Bugs: https://github.com/pulp/pulpcore/issues diff --git a/docs/assets/images/pulp-101.png b/docs/assets/images/pulp-101.png new file mode 100644 index 0000000000..1124027d77 Binary files /dev/null and b/docs/assets/images/pulp-101.png differ diff --git a/docs/user/tutorials/index.md b/docs/user/tutorials/index.md index 0c547fdda9..3c4ed59a63 100644 --- a/docs/user/tutorials/index.md +++ b/docs/user/tutorials/index.md @@ -1,5 +1,10 @@ # Start Here +
+ ![Pulp 101](site:pulpcore/docs/assets/images/pulp-101.png) + +
+ If you are a new user and are unsure where to begin, this page outlines the different options available, as well as the limitations and requirements for those options. ## Want to evaluate Pulp? diff --git a/pulpcore/app/models/replica.py b/pulpcore/app/models/replica.py index 9012844738..09045e36f2 100644 --- a/pulpcore/app/models/replica.py +++ b/pulpcore/app/models/replica.py @@ -1,8 +1,8 @@ """ Check `Plugin Writer's Guide`_ for more details. -.. _Plugin Writer's Guide: - https://docs.pulpproject.org/pulpcore/plugins/plugin-writer/index.html +Plugin Writer's Guide: +https://pulpproject.org/pulpcore/docs/dev/learn/plugin-concepts/ """ from django.db import models diff --git a/pulpcore/app/settings.py b/pulpcore/app/settings.py index aa07cb2e07..779ed01c60 100644 --- a/pulpcore/app/settings.py +++ b/pulpcore/app/settings.py @@ -312,7 +312,7 @@ ALLOWED_EXPORT_PATHS = [] -# https://docs.pulpproject.org/pulpcore/configuration/settings.html#pulp-cache +# https://pulpproject.org/pulpcore/docs/admin/reference/settings/?h=settings#cache_enabled CACHE_ENABLED = False CACHE_SETTINGS = { "EXPIRES_TTL": 600, # 10 minutes @@ -415,7 +415,7 @@ cache_validator = redis_url_validator | (redis_host_validator & redis_port_validator) cache_validator.messages["combined"] = ( "CACHE_ENABLED is enabled but it requires to have REDIS configured. Please check " - "https://docs.pulpproject.org/pulpcore/configuration/settings.html#redis-settings " + "https://pulpproject.org/pulpcore/docs/admin/reference/settings/?h=settings#redis-settings " "for more information." ) diff --git a/pulpcore/tests/functional/api/test_auth.py b/pulpcore/tests/functional/api/test_auth.py index cb75425cde..3dcd2d7fe9 100644 --- a/pulpcore/tests/functional/api/test_auth.py +++ b/pulpcore/tests/functional/api/test_auth.py @@ -1,7 +1,7 @@ """Tests for Pulp 3's authentication API. For more information, see the documentation on `Authentication -`_. +https://pulpproject.org/pulpcore/docs/admin/guides/auth/basic/ """ import json