diff --git a/README.md b/README.md index 5b4705a..08c5fed 100644 --- a/README.md +++ b/README.md @@ -5,23 +5,23 @@ cdn-definitions Data definitions for Red Hat's content delivery network. -![Build status](https://travis-ci.org/rohanpm/cdn-definitions.svg?branch=master) -[![Coverage Status](https://coveralls.io/repos/github/rohanpm/cdn-definitions/badge.svg?branch=master)](https://coveralls.io/github/rohanpm/cdn-definitions?branch=master) +![Build status](https://travis-ci.org/release-engineering/cdn-definitions.svg?branch=master) +[![Coverage Status](https://coveralls.io/repos/github/release-engineering/cdn-definitions/badge.svg?branch=master)](https://coveralls.io/github/release-engineering/cdn-definitions?branch=master) -- [Source](https://github.com/rohanpm/cdn-definitions) -- [Documentation](https://rohanpm.github.io/cdn-definitions/) +- [Source](https://github.com/release-engineering/cdn-definitions) +- [Documentation](https://release-engineering.github.io/cdn-definitions/) - [PyPI](https://pypi.org/project/cdn-definitions) This project maintains a dataset defining and influencing certain behaviors of Red Hat's CDN, such as aliases between paths. To get an idea of the type of data maintained within this project, you can -[browse the latest published dataset](https://rohanpm.github.io/cdn-definitions/data.yaml). +[browse the latest published dataset](https://release-engineering.github.io/cdn-definitions/data.yaml). See the -[User Guide](https://rohanpm.github.io/cdn-definitions/userguide.html#) for more information +[User Guide](https://release-engineering.github.io/cdn-definitions/userguide.html#) for more information if you are interested in consuming this data, or the -[Maintenance Guide](https://rohanpm.github.io/cdn-definitions/maint.html#) if you need +[Maintenance Guide](https://release-engineering.github.io/cdn-definitions/maint.html#) if you need to make changes. License diff --git a/cdn_definitions/schema.json b/cdn_definitions/schema.json index 2df9f26..16e419d 100644 --- a/cdn_definitions/schema.json +++ b/cdn_definitions/schema.json @@ -1,5 +1,5 @@ { - "$id": "http://rohanpm.github.io/cdn-definitions/schema.json", + "$id": "http://release-engineering.github.io/cdn-definitions/schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { diff --git a/cdn_definitions/schema.yaml b/cdn_definitions/schema.yaml index 2d78833..e526ee3 100644 --- a/cdn_definitions/schema.yaml +++ b/cdn_definitions/schema.yaml @@ -7,7 +7,7 @@ # Check the dataset itself for explanatory comments on each field. $schema: http://json-schema.org/draft-07/schema# -$id: http://rohanpm.github.io/cdn-definitions/schema.json +$id: http://release-engineering.github.io/cdn-definitions/schema.json definitions: diff --git a/docs/conf.py b/docs/conf.py index 295875e..d201307 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -86,7 +86,7 @@ # documentation. # html_theme_options = { - "github_user": "rohanpm", + "github_user": "release-engineering", "github_repo": "cdn-definitions", "github_button": False, "github_banner": True, diff --git a/docs/data.rst b/docs/data.rst index 336b8ac..87949bd 100644 --- a/docs/data.rst +++ b/docs/data.rst @@ -8,8 +8,8 @@ This dataset contains the latest version of CDN definitions. It is also available in raw JSON or YAML format at URLs: -- https://rohanpm.github.io/cdn-definitions/data.json -- https://rohanpm.github.io/cdn-definitions/data.yaml +- https://release-engineering.github.io/cdn-definitions/data.json +- https://release-engineering.github.io/cdn-definitions/data.yaml .. include:: ../cdn_definitions/data.yaml @@ -24,8 +24,8 @@ the CDN definitions. It is also available in raw JSON or YAML format at URLs: -- https://rohanpm.github.io/cdn-definitions/schema.json -- https://rohanpm.github.io/cdn-definitions/schema.yaml +- https://release-engineering.github.io/cdn-definitions/schema.json +- https://release-engineering.github.io/cdn-definitions/schema.yaml .. include:: ../cdn_definitions/schema.yaml :code: yaml diff --git a/docs/userguide.rst b/docs/userguide.rst index d63582d..9e8f75d 100644 --- a/docs/userguide.rst +++ b/docs/userguide.rst @@ -7,8 +7,8 @@ Usage as online dataset The latest version of this dataset can be downloaded at any time from URLs: -- https://rohanpm.github.io/cdn-definitions/data.json -- https://rohanpm.github.io/cdn-definitions/data.yaml +- https://release-engineering.github.io/cdn-definitions/data.json +- https://release-engineering.github.io/cdn-definitions/data.yaml Both files contain equivalent data. diff --git a/scripts/push-docs b/scripts/push-docs index 6c41a0c..67bdc3b 100755 --- a/scripts/push-docs +++ b/scripts/push-docs @@ -10,7 +10,7 @@ git init git config user.name "${GITHUB_AUTHOR:-doc bot}" git config user.email "${GITHUB_EMAIL:-rmcgover@redhat.com}" -git remote add origin "https://$GITHUB_TOKEN@github.com/rohanpm/cdn-definitions.git" +git remote add origin "https://$GITHUB_TOKEN@github.com/release-engineering/cdn-definitions.git" git fetch origin git reset origin/gh-pages || true diff --git a/setup.py b/setup.py index a43fbf1..2800bdd 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def get_long_description(): author="Rohan McGovern", author_email="rmcgover@redhat.com", packages=["cdn_definitions"], - url="https://github.com/rohanpm/cdn-definitions", + url="https://github.com/release-engineering/cdn-definitions", license="GNU General Public License", description=get_description(), include_package_data=True,