diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml new file mode 100644 index 0000000..dbe3d5c --- /dev/null +++ b/.github/workflows/code-quality.yml @@ -0,0 +1,23 @@ +name: Code Quality + +on: + workflow_call: + +jobs: + pre-commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.12" + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pre-commit + + - name: Run code quality checks + run: make code-quality diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 0640e06..1420b42 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -8,10 +8,14 @@ concurrency: cancel-in-progress: true jobs: + code-quality: + uses: "./.github/workflows/code-quality.yml" + docs: uses: "./.github/workflows/docs.yml" tests: + needs: "code-quality" uses: "./.github/workflows/tests.yml" ready-to-ship: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..7902073 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,33 @@ +--- +repos: + - repo: "https://github.com/pre-commit/pre-commit-hooks" + rev: "v5.0.0" + hooks: + - id: "trailing-whitespace" + exclude: "^pulp_docs" + - id: "end-of-file-fixer" + exclude: "^pulp_docs" + - id: "check-added-large-files" + - id: "check-toml" + + - repo: "https://github.com/astral-sh/ruff-pre-commit" + rev: "v0.11.10" + hooks: + # Run the linter. + - id: "ruff-check" + args: [ "--fix" ] + # Run the formatter. + - id: "ruff-format" + + - repo: "https://github.com/adrienverge/yamllint" + rev: "v1.37.1" + hooks: + - id: "yamllint" + files: ".*y[a]ml$" + + - repo: "https://github.com/crate-ci/typos" + rev: "v1.32.0" + hooks: + - id: "typos" + exclude: "(^tests)|(^docs)|(^pulp_docs)" +... diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 0000000..c76ed48 --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,42 @@ +--- + +yaml-files: + - '*.yaml' + - '*.yml' + - '.yamllint' + +rules: # defaults are commented out + # anchors: enable + # braces: enable + # brackets: enable + # colons: enable + # commas: enable + # comments: + # level: warning + # comments-indentation: + # level: warning + document-end: enable + document-start: enable + # level: warning + # empty-lines: enable + # empty-values: disable + # float-values: disable + # hyphens: enable + # indentation: enable + # key-duplicates: enable + # key-ordering: disable + # line-length: enable + # new-line-at-end-of-file: enable + # new-lines: enable + # octal-values: disable + # https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.quoted_strings + quoted-strings: + quote-type: double + required: true + allow-quoted-quotes: true + check-keys: false + + # trailing-spaces: enable + # truthy: + # level: warning +... diff --git a/Makefile b/Makefile index 222acbc..310d622 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ +code-quality: + pre-commit run -a + docs: mkdocs build diff --git a/README.md b/README.md index ed5f4b6..6678f37 100644 --- a/README.md +++ b/README.md @@ -43,13 +43,13 @@ pipx install git+https://github.com/pulp/pulp-docs --include-deps pulp-docs serve ``` -For development, use your prefered method! +For development, use your preferred method! ## How to override `repolist.yml` -If you want to share work you are doing in muliple forks, you can share a custom `repolist.yml` which points to your forks. +If you want to share work you are doing in multiple forks, you can share a custom `repolist.yml` which points to your forks. -Then, anyone can test them locally by overriting your `repolist.yml` like so: +Then, anyone can test them locally by overwriting your `repolist.yml` like so: ```bash $ cat "path/to/my/repolist.yml" @@ -63,4 +63,3 @@ repos: $ export PULPDOCS_MKDOCS_FILE="path/to/my/repolist.yml" $ pulp-docs serve ``` - diff --git a/docs/dev/guides/create-plugin-overviews.md b/docs/dev/guides/create-plugin-overviews.md index d59ba62..0172899 100644 --- a/docs/dev/guides/create-plugin-overviews.md +++ b/docs/dev/guides/create-plugin-overviews.md @@ -30,5 +30,3 @@ Things to keep in mind: - **Audience:** Target newcomers. Experienced users will probably use the ToC or the search. - **Format:** Synopsis + Roadmap. Tell what your plugin is, what it does and a simple roadmap for starting. - **Size:** Keep it brief. This should an easy win for the user before he starts this journey. - - diff --git a/docs/dev/index.md b/docs/dev/index.md index e4a311f..e811664 100644 --- a/docs/dev/index.md +++ b/docs/dev/index.md @@ -8,4 +8,3 @@ Also, this is used for the production build. To start using it, see the [Getting Started](site:pulp-docs/docs/dev/tutorials/getting-started/) section. Before contributing, we recommend reading about the [Architecture](site:pulp-docs/docs/dev/reference/architecture/). - diff --git a/docs/dev/reference/markdown-cheatsheet.md b/docs/dev/reference/markdown-cheatsheet.md index ce30f25..320b6fb 100644 --- a/docs/dev/reference/markdown-cheatsheet.md +++ b/docs/dev/reference/markdown-cheatsheet.md @@ -166,4 +166,3 @@ With subtitle: [See mkdocs-material](https://squidfunk.github.io/mkdocs-material/reference/admonitions/#supported-types) Use them wisely. - diff --git a/mkdocs.yml b/mkdocs.yml index d914bd4..395cc70 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -38,7 +38,7 @@ theme: toggle: icon: material/toggle-switch name: Switch to light mode -# Blog's Navigation needs to be excempt from literate nav... +# Blog's Navigation needs to be exempt from literate nav... nav: - Home: "index.md" - "User Manual": diff --git a/pyproject.toml b/pyproject.toml index a38290e..b2a4e73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,3 +39,25 @@ pythonpath = "src" addopts = [ "--import-mode=importlib", ] + +[tool.ruff] +line-length = 100 +target-version = "py312" + +[tool.ruff.lint] +select = ["E", "F", "I"] +ignore = [] +exclude = [ + ".git", + ".ruff_cache", + "__pycache__", + "build", + "dist", + "venv", + ".venv", +] + +[tool.ruff.format] +quote-style = "double" +indent-style = "space" +line-ending = "auto" diff --git a/src/pulp_docs/cli.py b/src/pulp_docs/cli.py index 1102c59..bca87cc 100644 --- a/src/pulp_docs/cli.py +++ b/src/pulp_docs/cli.py @@ -1,10 +1,11 @@ import asyncio -import click -import git from pathlib import Path +import click +import git from mkdocs.__main__ import cli as mkdocs_cli from mkdocs.config import load_config + from pulp_docs.context import ctx_blog, ctx_docstrings, ctx_draft, ctx_path @@ -13,9 +14,7 @@ def blog_callback(ctx: click.Context, param: click.Parameter, value: bool) -> bo return value -def docstrings_callback( - ctx: click.Context, param: click.Parameter, value: bool -) -> bool: +def docstrings_callback(ctx: click.Context, param: click.Parameter, value: bool) -> bool: ctx_docstrings.set(value) return value @@ -59,7 +58,7 @@ def find_path_callback(ctx: click.Context, param: click.Parameter, value: bool) expose_value=False, default="", callback=find_path_callback, - help="A colon separated list of lookup paths in the form: [repo1@]path1 [:[repo2@]path2 [...]].", + help="A colon separated list of lookup paths in the form:[repo1@]path1 [:[repo2@]path2 [...]].", ) @@ -70,15 +69,11 @@ async def clone_repository(repo_url: str) -> None: repo_name = repo_url.split("/")[-1] repo_path = dest_dir / repo_name if repo_path.exists(): - click.echo( - f"Repository {repo_name} already exists at {repo_path}, skipping." - ) + click.echo(f"Repository {repo_name} already exists at {repo_path}, skipping.") return click.echo(f"Cloning {repo_url} to {repo_path}...") loop = asyncio.get_running_loop() - await loop.run_in_executor( - None, lambda: git.Repo.clone_from(repo_url, repo_path, depth=1) - ) + await loop.run_in_executor(None, lambda: git.Repo.clone_from(repo_url, repo_path, depth=1)) click.echo(f"Successfully cloned {repo_name}") tasks = [clone_repository(repo) for repo in repositories] diff --git a/src/pulp_docs/constants.py b/src/pulp_docs/constants.py index 62e2b67..4f082ac 100644 --- a/src/pulp_docs/constants.py +++ b/src/pulp_docs/constants.py @@ -38,7 +38,7 @@ class Names: # personas USER = "Usage" ADMIN = "Administration" - DEV = "Developemnt" + DEV = "Developments" # other PULPCORE_TUTORIAL = "Getting Started" diff --git a/src/pulp_docs/context.py b/src/pulp_docs/context.py index bd54325..a85c4aa 100644 --- a/src/pulp_docs/context.py +++ b/src/pulp_docs/context.py @@ -1,6 +1,5 @@ from contextvars import ContextVar - ctx_blog = ContextVar("ctx_blog", default=True) ctx_docstrings = ContextVar("ctx_docstrings", default=True) ctx_draft = ContextVar("ctx_draft", default=False) diff --git a/src/pulp_docs/data/repolist.yml b/src/pulp_docs/data/repolist.yml index 4749a51..a26f823 100644 --- a/src/pulp_docs/data/repolist.yml +++ b/src/pulp_docs/data/repolist.yml @@ -1,6 +1,6 @@ meta: version: 1 - rest_api_template: https://docs.pulpproject.org/{}/restapi.html + rest_api_template: https://docs.pulpproject.org/{}/restapi.html repo_types: - core - content diff --git a/src/pulp_docs/openapi.py b/src/pulp_docs/openapi.py index 6b08e2f..5dd09c0 100644 --- a/src/pulp_docs/openapi.py +++ b/src/pulp_docs/openapi.py @@ -7,18 +7,15 @@ import shutil import subprocess import tempfile +from importlib.resources import files from pathlib import Path from typing import NamedTuple, Optional -from importlib.resources import files - from pulp_docs.constants import BASE_TMPDIR_NAME from pulp_docs.repository import Repos -def main( - output_dir: Path, plugins_filter: Optional[list[str]] = None, dry_run: bool = False -): +def main(output_dir: Path, plugins_filter: Optional[list[str]] = None, dry_run: bool = False): """Creates openapi json files for all or selected plugins in output dir.""" repolist = str(files("pulp_docs").joinpath("data/repolist.yml")) repos = Repos.from_yaml(repolist).get_repos(["content"]) @@ -57,7 +54,7 @@ def get_remote_url(self): class OpenAPIGenerator: """ - Responsible for seting up a python environment with the required + Responsible for setting up a python environment with the required Pulp packages to generate openapi schemas for all registered plugins. Args: @@ -97,9 +94,7 @@ def setup_venv(self, plugin: PulpPlugin): """ create_venv_cmd = ("python", "-m", "venv", self.venv_path) url = ( - plugin.get_remote_url() - if not plugin.is_subpackage - else self.pulpcore.get_remote_url() + plugin.get_remote_url() if not plugin.is_subpackage else self.pulpcore.get_remote_url() ) # setuptools provides distutils for python >=3.12. install_cmd = ["pip", "install", f"git+{url}", "setuptools"] @@ -115,7 +110,7 @@ def setup_venv(self, plugin: PulpPlugin): def run_python(self, *cmd: str) -> str: """Run a binary command from within the tmp venv. - Basicaly: $tmp-venv/bin/{first-arg} {remaining-args} + Basically: $tmp-venv/bin/{first-arg} {remaining-args} """ cmd_bin = os.path.join(self.venv_path, f"bin/{cmd[0]}") final_cmd = [cmd_bin] + list(cmd[1:]) @@ -146,7 +141,7 @@ def parse_args(): "-l", "--plugin-list", type=str, - help="List of plugins that should be used. Use all if ommited.", + help="List of plugins that should be used. Use all if omitted.", ) args = parser.parse_args() diff --git a/src/pulp_docs/plugin.py b/src/pulp_docs/plugin.py index 3a6cc86..e45cdd3 100644 --- a/src/pulp_docs/plugin.py +++ b/src/pulp_docs/plugin.py @@ -1,19 +1,18 @@ -import typing as t -from pathlib import Path import json import tomllib -import yaml -import glob +import typing as t +from dataclasses import dataclass +from pathlib import Path import httpx -from dataclasses import dataclass -from git import Repo, GitCommandError +import yaml +from git import GitCommandError, Repo from mkdocs.config import Config, config_options from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError -from mkdocs.plugins import get_plugin_logger, BasePlugin +from mkdocs.plugins import BasePlugin, get_plugin_logger from mkdocs.structure.files import File, Files -from mkdocs.structure.nav import Navigation, Section, Link +from mkdocs.structure.nav import Link, Navigation, Section from mkdocs.structure.pages import Page from mkdocs.utils.templates import TemplateContext @@ -174,10 +173,7 @@ def dev_nav(self) -> list[t.Any]: return result def missing_indices(self) -> t.Iterator[Path]: - if ( - not self._user_index_found - and len(self._user_uris) + len(self._admin_uris) > 0 - ): + if not self._user_index_found and len(self._user_uris) + len(self._admin_uris) > 0: yield self._user_index_uri if not self._dev_index_found and len(self._dev_uris) > 0: @@ -264,9 +260,7 @@ def load_components(find_path: list[str], config: MkDocsConfig, draft: bool): if component: loaded_components.append(component) all_components = {o.path for o in config.components} - not_loaded_components = all_components.difference( - {o.path for o in loaded_components} - ) + not_loaded_components = all_components.difference({o.path for o in loaded_components}) if not_loaded_components: not_loaded_components = sorted(not_loaded_components) if draft: @@ -295,9 +289,7 @@ def on_config(self, config: MkDocsConfig) -> MkDocsConfig | None: for component in self.config.components: components_var.append(component_data(component)) config.watch.append(str(component.component_dir / "docs")) - mkdocstrings_config.handlers["python"]["paths"].append( - str(component.component_dir) - ) + mkdocstrings_config.handlers["python"]["paths"].append(str(component.component_dir)) macros_plugin = config.plugins["macros"] macros_plugin.register_macros({"rss_items": rss_items}) @@ -329,9 +321,7 @@ def on_files(self, files: Files, /, *, config: MkDocsConfig) -> Files | None: component_parent_dir = component_dir.parent component_docs_dir = component_dir / "staging_docs" if component_docs_dir.exists(): - log.warning( - f"Found deprecated 'staging_docs' directory in {component.path}." - ) + log.warning(f"Found deprecated 'staging_docs' directory in {component.path}.") else: component_docs_dir = component_dir / "docs" component_slug = Path(component_dir.name) @@ -339,9 +329,7 @@ def on_files(self, files: Files, /, *, config: MkDocsConfig) -> Files | None: component_nav = ComponentNav(config, component_slug) - for dirpath, dirnames, filenames in component_docs_dir.walk( - follow_symlinks=True - ): + for dirpath, dirnames, filenames in component_docs_dir.walk(follow_symlinks=True): for filename in filenames: abs_src_path = dirpath / filename pulp_meta: dict[str, t.Any] = {} @@ -359,9 +347,7 @@ def on_files(self, files: Files, /, *, config: MkDocsConfig) -> Files | None: pulp_meta["edit_url"] = ( f"{component.git_url}/edit/{git_branch}/{git_relpath}" ) - new_file = File.generated( - config, src_uri, abs_src_path=abs_src_path - ) + new_file = File.generated(config, src_uri, abs_src_path=abs_src_path) new_file.pulp_meta = pulp_meta files.append(new_file) component_nav.add(src_uri) @@ -403,9 +389,7 @@ def on_files(self, files: Files, /, *, config: MkDocsConfig) -> Files | None: component_changes = component_dir / "CHANGES.md" if component_changes.exists(): src_uri = component_slug / "changes.md" - files.append( - File.generated(config, src_uri, abs_src_path=component_changes) - ) + files.append(File.generated(config, src_uri, abs_src_path=component_changes)) component_nav.add(src_uri) user_nav.setdefault(component.kind, []).append( @@ -415,12 +399,8 @@ def on_files(self, files: Files, /, *, config: MkDocsConfig) -> Files | None: {component.title: component_nav.dev_nav()} ) - config.nav[1]["User Manual"].extend( - [{key: value} for key, value in user_nav.items()] - ) - config.nav[2]["Developer Manual"].extend( - [{key: value} for key, value in dev_nav.items()] - ) + config.nav[1]["User Manual"].extend([{key: value} for key, value in user_nav.items()]) + config.nav[2]["Developer Manual"].extend([{key: value} for key, value in dev_nav.items()]) return files def on_page_context( diff --git a/src/pulp_docs/repository.py b/src/pulp_docs/repository.py index b2bd8bf..f7221e3 100644 --- a/src/pulp_docs/repository.py +++ b/src/pulp_docs/repository.py @@ -6,19 +6,19 @@ from __future__ import annotations +import configparser import logging import shutil import subprocess import tarfile import tempfile +import tomllib import typing as t from dataclasses import dataclass, field from io import BytesIO from pathlib import Path import httpx -import configparser -import tomllib import yaml from pulp_docs.utils.general import get_git_ignored_files @@ -32,7 +32,7 @@ # @dataclass # raising errors in py311/312 class RepoStatus: """ - Usefull status information about a downloaded repository. + Useful status information about a downloaded repository. """ def __init__(self, **kwargs): @@ -154,11 +154,7 @@ def download( version_file = src_copy_path / "pyproject.toml" if version_file.exists(): content = tomllib.loads(version_file.read_text()) - self.version = ( - content.get("tool", {}) - .get("bumpversion", {}) - .get("current_version") - ) + self.version = content.get("tool", {}).get("bumpversion", {}).get("current_version") # update app_label for app plugins template_config_file = src_copy_path / "template_config.yml" @@ -166,9 +162,7 @@ def download( self.template_config = yaml.load( template_config_file.read_bytes(), Loader=yaml.SafeLoader ) - app_label_map = { - p["name"]: p["app_label"] for p in self.template_config["plugins"] - } + app_label_map = {p["name"]: p["app_label"] for p in self.template_config["plugins"]} subpackages = self.subpackages or [] for plugin in (self, *subpackages): plugin.app_label = app_label_map.get(plugin.name, None) @@ -189,9 +183,7 @@ def download_from_gh_main(dest_dir: Path, owner: str, name: str, branch: str): try: subprocess.run(cmd, check=True) except subprocess.CalledProcessError as e: - log.error( - f"An error ocurred while trying to download '{name}' source-code:\n{e}" - ) + log.error(f"An error occurred while trying to download '{name}' source-code:\n{e}") raise log.info("Done.") @@ -206,8 +198,8 @@ def download_from_gh_latest(dest_dir: Path, owner: str, name: str): Returns the download url. """ - latest_release_link_url = ( - "https://api.github.com/repos/{}/{}/releases/latest".format(owner, name) + latest_release_link_url = "https://api.github.com/repos/{}/{}/releases/latest".format( + owner, name ) print("Fetching latest release with:", latest_release_link_url) @@ -278,9 +270,7 @@ def repo_types(self): @property def all(self): """The set of repositories and subpackages""" - repos = [ - repo for repo_type in self.repo_by_types.values() for repo in repo_type - ] + repos = [repo for repo_type in self.repo_by_types.values() for repo in repo_type] subpackages = [] for repo in repos: if repo.subpackages: @@ -367,9 +357,7 @@ def test_fixtures(cls): type="content", ), Repo("Maven", "new_repo3", local_basepath=FIXTURE_WORKDIR, type="content"), - Repo( - "Docs Tool", "pulp-docs", local_basepath=FIXTURE_WORKDIR, type="other" - ), + Repo("Docs Tool", "pulp-docs", local_basepath=FIXTURE_WORKDIR, type="other"), ] repo_types = { "core": DEFAULT_CORE, diff --git a/src/pulp_docs/test_tools/doctree_writer.py b/src/pulp_docs/test_tools/doctree_writer.py index 68e747b..5f6d3e8 100644 --- a/src/pulp_docs/test_tools/doctree_writer.py +++ b/src/pulp_docs/test_tools/doctree_writer.py @@ -1,8 +1,8 @@ +import re +import tomllib from pathlib import Path -import tomllib import yaml -import re def parse_doctree_file(doctree_file: Path, target: Path, project_name: str = "foobar"): @@ -18,26 +18,24 @@ def parse_doctree_file(doctree_file: Path, target: Path, project_name: str = "fo ```pseudo-format { - projet-name-1: [{path: content}, ..., {path: content}], + project-name-1: [{path: content}, ..., {path: content}], ... - projet-name-N: [{path: content}, ..., {path: content}], + project-name-N: [{path: content}, ..., {path: content}], } ``` See `test_doctree_writer` for samples. Params: - doctree_file: The file with a supported extenstion format. E.g: `.toml` `.yml` and `.doctree` - target: The directory where the project should be writter to. + doctree_file: The input file to be parsed. Supports `.toml` `.yml` and `.doctree` + target: The directory where the project should be written to. """ def custom_parser(file: Path): _data = file.read_text() section_match = r"\n*\[\[\s*[\w-]+\s*\]\]\n" item_match = r"----+\n" - section_split = [ - section for section in re.split(section_match, _data) if section - ] + section_split = [section for section in re.split(section_match, _data) if section] item_split = [ item for section in section_split diff --git a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/guides/How to generate buy..md b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/guides/How to generate buy..md index eb46d9a..f7d528a 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/guides/How to generate buy..md +++ b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/guides/How to generate buy..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to generate buy. @@ -32,6 +32,3 @@ Face security community big staff positive both. Into north hear ok. Court hair ## 3 - generate knowledge itself type. Sign put brother class learn animal treatment. Really factor change believe likely. Several improve pass hear wife set wind. Policy mother technology region recognize Mr firm your. Past upon indeed occur. Find our alone figure although bed issue. Build health not ten such when. - - - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/About autonomous Repository configuration.md b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/About autonomous Repository configuration.md index 602a5be..c8c9301 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/About autonomous Repository configuration.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/About autonomous Repository configuration.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # About autonomous Repository configuration @@ -69,4 +69,3 @@ Care become enter wear. Least draw big onto common word. Walk material wide wind Garden on within data. Range true system public dog Republican. Term affect prepare hospital yard. Decide action identify effect until lead pass class. Loss admit appear agreement laugh special media. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/In perspective: flexible Repository setup.md b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/In perspective: flexible Repository setup.md index a03afa9..8834ce5 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/In perspective: flexible Repository setup.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/In perspective: flexible Repository setup.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # In perspective: flexible Repository setup @@ -47,4 +47,3 @@ Letter local garden visit. Eye study away family. Bad yes security else authorit Author ago college owner hard. Be long conference beat medical. Where wear third carry tell. Page opportunity director region focus activity hour. Attorney guy factor attack to improve. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/In perspective: modular Repository configuration.md b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/In perspective: modular Repository configuration.md index fd586bf..3135496 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/In perspective: modular Repository configuration.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/learn/In perspective: modular Repository configuration.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # In perspective: modular Repository configuration @@ -38,4 +38,3 @@ Resource course industry oil exactly partner. Evening however condition lead. Increase treatment common everything commercial tonight teacher. Front clear produce success already pass. Mean yet four well popular show. Little management bring exactly fish still. Apply responsibility girl bad stay good control. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/00 - Getting started as content-manager.md b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/00 - Getting started as content-manager.md index 61e3f6a..73818cd 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/00 - Getting started as content-manager.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/00 - Getting started as content-manager.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['tutorial', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 00 - Getting started as content-manager @@ -58,4 +58,3 @@ Sense resource hot live song score during. Why state ahead lawyer standard artic Thing choice here we. Measure suffer deal race though quality what able. Anyone high bed woman wrong couple. Low follow also guess person start message. Hot cup music sense home put board certainly. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/01 - Organizing the content dependencie.md b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/01 - Organizing the content dependencie.md index e46e1fe..c186cef 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/01 - Organizing the content dependencie.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/01 - Organizing the content dependencie.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 01 - Organizing the content dependencie @@ -92,4 +92,3 @@ Deal move wall. Such fast thought social. Weight get similar in officer energy. Statement suddenly cup discussion time. Hear big check black business with. Campaign effort which. Give set such place matter should really act. Too card coach arm dream whom prevent. Who offer month because mention bill. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/02 - Handling the database internals.md b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/02 - Handling the database internals.md index a4c0a69..1f4ea30 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/02 - Handling the database internals.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/content-manager/tutorials/Getting started as content-manager/02 - Handling the database internals.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 02 - Handling the database internals @@ -83,4 +83,3 @@ Nearly science thought too. Right face pay protect. Church teach information sev May loss name sea us whom set. Often that reality owner. Play manager describe when. Seven follow room. Operation five remember my suddenly up check. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to create federal entire..md b/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to create federal entire..md index 5019c92..7a4841f 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to create federal entire..md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to create federal entire..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to create federal entire. @@ -26,6 +26,3 @@ Believe risk no government unit support. Ago college out machine. Management fee ## 2 - delete song business more. Yourself court police difference senior month company. Scientist stand candidate economic Congress together where. Sound rate official window term million. Other when board particular sign understand. Event choice far report sometimes. Difficult fill indeed seek fine next change. - - - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to create money let charge..md b/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to create money let charge..md index 0362c75..344c84d 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to create money let charge..md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to create money let charge..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to create money let charge. @@ -32,6 +32,3 @@ Week buy become develop I throw step. Activity movie system without five seek pr ## 3 - create plan training. Drop different gas despite. Make expect front share this. Put return first tax as protect. Technology face provide growth try. General ago miss song. Full reality benefit cover test of price ability. Last sense quite final risk memory possible. Federal between until that poor dinner democratic. - - - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to do couple first..md b/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to do couple first..md index 9f8ada5..81bb100 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to do couple first..md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to do couple first..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to do couple first. @@ -26,6 +26,3 @@ Pay main compare difference can. Drug project day professor positive heart young ## 2 - update page market must. Yard value page business president. Tax fly will bit then mention. May mouth choice start reason. Tonight high ability TV sit seem couple. General own need attorney. Various writer final shoulder large. Space system pass direction former husband together. Question why use when. Wrong few nothing method something religious whole. - - - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to do eight near number..md b/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to do eight near number..md index 7a5aa2c..e5d7c7d 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to do eight near number..md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to do eight near number..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to do eight near number. @@ -26,6 +26,3 @@ Whatever tree writer hotel radio policy. Short your moment. Red area bag down pr ## 2 - generate government science. Sign house than little. Person task well respond onto century trade. Part consumer high painting who throughout. Expert report American conference per any such. Argue southern choice fund sister able. Lose with only treat week force. Within despite evidence however by. Student hair figure exactly detail vote. - - - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to generate vote student..md b/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to generate vote student..md index 1f4a04c..0846094 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to generate vote student..md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/guides/How to generate vote student..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to generate vote student. @@ -32,6 +32,3 @@ Analysis as part federal over way. Early name couple which today true energy. Fa ## 3 - generate out force why. Why score alone Mr. Nice month history ready medical teach. Official seat fire team alone rule. Most society hold also training. Final generation spend teach near. System about learn win measure compare reach gun. Audience each yard before traditional. They work road above discussion consumer shake. - - - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/About modular Content setup.md b/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/About modular Content setup.md index a0686af..a0110cb 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/About modular Content setup.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/About modular Content setup.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # About modular Content setup @@ -66,4 +66,3 @@ Enter anything arrive television education summer. Source Mr above kid bill proc Size upon away. Visit tell specific end herself. Partner activity five why. Sure upon military science free. Win senior along mother election discussion join. Lose be food senior. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/In perspective: scalable Database setup.md b/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/In perspective: scalable Database setup.md index 8a321a2..4d324ad 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/In perspective: scalable Database setup.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/In perspective: scalable Database setup.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # In perspective: scalable Database setup @@ -104,4 +104,3 @@ Set she sound teacher TV. Lay heart north particular hot machine. Herself hundred them region chance. A team staff water party. Property rock born class. Important attack up call prevent player whose. Particularly movement about someone down. Community company either seek. Include sit provide our. Let bring prepare citizen. Today alone who add science. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/Understanding autonomous Database ecossystem.md b/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/Understanding autonomous Database ecossystem.md index 3de9e10..d94753d 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/Understanding autonomous Database ecossystem.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/Understanding autonomous Database ecossystem.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # Understanding autonomous Database ecossystem @@ -67,4 +67,3 @@ Represent turn ok tonight. Hour tonight employee song meet baby who. Industry so Pretty visit day he bed ago stand. Remember right fall seven. Letter those evidence generation unit politics professor. Operation sort white writer Mr participant trade. Think better similar green central total seat democratic. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/Understanding resilient Content setup.md b/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/Understanding resilient Content setup.md index 518c36c..9cf0c64 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/Understanding resilient Content setup.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/learn/Understanding resilient Content setup.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # Understanding resilient Content setup @@ -73,4 +73,3 @@ Society actually help author computer capital Congress seven. Bed see mind should radio human fall. Key discuss from rock almost. Oil explain former information hotel the. Rock instead although investment should hair. Development attorney Republican crime. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/00 - Getting started as developer.md b/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/00 - Getting started as developer.md index fe42fd5..f52f3bc 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/00 - Getting started as developer.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/00 - Getting started as developer.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['tutorial', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 00 - Getting started as developer @@ -87,4 +87,3 @@ Training teach station. Cut box focus send. Short easy affect southern something Deep bar place doctor remember. Choice within here father ground although. Table husband record team population first government. Behind shoulder maintain everything amount service. Something production relate indicate rate some travel. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/01 - Organizing the repository dependencie.md b/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/01 - Organizing the repository dependencie.md index d00ff6e..171d563 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/01 - Organizing the repository dependencie.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/01 - Organizing the repository dependencie.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 01 - Organizing the repository dependencie @@ -63,4 +63,3 @@ Relate protect issue they back would play outside. Instead low policy increase. Space structure PM. Local minute run modern later here trip. Responsibility past perhaps. Three card care purpose whatever successful laugh. Long film test carry sing happen past. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/02 - Setting the content relationships.md b/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/02 - Setting the content relationships.md index ac24f53..a86cbb5 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/02 - Setting the content relationships.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/02 - Setting the content relationships.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 02 - Setting the content relationships @@ -44,4 +44,3 @@ Tv source mother character body health couple. Account first mean eight involve. Himself writer war series manage receive reality some. Sister PM least attorney. High woman plan beat. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/03 - Handling the content relationships.md b/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/03 - Handling the content relationships.md index 2ae1904..c64bc64 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/03 - Handling the content relationships.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/developer/tutorials/Getting started as developer/03 - Handling the content relationships.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 03 - Handling the content relationships @@ -68,4 +68,3 @@ Response allow democratic air own since both two. Me be property material becaus Recognize process again stage onto off image. Rather in despite perform general. Top very interview must structure. Try small day news name development others. Back culture democratic significant together entire pass. Director country society collection town receive. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to create story wrong newspaper..md b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to create story wrong newspaper..md index 7c29ac0..587a823 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to create story wrong newspaper..md +++ b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to create story wrong newspaper..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to create story wrong newspaper. @@ -38,6 +38,3 @@ Best career bed player. Trouble region bank finally building. Find actually mess ## 4 - update situation wonder. Well ground stay single daughter use leave. Six onto these. Approach ahead former control hit. Note budget fire consumer ability time special. Sort hotel add life eye government. Enough idea low financial rise and minute. Same least kind whose himself necessary hot. Movie sure alone especially will improve race my. - - - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to delete side back create..md b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to delete side back create..md index 6ae6b34..50c52e9 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to delete side back create..md +++ b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to delete side back create..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to delete side back create. @@ -32,6 +32,3 @@ Camera explain effect east amount. Seat section before task site. Hair everybody ## 3 - delete change western rate. Training rather mother risk character treatment. Outside score avoid play white would sister. Raise newspaper cup wonder girl two. Mr magazine military design hotel meet far room. Which serious save your itself. Throw source wrong more feel maybe. - - - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to generate store loss pretty..md b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to generate store loss pretty..md index 74376dd..040f082 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to generate store loss pretty..md +++ b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/guides/How to generate store loss pretty..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to generate store loss pretty. @@ -32,6 +32,3 @@ Father interview million. If discover how same. Upon her else rate positive. Adm ## 3 - delete shake woman write bit. Party foot surface nothing. Apply morning apply drop star movie policy. Stage full discussion range yes important trip commercial. Similar second someone yourself. Eight expect west right mean tax ever get. Father however sister key he wife five major. - - - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/In perspective: complex Database deployment.md b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/In perspective: complex Database deployment.md index faa0b2d..0aec881 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/In perspective: complex Database deployment.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/In perspective: complex Database deployment.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # In perspective: complex Database deployment @@ -95,4 +95,3 @@ Improve minute successful school PM performance many. Teacher create head short Western purpose big. On try participant inside day candidate. Project tax kid travel particular site. Mention customer authority no practice list care. Agree now what perform author word me who. Bar whom foreign reason. Much season care down attention. Special possible keep market. Story audience expect you concern upon employee camera. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/On scalable Database configuration.md b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/On scalable Database configuration.md index 154eb65..b779bc5 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/On scalable Database configuration.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/On scalable Database configuration.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # On scalable Database configuration @@ -72,4 +72,3 @@ Adult run provide book ten. Mention he meeting court later. Clearly middle particularly offer media. Cost remain perhaps. Less however idea window mention simply. Artist behind control main religious wear. Whole off contain move event television. Site season then her person. Control laugh federal significant job general. Quite chair finish information. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/Understanding modular Content setup.md b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/Understanding modular Content setup.md index cb2eb7f..6717fe9 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/Understanding modular Content setup.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/learn/Understanding modular Content setup.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # Understanding modular Content setup @@ -56,4 +56,3 @@ Left without cell raise win despite son. Hour check carry draw chair tend. Examp She really operation weight collection. Dark less stay great. This race eat town very popular send. Talk traditional race police plan reveal night. Message there computer effort. Remember nearly everything example. Gun actually site fact course. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/00 - Getting started as sys-admin.md b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/00 - Getting started as sys-admin.md index 2e9cbc2..57c845e 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/00 - Getting started as sys-admin.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/00 - Getting started as sys-admin.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['tutorial', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 00 - Getting started as sys-admin @@ -99,4 +99,3 @@ Of student necessary side glass feeling lose. Hot question claim scene main live. Pass after sell whole reason last. Exist especially partner cultural word main. Leave population friend blood. Scientist main fund final. Deal throughout like these edge. Human follow another whole exactly. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/01 - Organizing the content relationships.md b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/01 - Organizing the content relationships.md index 2d7b718..b37a0c4 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/01 - Organizing the content relationships.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/01 - Organizing the content relationships.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 01 - Organizing the content relationships @@ -75,4 +75,3 @@ Those much purpose. Goal half my threat dream. Truth quality draw company fly bo Recent expect father improve. Middle culture leader once clear house others. Picture degree point expect form reach. Control those tough eye sell push teacher nor. My where attorney stage card year. Staff old seven consumer difficult ok when. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/02 - Configuring the artifact dependencie.md b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/02 - Configuring the artifact dependencie.md index 8f5d6b1..67ffa90 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/02 - Configuring the artifact dependencie.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/02 - Configuring the artifact dependencie.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 02 - Configuring the artifact dependencie @@ -94,4 +94,3 @@ Perform relationship hair plant reality. Ten force growth none game hand total. Region face individual study quickly building street. Large modern provide magazine maintain. Experience as six. Pressure including reveal kind speech vote available. Fall somebody wait lot nearly. Election financial stay front. - diff --git a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/03 - Setting the artifact signals.md b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/03 - Setting the artifact signals.md index 4204a83..dad9a10 100644 --- a/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/03 - Setting the artifact signals.md +++ b/tests/fixtures/pulp-oci-images/staging_docs/sys-admin/tutorials/Getting started as sys-admin/03 - Setting the artifact signals.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 03 - Setting the artifact signals @@ -72,4 +72,3 @@ Local person ball see how along. About lead down feeling situation. Apply next l Its require sound against fill again. Each off southern today TV. Art stock sit raise star heart catch. Matter near across store same. If establish policy out discover rather fast enjoy. Page report while. - diff --git a/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to bind since here..md b/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to bind since here..md index ff6104f..f5ebc52 100644 --- a/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to bind since here..md +++ b/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to bind since here..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to bind since here. @@ -38,6 +38,3 @@ Seat maintain firm avoid man character whether. Win everyone present. Over ahead ## 4 - create blue watch manager. Like western goal who. Entire matter military race. Ground time list hand chance now fly. Myself after film enough pretty. Baby affect various including able through policy. Various model short carry major another drug. Summer recognize pass resource. Direction open nearly. Rather range public case. - - - diff --git a/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to bind world none..md b/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to bind world none..md index 0068515..bf08c92 100644 --- a/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to bind world none..md +++ b/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to bind world none..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to bind world none. @@ -32,6 +32,3 @@ Middle environmental accept. Election his training those me attack baby. Name pl ## 3 - generate appear strategy. Near act reality girl front draw. Different make stop morning seem. Support than get there. Pick event yes program sound figure. Director first believe community few piece relate. Student least issue nature risk. Bar thousand decision consider trade number every pressure. Mean late consumer paper use send. This article consider from western. - - - diff --git a/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to do already choose boy..md b/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to do already choose boy..md index 3aa0dc4..68e36cd 100644 --- a/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to do already choose boy..md +++ b/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to do already choose boy..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to do already choose boy. @@ -38,6 +38,3 @@ Safe agent show herself professor. Kitchen establish will but. True doctor serve ## 4 - delete evening skill. Court yes soon those. Ago music value learn teach new. By as half. Hot oil least reach war threat somebody. Leave let company apply popular source wish whether. Size include store attention action center. Together agent fill bring political could financial. Thank language yes series fund. - - - diff --git a/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to generate run realize something..md b/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to generate run realize something..md index d3ee552..eab95c5 100644 --- a/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to generate run realize something..md +++ b/tests/fixtures/pulp_maven/staging_docs/content-manager/guides/How to generate run realize something..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to generate run realize something. @@ -26,6 +26,3 @@ Anything skill likely pull support hope entire. Who someone need people. Here mo ## 2 - update pull leave. Site respond agency yet lawyer four character. Daughter space stock finish feel major. Thank head wall treat professor under article lot. Newspaper health instead pressure hope. Work idea top peace yard heart. Wrong down himself whole worker. Phone Mrs require charge in win out. Market center ask region. So soldier our several often instead try. - - - diff --git a/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/About scalable Model deployment.md b/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/About scalable Model deployment.md index 5d54668..48cd156 100644 --- a/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/About scalable Model deployment.md +++ b/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/About scalable Model deployment.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # About scalable Model deployment @@ -54,4 +54,3 @@ Play available create general its second cup. Shake seven another. Hot mention describe. Author style final perform. The most strategy trouble such artist central agree. Structure suddenly natural information. Environment cut care half strategy money market city. Little arrive or part. International whose tend politics relationship always market notice. - diff --git a/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/On resilient Repository setup.md b/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/On resilient Repository setup.md index b3fbf98..309dd6a 100644 --- a/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/On resilient Repository setup.md +++ b/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/On resilient Repository setup.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # On resilient Repository setup @@ -66,4 +66,3 @@ Knowledge after prevent ground notice. Major thought position reveal job common. Sea human suggest. Institution idea hold today. Issue where situation western reveal. Control language middle watch. Home each well animal car turn. Member maintain use usually production. - diff --git a/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/Understanding complex Content configuration.md b/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/Understanding complex Content configuration.md index c4a5565..b283572 100644 --- a/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/Understanding complex Content configuration.md +++ b/tests/fixtures/pulp_maven/staging_docs/content-manager/learn/Understanding complex Content configuration.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # Understanding complex Content configuration @@ -56,4 +56,3 @@ Fine occur society technology film. Avoid compare boy whom. Benefit drug religious cell especially finally culture explain. Debate behind thousand win. Success late strong role education fund. Worker sometimes event TV relationship. Only sign many idea where cell. Arrive operation sell stand. Expect age main general mention. - diff --git a/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/00 - Getting started as content-manager.md b/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/00 - Getting started as content-manager.md index c4af130..1944a4b 100644 --- a/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/00 - Getting started as content-manager.md +++ b/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/00 - Getting started as content-manager.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['tutorial', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 00 - Getting started as content-manager @@ -50,4 +50,3 @@ Share head choice. Different pull court feel hair truth. Raise note enough hard Whose animal among guy significant would young. College important over trip mission brother. Partner cold front place decision. Be moment sign believe. Worker dinner race. Idea mention capital throw. Today specific series against account father. Individual network identify deep gun. - diff --git a/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/01 - Configuring the artifact infrastructure.md b/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/01 - Configuring the artifact infrastructure.md index 5d202d1..44a168b 100644 --- a/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/01 - Configuring the artifact infrastructure.md +++ b/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/01 - Configuring the artifact infrastructure.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 01 - Configuring the artifact infrastructure @@ -86,4 +86,3 @@ Inside collection seem especially building. Feel sort return Mr. Customer employ Data feel factor. Service PM support pay room a but. Huge woman both wait position wind. South really some process. Third clear summer capital fire skin pretty probably. Anything within only onto must blood. Than still opportunity carry option foot exactly. - diff --git a/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/02 - Configuring the content contexts.md b/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/02 - Configuring the content contexts.md index 9020242..168f8da 100644 --- a/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/02 - Configuring the content contexts.md +++ b/tests/fixtures/pulp_maven/staging_docs/content-manager/tutorials/Getting started as content-manager/02 - Configuring the content contexts.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'content-manager'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 02 - Configuring the content contexts @@ -46,4 +46,3 @@ Employee interesting police son. Last art picture improve four. Decision behind state practice. Out high wrong too special evidence admit. Small section financial out organization authority put. Study city nearly care. Build finish break energy. Power thus almost player material. Difference popular keep too deal than. - diff --git a/tests/fixtures/pulp_maven/staging_docs/developer/guides/How to bind break..md b/tests/fixtures/pulp_maven/staging_docs/developer/guides/How to bind break..md index b46d7a9..4917336 100644 --- a/tests/fixtures/pulp_maven/staging_docs/developer/guides/How to bind break..md +++ b/tests/fixtures/pulp_maven/staging_docs/developer/guides/How to bind break..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to bind break. @@ -26,6 +26,3 @@ More specific although region. Stuff pretty mean group table. Some board five. F ## 2 - update why ok while fact. Good peace phone million vote. Buy military you practice house. Who line maintain second third third sign. Strong article travel travel. Decade left consumer option. Last research dog explain south suggest. Result crime current often nearly them. Support single forget fire hospital city. Stage method sure scientist. - - - diff --git a/tests/fixtures/pulp_maven/staging_docs/developer/guides/How to do subject..md b/tests/fixtures/pulp_maven/staging_docs/developer/guides/How to do subject..md index a048279..f09ef36 100644 --- a/tests/fixtures/pulp_maven/staging_docs/developer/guides/How to do subject..md +++ b/tests/fixtures/pulp_maven/staging_docs/developer/guides/How to do subject..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to do subject. @@ -26,6 +26,3 @@ Mr far what college. Evidence dark hard despite machine. Hand season rest direct ## 2 - update though control job. Fine attention and play others technology mouth. Try small thousand rule down word some. Again Congress today field girl. Everybody wear rest care on. Imagine find indeed firm. More teacher adult manager no. Future team current teach hold number effort chair. Yet Republican cold body watch. - - - diff --git a/tests/fixtures/pulp_maven/staging_docs/developer/learn/On flexible Model configuration.md b/tests/fixtures/pulp_maven/staging_docs/developer/learn/On flexible Model configuration.md index 86ec123..6c944dd 100644 --- a/tests/fixtures/pulp_maven/staging_docs/developer/learn/On flexible Model configuration.md +++ b/tests/fixtures/pulp_maven/staging_docs/developer/learn/On flexible Model configuration.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # On flexible Model configuration @@ -94,4 +94,3 @@ Be whatever cover agency argue. Enough wish magazine better push. Image between attention. Decision relate easy create use carry dark church. Finish enter artist size similar ground too describe. Feeling movie director American word return six. Entire international several federal fine white. - diff --git a/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding autonomous Artifact setup.md b/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding autonomous Artifact setup.md index f2b9b6f..68d1aaf 100644 --- a/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding autonomous Artifact setup.md +++ b/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding autonomous Artifact setup.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # Understanding autonomous Artifact setup @@ -71,4 +71,3 @@ Himself question do such glass phone hot. Less billion yet. Hair nearly defense girl rise. List me force power have development. Child sell detail policy. Set establish authority. Song buy scientist range. Page major note development I development difficult out. - diff --git a/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding complex Repository ecossystem.md b/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding complex Repository ecossystem.md index ef13844..43c21eb 100644 --- a/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding complex Repository ecossystem.md +++ b/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding complex Repository ecossystem.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # Understanding complex Repository ecossystem @@ -60,4 +60,3 @@ Meeting notice our response animal Mrs. Into force series television economy. Bu Kitchen he society feel father. Response foot of month move. Under seat reduce. Any rule born. Entire best deep remember relate. Language join music any. Control task treatment keep trip each. Camera need tonight region. - diff --git a/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding complex Repository setup.md b/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding complex Repository setup.md index f650154..028ffee 100644 --- a/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding complex Repository setup.md +++ b/tests/fixtures/pulp_maven/staging_docs/developer/learn/Understanding complex Repository setup.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # Understanding complex Repository setup @@ -77,4 +77,3 @@ End building artist would college because education. Style third specific chance Tree former reveal whom. Know include science once. Mind later his especially. Network section thank week game it energy. - diff --git a/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/00 - Getting started as developer.md b/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/00 - Getting started as developer.md index 872433e..0f97e74 100644 --- a/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/00 - Getting started as developer.md +++ b/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/00 - Getting started as developer.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['tutorial', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 00 - Getting started as developer @@ -66,4 +66,3 @@ Performance organization reason film. Involve executive key above occur bill. Co College notice thought nothing economic. Budget class available term. Camera parent draw wall computer. Join white try apply. Movie though heart she how benefit. - diff --git a/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/01 - Doing the repository dependencie.md b/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/01 - Doing the repository dependencie.md index 8b61f0b..e06f65e 100644 --- a/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/01 - Doing the repository dependencie.md +++ b/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/01 - Doing the repository dependencie.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 01 - Doing the repository dependencie @@ -73,4 +73,3 @@ Fight science else life. Generation pattern tonight body too. Western I answer. Huge too want until until. Begin reduce political scene. Task oil century million. Prevent painting along art father. Account physical energy large experience alone. Wear operation strong whole fear behind create. Citizen growth during significant board effort. Large hard leader international. - diff --git a/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/02 - Organizing the database relationships.md b/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/02 - Organizing the database relationships.md index 2ab1ca8..af8eff8 100644 --- a/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/02 - Organizing the database relationships.md +++ b/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/02 - Organizing the database relationships.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 02 - Organizing the database relationships @@ -66,4 +66,3 @@ Within name raise all book. Four friend yeah charge walk participant chance. General article city section indicate ago benefit. Lead purpose mother instead short should effect. Cultural necessary class like. Line worry doctor mind physical thought develop energy. Per toward realize oil. Those relationship staff miss Mr. Where matter choose over network. - diff --git a/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/03 - Organizing the repository internals.md b/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/03 - Organizing the repository internals.md index cc31370..cdbcef4 100644 --- a/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/03 - Organizing the repository internals.md +++ b/tests/fixtures/pulp_maven/staging_docs/developer/tutorials/Getting started as developer/03 - Organizing the repository internals.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 03 - Organizing the repository internals @@ -62,4 +62,3 @@ Billion yourself develop indeed design field particular. Girl name support assum Available produce area raise. Once possible personal so finally. Example care product price difficult deal arm. House whole especially level significant the. Easy modern know shoulder arrive. Until move successful young draw door. Response ready notice crime. - diff --git a/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to create win crime..md b/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to create win crime..md index 116d922..891f0bc 100644 --- a/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to create win crime..md +++ b/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to create win crime..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to create win crime. @@ -32,6 +32,3 @@ Similar ground field woman goal possible. Including everything entire step more ## 3 - bind customer reflect. Something building high coach wear TV set. Push protect win trial morning. Yourself your former style all significant whatever. Area leave describe though music reveal. Area choose young term talk computer. Yes marriage road structure because land oil. Avoid memory town. President growth up message employee partner chair. - - - diff --git a/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to update treatment raise collection..md b/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to update treatment raise collection..md index 2d06957..fa222ac 100644 --- a/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to update treatment raise collection..md +++ b/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to update treatment raise collection..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to update treatment raise collection. @@ -38,6 +38,3 @@ Kind serious cost. Man per professor suggest. Difference good either discuss imp ## 4 - generate suddenly visit. Customer debate thousand sign do management establish. Boy assume tough. Color mind spring rich test seven. Central event another discuss. Explain road write direction. Very six theory about value charge final onto. Blue list former watch win particular data. - - - diff --git a/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to update war..md b/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to update war..md index 2779353..ef983e3 100644 --- a/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to update war..md +++ b/tests/fixtures/pulp_maven/staging_docs/sys-admin/guides/How to update war..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to update war. @@ -26,6 +26,3 @@ Usually research strong general. Use feel Democrat be central quickly. Foot Mrs ## 2 - delete commercial. Road shake suddenly yet. He eat first use. Paper cover college thus stay. Through hour side research deep for north book. At event general magazine. Last wind win enter authority road. Year size condition. - - - diff --git a/tests/fixtures/pulp_maven/staging_docs/sys-admin/learn/On modular Model setup.md b/tests/fixtures/pulp_maven/staging_docs/sys-admin/learn/On modular Model setup.md index 5910df7..9ee20e8 100644 --- a/tests/fixtures/pulp_maven/staging_docs/sys-admin/learn/On modular Model setup.md +++ b/tests/fixtures/pulp_maven/staging_docs/sys-admin/learn/On modular Model setup.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # On modular Model setup @@ -69,4 +69,3 @@ Care staff wall business compare why. What whole use none miss maintain wonder. Bit student sound thousand away expect bed. Best up full outside data fear admit. Expert receive company degree south international probably. At leave she describe matter cause. - diff --git a/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/00 - Getting started as sys-admin.md b/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/00 - Getting started as sys-admin.md index 908f6e2..5fe112a 100644 --- a/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/00 - Getting started as sys-admin.md +++ b/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/00 - Getting started as sys-admin.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['tutorial', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 00 - Getting started as sys-admin @@ -76,4 +76,3 @@ Kind include continue. Entire mouth land single trade rest friend. Build song seem style past television. Ball expect different all field base officer open. Garden table decision black step employee. Form thing imagine they. Peace of computer page trial. Best kid front bill act over raise. Good yard tonight difference south glass could. - diff --git a/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/01 - Handling the artifact signals.md b/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/01 - Handling the artifact signals.md index f82fa8e..dd29bbb 100644 --- a/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/01 - Handling the artifact signals.md +++ b/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/01 - Handling the artifact signals.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 01 - Handling the artifact signals @@ -42,4 +42,3 @@ Go four reduce carry. Friend purpose hand. Wear blue number fund. Difference believe road baby and more site. Add knowledge no language student. Street exactly born produce make issue. Chair affect teacher in. - diff --git a/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/02 - Configuring the database signals.md b/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/02 - Configuring the database signals.md index c2bc234..4a83b3b 100644 --- a/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/02 - Configuring the database signals.md +++ b/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/02 - Configuring the database signals.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 02 - Configuring the database signals @@ -71,4 +71,3 @@ Quality position cup wonder although. Wear even could TV side. Report tell about court white. Raise thing use series appear community according class. I perhaps discover couple in. Late something summer half position. Business about agreement note. - diff --git a/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/03 - Deploying the content dependencie.md b/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/03 - Deploying the content dependencie.md index 630b4a9..d873619 100644 --- a/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/03 - Deploying the content dependencie.md +++ b/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/03 - Deploying the content dependencie.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 03 - Deploying the content dependencie @@ -47,4 +47,3 @@ Tax bank above current recently heavy star. Whatever imagine process voice littl True detail maintain free them street. Security blue mind matter better day hold. Pull risk per different rather month research. Open although north dog kid ready institution. Rock suffer trial each. Price capital system pressure record affect. Adult herself him. - diff --git a/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/04 - Setting the database dependencie.md b/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/04 - Setting the database dependencie.md index aa240a4..ec8453e 100644 --- a/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/04 - Setting the database dependencie.md +++ b/tests/fixtures/pulp_maven/staging_docs/sys-admin/tutorials/Getting started as sys-admin/04 - Setting the database dependencie.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'sys-admin'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # 04 - Setting the database dependencie @@ -76,4 +76,3 @@ Subject production leader race. Read raise should keep develop project prevent. Pattern full while best western who. Carry summer kind travel. Performance however group sort develop beautiful. Same apply summer long. Culture inside notice common because wind measure him. Throw somebody class than executive. - diff --git a/tests/fixtures/pulpcore/staging_docs/index.md b/tests/fixtures/pulpcore/staging_docs/index.md index 7788cb5..56dd702 100644 --- a/tests/fixtures/pulpcore/staging_docs/index.md +++ b/tests/fixtures/pulpcore/staging_docs/index.md @@ -45,4 +45,3 @@ This is a landing page. [:octicons-arrow-right-24: License](#) - diff --git a/tests/fixtures/pulpcore/staging_docs/sections/development/guides/How to bind analysis trade..md b/tests/fixtures/pulpcore/staging_docs/sections/development/guides/How to bind analysis trade..md index 6b66d25..b8f2c63 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/development/guides/How to bind analysis trade..md +++ b/tests/fixtures/pulpcore/staging_docs/sections/development/guides/How to bind analysis trade..md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # How to bind analysis trade. @@ -38,6 +38,3 @@ Authority blood eat product toward add. Do fall development spring. Big child se ## 4 - create seat into he pay. Standard talk worker join hotel. Can method fill two though list discover. Catch senior yard off exactly anyone part. Beat forward serve challenge happy. Result child Mrs throughout special. Hard street usually energy production hundred do we. Indeed at leg thousand benefit land. - - - diff --git a/tests/fixtures/pulpcore/staging_docs/sections/development/index.md b/tests/fixtures/pulpcore/staging_docs/sections/development/index.md index 38d7cbe..446b776 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/development/index.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/development/index.md @@ -17,7 +17,7 @@ Then, [Specifics](#) covers more custom handlings leveraged by Pulp's plugin eco For straighfoward material on getting things done, visit the [Guides](/docs/guides/index.md) section. [Architecture and Concepts](#) should be read as early as possible. -Eventually, it's highly recommended that the user reads the entire *Fundamentals* section as he starts doing more serious work. +Eventually, it's highly recommended that the user reads the entire *Fundamentals* section as he starts doing more serious work. Pulp Project use cases can be complex and may include a variety of different topics for different users. On the *Intermediate* section, we talk about those topics and how Pulp fits in. diff --git a/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/About autonomous Model deployment.md b/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/About autonomous Model deployment.md index 86fe55b..74e13b2 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/About autonomous Model deployment.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/About autonomous Model deployment.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # About autonomous Model deployment @@ -40,4 +40,3 @@ Exactly learn clearly. Indicate early region anyone. Husband side maybe later. More myself staff media. Heart wear together task catch along skin. End yourself myself magazine full. Find yes senior. Tell far today catch. Exist cultural finally only mention risk have. - diff --git a/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/On autonomous Database deployment.md b/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/On autonomous Database deployment.md index 10ceca3..1032f0d 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/On autonomous Database deployment.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/On autonomous Database deployment.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # On autonomous Database deployment @@ -53,4 +53,3 @@ Body relate reflect debate. System gun could. Address better join check experien Staff present one Democrat yet. Have particular light statement ago picture. Administration left modern ok attack decision such. Political trade adult. Picture or consumer charge station century. - diff --git a/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/On scalable Database ecossystem.md b/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/On scalable Database ecossystem.md index 3278ef7..b274549 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/On scalable Database ecossystem.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/On scalable Database ecossystem.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # On scalable Database ecossystem @@ -77,4 +77,3 @@ No now firm letter build mouth chance. Number represent candidate decision consi Small evidence night capital who consider money. Probably issue attack by drug body politics. Talk resource American situation data. White tell economic ahead experience material. - diff --git a/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/Understanding complex Model deployment.md b/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/Understanding complex Model deployment.md index a49cbdc..6f176f0 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/Understanding complex Model deployment.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/development/onboarding/Understanding complex Model deployment.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # Understanding complex Model deployment @@ -74,4 +74,3 @@ Way character friend. Congress step they effort. Gas we with. Pass film allow listen each. Major who against factor mind. Business music type box test city. Certain ground anyone man manager he somebody successful. No be blood force star as edge. - diff --git a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/About autonomous Model deployment.md b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/About autonomous Model deployment.md index 86fe55b..74e13b2 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/About autonomous Model deployment.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/About autonomous Model deployment.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # About autonomous Model deployment @@ -40,4 +40,3 @@ Exactly learn clearly. Indicate early region anyone. Husband side maybe later. More myself staff media. Heart wear together task catch along skin. End yourself myself magazine full. Find yes senior. Tell far today catch. Exist cultural finally only mention risk have. - diff --git a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/On autonomous Database deployment.md b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/On autonomous Database deployment.md index 10ceca3..1032f0d 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/On autonomous Database deployment.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/On autonomous Database deployment.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # On autonomous Database deployment @@ -53,4 +53,3 @@ Body relate reflect debate. System gun could. Address better join check experien Staff present one Democrat yet. Have particular light statement ago picture. Administration left modern ok attack decision such. Political trade adult. Picture or consumer charge station century. - diff --git a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/On scalable Database ecossystem.md b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/On scalable Database ecossystem.md index 3278ef7..b274549 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/On scalable Database ecossystem.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/On scalable Database ecossystem.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # On scalable Database ecossystem @@ -77,4 +77,3 @@ No now firm letter build mouth chance. Number represent candidate decision consi Small evidence night capital who consider money. Probably issue attack by drug body politics. Talk resource American situation data. White tell economic ahead experience material. - diff --git a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/Understanding complex Model deployment.md b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/Understanding complex Model deployment.md index a49cbdc..6f176f0 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/Understanding complex Model deployment.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/fundamentals/Understanding complex Model deployment.md @@ -1,10 +1,10 @@ --- -repository: +repository: tags: ['guide', 'developer'] versioning: created: 0.1.0 updated: [] - deprecated: + deprecated: --- # Understanding complex Model deployment @@ -74,4 +74,3 @@ Way character friend. Congress step they effort. Gas we with. Pass film allow listen each. Major who against factor mind. Business music type box test city. Certain ground anyone man manager he somebody successful. No be blood force star as edge. - diff --git a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/index.md b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/index.md index b8130bf..a02db19 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/index.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/index.md @@ -17,7 +17,7 @@ Then, [Specifics](#) covers more custom handlings leveraged by Pulp's plugin eco For straighfoward material on getting things done, visit the [Guides](/docs/guides/index.md) section. [Architecture and Concepts](#) should be read as early as possible. -Eventually, it's highly recommended that the user reads the entire *Fundamentals* section as he starts doing more serious work. +Eventually, it's highly recommended that the user reads the entire *Fundamentals* section as he starts doing more serious work. Pulp Project use cases can be complex and may include a variety of different topics for different users. On the *Intermediate* section, we talk about those topics and how Pulp fits in. diff --git a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/quickstart/03-installation.md b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/quickstart/03-installation.md index 8a98188..ac298d1 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/getting_started/quickstart/03-installation.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/getting_started/quickstart/03-installation.md @@ -1,3 +1,3 @@ # Installation -This is installation. +This is installation. diff --git a/tests/fixtures/pulpcore/staging_docs/sections/guides/index.md b/tests/fixtures/pulpcore/staging_docs/sections/guides/index.md index c39e1bd..c3f197f 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/guides/index.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/guides/index.md @@ -5,7 +5,7 @@ Here you'll find: - **Content Types**: content-specific tasks. -- **General**: common tasks not tied to a specific Content Plugin +- **General**: common tasks not tied to a specific Content Plugin ## How to use these guides diff --git a/tests/fixtures/pulpcore/staging_docs/sections/reference/index.md b/tests/fixtures/pulpcore/staging_docs/sections/reference/index.md index 39090c9..52a8f63 100644 --- a/tests/fixtures/pulpcore/staging_docs/sections/reference/index.md +++ b/tests/fixtures/pulpcore/staging_docs/sections/reference/index.md @@ -10,4 +10,3 @@ Here you'll find: - **Content-types**: plugins that add support for content types - **Tooling**: tools that integrates with Pulp for various purposes - **Resources**: repositories that provide integrated resources to pulp - diff --git a/tests/test_doctree_writer.py b/tests/test_doctree_writer.py index 8aa8c74..edee616 100644 --- a/tests/test_doctree_writer.py +++ b/tests/test_doctree_writer.py @@ -1,7 +1,7 @@ +import textwrap from pathlib import Path import pytest -import textwrap from pulp_docs.test_tools.doctree_writer import parse_doctree_file diff --git a/tests/test_openapi_generation.py b/tests/test_openapi_generation.py index f255c85..0e63af7 100644 --- a/tests/test_openapi_generation.py +++ b/tests/test_openapi_generation.py @@ -1,5 +1,5 @@ -from pathlib import Path import json +from pathlib import Path from pulp_docs.openapi import main as openapi_main