Skip to content

Commit

Permalink
replacing references to Onica with Rackspace
Browse files Browse the repository at this point in the history
  • Loading branch information
mbordash2 committed Aug 29, 2024
1 parent ba68f3b commit 59e95c6
Show file tree
Hide file tree
Showing 17 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion docs/source/cfngin/remote_sources.rst
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Git Repository
package_sources:
git:
- uri: [email protected]:onicagroup/runway.git # ssh
- uri: [email protected]:rackspace/runway.git # ssh
- uri: https://github.com/rackspace/runway.git # https
Expand Down
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = "Runway"
copyright = "2021, Onica Group" # noqa: A001
author = "Onica Group"
copyright = "2024, Rackspace Technology, Inc." # noqa: A001
author = "Rackspace Technology, Inc."
release = Version.from_git().serialize(metadata=False, style=Style.SemVer)
version = ".".join(release.split(".")[:2]) # short X.Y version

Expand Down Expand Up @@ -115,7 +115,7 @@
# -- Options for LaTeX output ------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-latex-output
latex_documents = [
(master_doc, "runway.tex", "runway Documentation", "Onica Group", "manual"),
(master_doc, "runway.tex", "runway Documentation", "Rackspace Technology, Inc.", "manual"),
]
latex_elements = {}

Expand Down
4 changes: 2 additions & 2 deletions docs/source/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Deploying Your First Module
:caption: runway.yml
---
# See full syntax at https://docs.onica.com/projects/runway
# See full syntax at https://runway.readthedocs.io/
deployments:
- modules:
- nameofmyfirstmodulefolder
Expand All @@ -157,7 +157,7 @@ Deploying Your First Module
:caption: runway.yml
---
# See full syntax at https://docs.onica.com/projects/runway
# See full syntax at https://runway.readthedocs.io/
deployments:
- modules:
- sampleapp.cfn
Expand Down
2 changes: 1 addition & 1 deletion docs/source/license.rst
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ recommend that a file or class name and description of purpose be included on
the same "printed page" as the copyright notice for easier identification within
third-party archives.

Copyright 2018 Onica Group LLC
Copyright 2018 Rackspace Technology, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
14 changes: 7 additions & 7 deletions docs/source/quickstart/conduit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ Setup
$ rm 35a66d144d8def340278cd55080d5c745714aca4
$ mv angular-realworld-example-app-35a66d144d8def340278cd55080d5c745714aca4 frontend && cd frontend
$ mkdir scripts
$ cd scripts && { curl -O https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/build.js ; cd -; }
$ cd scripts && { curl -O https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/build.js ; cd -; }
$ sed -i 's/^\s*"build":\s.*$/ "build": "node scripts\/build",/' package.json
$ sed -i 's/^\s*"rxjs":\s.*$/ "rxjs": "~6.3.3",/' package.json
$ npm install
$ curl -O https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/update_env_endpoint.py
$ curl -O https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/update_env_endpoint.py
$ cd ..
$ curl -O https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/runway.yml
$ curl -O https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/runway.yml
.. tab:: Windows

