Text formatting changes

These are some text fixes in document, scripts and functions,
including variable usage, text aligning, adding new store class in
document

Change-Id: I98e226969d86698972870a7b3a042cb00c2206e9
This commit is contained in:
Kun Huang 2013-07-24 13:51:52 +08:00
parent 463f322380
commit 485274433f
5 changed files with 8 additions and 7 deletions

View File

@ -17,4 +17,5 @@
<jeblair@hp.com> <james.blair@rackspace.com> <jeblair@hp.com> <james.blair@rackspace.com>
<chris@pistoncloud.com> <chris@slicehost.com> <chris@pistoncloud.com> <chris@slicehost.com>
<ken.pepple@gmail.com> <ken.pepple@rabbityard.com> <ken.pepple@gmail.com> <ken.pepple@rabbityard.com>
<gareth@unitedstack.com> <academicgareth@gmail.com>
Zhongyue Luo <zhongyue.nah@intel.com> <lzyeval@gmail.com> Zhongyue Luo <zhongyue.nah@intel.com> <lzyeval@gmail.com>

View File

@ -404,8 +404,8 @@ The list of metadata headers that Glance accepts are listed below.
* ``x-image-meta-store`` * ``x-image-meta-store``
This header is optional. Valid values are one of ``file``, ``s3``, or This header is optional. Valid values are one of ``file``, ``s3``, ``rbd``,
``swift`` ``swift``, ``cinder``, ``gridfs`` or ``sheepdog``
When present, Glance will attempt to store the disk image data in the When present, Glance will attempt to store the disk image data in the
backing store indicated by the value of the header. If the Glance node backing store indicated by the value of the header. If the Glance node

View File

@ -40,7 +40,7 @@ OPTIONS
**--default_store=STORE** **--default_store=STORE**
The default backend store that Glance should use when storing virtual The default backend store that Glance should use when storing virtual
machine images. The default value is `filesystem`. Choices are any of machine images. The default value is `filesystem`. Choices are any of
`filesystem`, `swift`, or `s3` `filesystem`, `swift`, `rbd`, `cinder`, `gridfs`, `sheepdog` or `s3`
**--filesystem_store_datadir=DIR** **--filesystem_store_datadir=DIR**
The directory that the `filesystem` backend store should use to write The directory that the `filesystem` backend store should use to write

View File

@ -174,7 +174,7 @@ def _get_paste_config_path():
# to the last config file # to the last config file
path = CONF.config_file[-1].replace(conf_suffix, paste_suffix) path = CONF.config_file[-1].replace(conf_suffix, paste_suffix)
else: else:
path = CONF.prog + '-paste.ini' path = CONF.prog + paste_suffix
return CONF.find_file(os.path.basename(path)) return CONF.find_file(os.path.basename(path))