Use the canonical URL for Manila repositories

- When the URL refers to cloning or using git repositories, use the
  cloning URL (https://git.openstack.org/openstack/<project>)
- When the URL refers to the browsable version of the repository, use
  the cgit frontend (https://git.openstack.org/cgit/openstack/<project>)

Change-Id: I11a8e15c6d663786465c090b40db9e20b19194e6
This commit is contained in:
Luigi Toscano 2018-12-17 13:56:17 +01:00
parent ef418b4e8d
commit e02a625e9c
8 changed files with 13 additions and 13 deletions

View File

@ -23,17 +23,17 @@ Getting Started
If you'd like to run from the master branch, you can clone the git repo: If you'd like to run from the master branch, you can clone the git repo:
git clone https://github.com/openstack/manila.git git clone https://git.openstack.org/openstack/manila.git
For developer information please see For developer information please see
`HACKING.rst <https://github.com/openstack/manila/blob/master/HACKING.rst>`_ `HACKING.rst <https://git.openstack.org/cgit/openstack/manila/tree/HACKING.rst>`_
You can raise bugs here https://bugs.launchpad.net/manila You can raise bugs here https://bugs.launchpad.net/manila
Python client Python client
------------- -------------
https://github.com/openstack/python-manilaclient.git https://git.openstack.org/cgit/openstack/python-manilaclient.git
* Release notes for the project can be found at: * Release notes for the project can be found at:

View File

@ -8,6 +8,6 @@
> cat local.conf > cat local.conf
[[local|localrc]] [[local|localrc]]
enable_plugin manila https://github.com/openstack/manila enable_plugin manila https://git.openstack.org/openstack/manila
3. run ``stack.sh`` 3. run ``stack.sh``

View File

@ -1155,7 +1155,7 @@ elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
create_custom_share_types create_custom_share_types
echo_summary "Manila UI is no longer enabled by default. \ echo_summary "Manila UI is no longer enabled by default. \
Add enable_plugin manila-ui github.com/openstack/manila-ui \ Add enable_plugin manila-ui https://git.openstack.org/openstack/manila-ui \
to your local.conf file to enable Manila UI" to your local.conf file to enable Manila UI"
elif [[ "$1" == "stack" && "$2" == "test-config" ]]; then elif [[ "$1" == "stack" && "$2" == "test-config" ]]; then

View File

@ -30,7 +30,7 @@
# Defaults # Defaults
# -------- # --------
MANILA_GIT_BASE=${MANILA_GIT_BASE:-https://github.com} MANILA_GIT_BASE=${MANILA_GIT_BASE:-https://git.openstack.org}
MANILA_REPO_ROOT=${MANILA_REPO_ROOT:-openstack} MANILA_REPO_ROOT=${MANILA_REPO_ROOT:-openstack}
MANILACLIENT_REPO=${MANILA_GIT_BASE}/${MANILA_REPO_ROOT}/python-manilaclient.git MANILACLIENT_REPO=${MANILA_GIT_BASE}/${MANILA_REPO_ROOT}/python-manilaclient.git

View File

@ -49,7 +49,7 @@ Below you will a brief explanation of the different components.
* DB: sql database for data storage. Used by all components (LINKS NOT SHOWN) * DB: sql database for data storage. Used by all components (LINKS NOT SHOWN)
* Web Dashboard: external component that talks to the api, implemented as a * Web Dashboard: external component that talks to the api, implemented as a
plugin to the OpenStack Dashboard (Horizon) project, source plugin to the OpenStack Dashboard (Horizon) project, source
is `here <https://github.com/openstack/manila-ui>`_. is `here <https://git.openstack.org/cgit/openstack/manila-ui>`_.
* :term:`manila-api` * :term:`manila-api`
* Auth Manager: component responsible for users/projects/and roles. Can backend to DB or LDAP. This is not a separate binary, but rather a python class that is used by most components in the system. * Auth Manager: component responsible for users/projects/and roles. Can backend to DB or LDAP. This is not a separate binary, but rather a python class that is used by most components in the system.
* :term:`manila-scheduler` * :term:`manila-scheduler`

View File

@ -39,7 +39,7 @@ Start by cloning the devstack repository:
:: ::
git clone https://github.com/openstack-dev/devstack git clone https://git.openstack.org/openstack-dev/devstack
Change to devstack directory: Change to devstack directory:
@ -57,7 +57,7 @@ Enable the manila plugin adding the following line to the end of the local.conf
:: ::
enable_plugin manila https://github.com/openstack/manila enable_plugin manila https://git.openstack.org/openstack/manila
If you would like to install python-manilaclient from git, add to local.conf: If you would like to install python-manilaclient from git, add to local.conf:
@ -79,7 +79,7 @@ just after manila plugin enablement:
:: ::
enable_plugin manila-ui https://github.com/openstack/manila-ui enable_plugin manila-ui https://git.openstack.org/openstack/manila-ui
Running devstack Running devstack
---------------- ----------------

View File

@ -115,7 +115,7 @@ Getting the code
---------------- ----------------
Grab the code:: Grab the code::
git clone https://github.com/openstack/manila.git git clone https://git.openstack.org/openstack/manila.git
cd manila cd manila

View File

@ -77,7 +77,7 @@ OpenStack API Reference
- For releases prior to Newton, the API reference was maintained in `Web - For releases prior to Newton, the API reference was maintained in `Web
Application Description Language (WADL) Application Description Language (WADL)
<https://en.wikipedia.org/wiki/Web_Application_Description_Language>`_ in <https://en.wikipedia.org/wiki/Web_Application_Description_Language>`_ in
the `api-site <https://github.com/openstack/api-site>`_ project. the `api-site <https://git.openstack.org/cgit/openstack/api-site>`_ project.
- Since the Newton release, manila's API reference is maintained - Since the Newton release, manila's API reference is maintained
in-tree in custom YAML/JSON format files. in-tree in custom YAML/JSON format files.
- **Link**: `REST API reference of the Shared File Systems Project v2.0 - **Link**: `REST API reference of the Shared File Systems Project v2.0
@ -110,7 +110,7 @@ OpenStack Security Guide
information needs to be documented here. information needs to be documented here.
- **Link**: `Security guide <http://docs.openstack.org/security-guide/>`_ - **Link**: `Security guide <http://docs.openstack.org/security-guide/>`_
- **Repository**: The security guide is maintained within the - **Repository**: The security guide is maintained within the
`OpenStack Security-doc project <https://github.com/openstack/security-doc>`_ `OpenStack Security-doc project <https://git.openstack.org/cgit/openstack/security-doc>`_
OpenStack Command Line Reference OpenStack Command Line Reference