Expand All @@ -95,13 +95,13 @@ Setup
$ Rename-Item angular-realworld-example-app-35a66d144d8def340278cd55080d5c745714aca4 frontend && cd frontend
$ (gc .\package.json -raw).Replace("`"rxjs`": `"^6.2.1`"", "`"rxjs`": `"~6.3.3`"") | sc .\package.json
$ mkdir scripts
$ Invoke-WebRequest "https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/build.js" -OutFile scripts/build.js
$ Invoke-WebRequest "https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/build.js" -OutFile scripts/build.js
$ (gc .\package.json) -replace "^\s*`"build`":\s.*$", " `"build`": `"node scripts/build`"," | Out-File .\package.json -Force -Encoding UTF8
$ npm install
$ Invoke-WebRequest "https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/update_env_endpoint.py" -OutFile update_env_endpoint.py
$ Invoke-WebRequest "https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/update_env_endpoint.py" -OutFile update_env_endpoint.py
$ cd ..
$ Invoke-WebRequest "https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/pyproject.toml" -OutFile pyproject.toml
$ Invoke-WebRequest "https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/runway.yml" -OutFile runway.yml
$ Invoke-WebRequest "https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/pyproject.toml" -OutFile pyproject.toml
$ Invoke-WebRequest "https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/runway.yml" -OutFile runway.yml

.. highlight:: sh

Expand Down
2 changes: 1 addition & 1 deletion docs/source/serverless/advanced_features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ This functionality can be especially useful when used alongside :ref:`remote mod
deployments:
- modules:
- path: git::git://github.com/onicagroup/example.git//sampleapp?tag=v1.0.0
- path: git::git://github.com/rackspace/example.git//sampleapp?tag=v1.0.0
options:
extend_serverless_yml:
custom:
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/conduit/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "runway-quickstart-conduit"
version = "0.0.0"
authors = [
"Onica Group LLC <opensource@onica.com>",
"Rackspace Technology, Inc. <opensource@rackspace.com>",
]
description = "Runway Quickstart"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion runway/_cli/commands/_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

LOGGER = cast("RunwayLogger", logging.getLogger(__name__.replace("._", ".")))
RUNWAY_YML = """---
# See full syntax at https://docs.onica.com/projects/runway
# See full syntax at https://runway.readthedocs.io
deployments:
- modules:
- path: sampleapp.cfn
Expand Down
2 changes: 1 addition & 1 deletion runway/config/models/cfngin/_package_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class GitCfnginPackageSourceDefinitionModel(ConfigProperty):
uri: str = Field(
...,
title="Git Repository URI",
examples=["[email protected]:onicagroup/runway.git"],
examples=["[email protected]:rackspace/runway.git"],
)

class Config(ConfigProperty.Config):
Expand Down
4 changes: 2 additions & 2 deletions runway/templates/cdk-csharp/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"author": "Onica",
"author": "Rackspace Technology, Inc.",
"description": "Sample CDK Project",
"devDependencies": {
"aws-cdk": "^0.27.0"
},
"homepage": "https://www.onica.com",
"homepage": "https://www.rackspace.com",
"main": "app.py",
"name": "sampleapp",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions runway/templates/cdk-py/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"author": "Onica",
"author": "Rackspace Technology, Inc.",
"description": "Sample CDK Project",
"devDependencies": {
"aws-cdk": "^1.13.0"
},
"homepage": "https://www.onica.com",
"homepage": "https://www.rackspace.com",
"main": "app.py",
"name": "sampleapp",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion runway/templates/cdk-py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "runway-sample-cdk-py"
version = "0.0.0"
authors = ["Onica Group LLC <opensource@onica.com>"]
authors = ["Rackspace Technology, Inc. <opensource@rackspace.com>"]
description = "Runway Sample"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion runway/templates/sls-py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "runway-sample-sls-py"
version = "0.0.0"
authors = ["Onica Group LLC <opensource@onica.com>"]
authors = ["Rackspace Technology, Inc. <opensource@rackspace.com>"]
description = "Runway Sample"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion runway/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
from ..compat import Self

AWS_ENV_VARS = ("AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN")
DOC_SITE = "https://docs.onica.com/projects/runway"
DOC_SITE = "https://runway.readthedocs.io"
EMBEDDED_LIB_PATH = str(Path(__file__).resolve().parent / "embedded")

LOGGER = logging.getLogger(__name__)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "test-awslambda-xmlsec"
version = "0.0.0"
authors = [
"Onica Group LLC <opensource@onica.com>",
"Rackspace Technology, Inc. <opensource@rackspace.com>",
]
description = "Test for awslambda hook."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/cli/commands/test_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
if TYPE_CHECKING:
from unittest.mock import MagicMock

DOCS_URL = "https://docs.onica.com/projects/runway/"
DOCS_URL = "https://runway.readthedocs.io"


@patch("click.launch")
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/cli/commands/test_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_new(cd_tmp_path: Path, caplog: pytest.LogCaptureFixture) -> None:
assert caplog.messages == [
"runway.yml generated",
"See addition getting started information at "
"https://docs.onica.com/projects/runway/page/getting_started.html",
"https://runway.readthedocs.io/stable/getting_started.html",
]


Expand Down

0 comments on commit 59e95c6

Please sign in to comment.