Rename Openstack to OpenStack

Change-Id: Id7d41fa8ec29e4f8f4b3df5ddf6c4b4028867ef2
This commit is contained in:
tanlin 2014-02-13 16:04:33 +08:00
parent ba4d2ee166
commit 61ff7a66fe
7 changed files with 14 additions and 14 deletions

View File

@ -15,7 +15,7 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Openstack logging handler.
"""OpenStack logging handler.
This module adds to logging functionality by adding the option to specify
a context object when calling the various log methods. If the context object

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Provides Openstack config generators
"""Provides OpenStack config generators
This module defines a class for configuration
generators for generating the model in
@ -31,7 +31,7 @@ class ConfigReportGenerator(object):
:class:`openstack.common.report.models.conf.ConfigModel` ,
by default using the configuration options stored
in :attr:`oslo.config.cfg.CONF`, which is where
Openstack stores everything.
OpenStack stores everything.
:param cnf: the configuration option object
:type cnf: :class:`oslo.config.cfg.ConfigOpts`

View File

@ -12,9 +12,9 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Provides Openstack version generators
"""Provides OpenStack version generators
This module defines a class for Openstack
This module defines a class for OpenStack
version and package information
generators for generating the model in
:mod:`openstack.common.report.models.version`.

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Provides Openstack Configuration Model
"""Provides OpenStack Configuration Model
This module defines a class representing the data
model for :mod:`oslo.config` configuration options

View File

@ -12,10 +12,10 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Provides Openstack Version Info Model
"""Provides OpenStack Version Info Model
This module defines a class representing the data
model for Openstack package and version information
model for OpenStack package and version information
"""
import openstack.common.report.models.with_default_views as mwdv

View File

@ -20,8 +20,8 @@ import setuptools
setuptools.setup(
name='oslo',
version='1',
description="Namespace for common components for Openstack",
long_description="Namespace for common components for Openstack",
description="Namespace for common components for OpenStack",
long_description="Namespace for common components for OpenStack",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',

View File

@ -25,12 +25,12 @@ import install_venv_common as install_venv # noqa
def print_help(venv, root):
help = """
Openstack development environment setup is complete.
OpenStack development environment setup is complete.
Openstack development uses virtualenv to track and manage Python
OpenStack development uses virtualenv to track and manage Python
dependencies while in development and testing.
To activate the Openstack virtualenv for the extent of your current shell
To activate the OpenStack virtualenv for the extent of your current shell
session you can run:
$ source %s/bin/activate
@ -57,7 +57,7 @@ def main(argv):
pip_requires = os.path.join(root, 'requirements.txt')
test_requires = os.path.join(root, 'test-requirements.txt')
py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1])
project = 'Openstack'
project = 'OpenStack'
install = install_venv.InstallVenv(root, venv, pip_requires, test_requires,
py_version, project)
options = install.parse_args(argv)