Skip to content

Commit 8285240

Browse files
authored
Fix spelling (#373)
1 parent fdca643 commit 8285240

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

source/adminguide/accounts.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ Using OAuth2 Authentication For Users
632632

633633
OAuth2, the industry-standard authorization or authentication framework, simplifies the process of
634634
granting access to resources. CloudStack supports OAuth2 authentication wherein users can login into
635-
CloudStack without using username and password. CloudStack currently supports Google and Github providers.
635+
CloudStack without using username and password. CloudStack currently supports Google and GitHub providers.
636636
Other OAuth2 providers can be easily integrated with CloudStack using its plugin framework.
637637

638638
For admins, the following are the settings available at global level to configure OAuth2.
@@ -671,7 +671,7 @@ To register the OAuth provider client ID, redirect URI, secret key have to provi
671671
OAuth 2.0 has to be first configured in the corresponding provider to obtain the client ID, redirect URI, secret Key.
672672

673673
For Google, please follow the instructions mentioned here `"Setting up OAuth 2.0 in Google" <https://support.google.com/cloud/answer/6158849?hl=en>`_.
674-
For Github, please follow the instructions mentioned here `"Setting up OAuth 2.0 in Github" <https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/creating-an-oauth-app>`_.
674+
For GitHub, please follow the instructions mentioned here `"Setting up OAuth 2.0 in GitHub" <https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/creating-an-oauth-app>`_.
675675

676676
In any OAuth 2.0 configuration admin has to use the redirect URI "http://<management server IP>:<port>/#/verifyOauth"
677677

source/conceptsandterminology/locale/pot/developer_guide.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ msgstr ""
443443

444444
#: ../../developer_guide.rst:460
445445
# 7c104d4cd0fe475e863b91f53449a5c5
446-
msgid "The CloudStack API is a query based API using http that return results in XML or JSON. It is used to implement the default web UI. This API is not a standard like `OGF OCCI <http://www.ogf.org/gf/group_info/view.php?group=occi-wg>`__ or `DMTF CIMI <http://dmtf.org/standards/cloud>`__ but is easy to learn. Mapping exists between the AWS API and the CloudStack API as will be seen in the next section. Recently a Google Compute Engine interface was also developed that maps the GCE REST API to the CloudStack API described here. The API `docs <https://cloudstack.apache.org/api.html>`__ are a good start to learn the extent of the API. Multiple clients exist on `github <https://github.com/search?q=cloudstack+client&ref=cmdform>`__ to use this API, you should be able to find one in your favorite language. The reference documentation for the API and changes that might occur from version to version is availble `on-line <http://cloudstack.apache.org/docs/en-US/Apache_CloudStack/4.1.1/html/Developers_Guide/index.html>`__. This short section is aimed at providing a quick summary to give you a base understanding of how to use this API. As a quick start, a good way to explore the API is to navigate the dashboard with a firebug console (or similar developer console) to study the queries."
446+
msgid "The CloudStack API is a query based API using http that return results in XML or JSON. It is used to implement the default web UI. This API is not a standard like `OGF OCCI <http://www.ogf.org/gf/group_info/view.php?group=occi-wg>`__ or `DMTF CIMI <http://dmtf.org/standards/cloud>`__ but is easy to learn. Mapping exists between the AWS API and the CloudStack API as will be seen in the next section. Recently a Google Compute Engine interface was also developed that maps the GCE REST API to the CloudStack API described here. The API `docs <https://cloudstack.apache.org/api.html>`__ are a good start to learn the extent of the API. Multiple clients exist on `GitHub <https://github.com/search?q=cloudstack+client&ref=cmdform>`__ to use this API, you should be able to find one in your favorite language. The reference documentation for the API and changes that might occur from version to version is availble `on-line <http://cloudstack.apache.org/docs/en-US/Apache_CloudStack/4.1.1/html/Developers_Guide/index.html>`__. This short section is aimed at providing a quick summary to give you a base understanding of how to use this API. As a quick start, a good way to explore the API is to navigate the dashboard with a firebug console (or similar developer console) to study the queries."
447447
msgstr ""
448448

449449
#: ../../developer_guide.rst:481
@@ -483,7 +483,7 @@ msgstr ""
483483

484484
#: ../../developer_guide.rst:586
485485
# 34385cfcf355434bbfec59e948728211
486-
msgid "All the clients that you will find on github will implement this signature technique, you should not have to do it by hand. Now that you have explored the API through the UI and that you understand how to make low level calls, pick your favorite client of use `CloudMonkey <https://pypi.python.org/pypi/cloudmonkey/>`__. CloudMonkey is a sub-project of Apache CloudStack and gives operators/developers the ability to use any of the API methods. It has nice auto-completion and help feature as well as an API discovery mechanism since 4.2."
486+
msgid "All the clients that you will find on GitHub will implement this signature technique, you should not have to do it by hand. Now that you have explored the API through the UI and that you understand how to make low level calls, pick your favorite client of use `CloudMonkey <https://pypi.python.org/pypi/cloudmonkey/>`__. CloudMonkey is a sub-project of Apache CloudStack and gives operators/developers the ability to use any of the API methods. It has nice auto-completion and help feature as well as an API discovery mechanism since 4.2."
487487
msgstr ""
488488

489489
#: ../../developer_guide.rst:598

source/developersguide/developer_guide.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ also developed that maps the GCE REST API to the CloudStack API
278278
described here. The API
279279
`docs <https://cloudstack.apache.org/api.html>`__ are a good start to
280280
learn the extent of the API. Multiple clients exist on
281-
`github <https://github.com/search?q=cloudstack+client&ref=cmdform>`__
281+
`GitHub <https://github.com/search?q=cloudstack+client&ref=cmdform>`__
282282
to use this API, you should be able to find one in your favorite
283283
language. The reference documentation for the API and changes that might
284284
occur from version to version is availble
@@ -408,7 +408,7 @@ and the signature. Then do an http GET:
408408
}
409409
}
410410

411-
All the clients that you will find on github will implement this
411+
All the clients that you will find on GitHub will implement this
412412
signature technique, you should not have to do it by hand. Now that you
413413
have explored the API through the UI and that you understand how to make
414414
low level calls, pick your favorite client of use

source/releasenotes/changes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ to track its issues.
2525

2626

2727
+-------------------------+----------+-------------------------------------------------------+
28-
| Version | Github | Description |
28+
| Version | GitHub | Description |
2929
+=========================+==========+=======================================================+
3030
| 4.19.0.0 | `#8547`_ | Externalise a few timeouts & fix timeout for |
3131
| | | hostSupportsUefi in libvirt ready command wrapper |

0 commit comments

Comments
 (0)