diff --git a/HACKING.rst b/HACKING.rst index 55b94c2..8ff9cff 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -1,6 +1,6 @@ -================= +================ Coding Standards -================= +================ OpenCAFE standards are intended to allow flexability in solving coding issues, while maintaining uniformity and overall code quality. diff --git a/README.rst b/README.rst index a83c8d4..5d6d3a0 100644 --- a/README.rst +++ b/README.rst @@ -25,7 +25,7 @@ be used to that end. Installation ============ -Source code is available at https://github.com/stackforge/opencafe +Source code is available at https://github.com/openstack/opencafe Supported Operating Systems --------------------------- @@ -45,7 +45,7 @@ From source :: - $ git clone https://github.com/stackforge/opencafe.git + $ git clone https://github.com/openstack/opencafe.git $ cd opencafe $ python setup.py install @@ -130,7 +130,7 @@ Following are some notes on Open CAFE lingo and concepts. Although the engine can serve as a basic framework for testing, it's meant to be used as the base for the implementation of a product-specific testing framework. * Product - Anything that's being tested by an implementation of Open CAFE Core. If you would like to see a refernce implementation, there is an `Open Source implementation `_ based on `OpenStack `_. + Anything that's being tested by an implementation of Open CAFE Core. If you would like to see a reference implementation, there is an `Open Source implementation `_ based on `OpenStack `_. * Client / Client Method A **client** is an "at-least-one"-to-"at-most-one" mapping of a product's functionality to a collection of client methods. Using a `REST API `_ as an example, a client that represents that API in CAFE will contain at least one (but possibly more) method(s) for every function exposed by that API. Should a call in the API prove to be too difficult or cumbersome to define via a single **client method**, then multiple client methods can be defined such that as a whole they represent the complete set of that API call's functionality. A **client method** should never be a superset of more than one call's functionality. diff --git a/docs/source/getting_started/setting_up_env.rst b/docs/source/getting_started/setting_up_env.rst index d6628de..c8492de 100644 --- a/docs/source/getting_started/setting_up_env.rst +++ b/docs/source/getting_started/setting_up_env.rst @@ -1,6 +1,6 @@ -===================================== +==================================== Setting up a Development Environment -===================================== +==================================== OpenCAFE strongly recommends the use of Python virtual environments for development. @@ -8,7 +8,7 @@ While not required, if you wish to manage your Python versions as well as virtua Building your virtual environment -================================== +================================= If you wish to run OpenCAFE in a virtual environment, then you will need to `install virtualenv `_ For easier management of your virtual environments, it is recommended that you install virtualenvwrapper as well. @@ -19,7 +19,7 @@ For easier management of your virtual environments, it is recommended that you i Creating virtualenv and installing OpenCAFE ---------------------------------------------- +------------------------------------------- .. code-block:: bash @@ -27,7 +27,7 @@ Creating virtualenv and installing OpenCAFE mkvirtualenv OpenCAFE # Clone OpenCAFE Repo - git clone git@github.com:stackforge/opencafe.git + git clone git@github.com:openstack/opencafe.git # Change directory into the newly cloned repository cd opencafe