diff options
author | Zuul <zuul@review.openstack.org> | 2017-10-26 14:07:28 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-10-26 14:07:28 +0000 |
commit | b41cc719f5f65880dac313ab9d7750a9eea88692 (patch) | |
tree | d29a1133630fbd0e254ca7bffe1c7b18a1dd68f0 | |
parent | 932e523f00b4aa6271252d6ea0a614879600db57 (diff) | |
parent | 2e54022f1abca3a9adb65fde5161f46c40dea86b (diff) |
Merge "Add lite spec for language neutralization"
-rw-r--r-- | specs/queens/approved/glance_store/neutralize-language.rst | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/specs/queens/approved/glance_store/neutralize-language.rst b/specs/queens/approved/glance_store/neutralize-language.rst new file mode 100644 index 0000000..1f08f08 --- /dev/null +++ b/specs/queens/approved/glance_store/neutralize-language.rst | |||
@@ -0,0 +1,23 @@ | |||
1 | ============================== | ||
2 | Spec Lite: Neutralize Language | ||
3 | ============================== | ||
4 | |||
5 | :problem: The glance_store library is being consumed by another project (Glare) | ||
6 | but much of the language in Exception messages, log messages, and | ||
7 | configuration option help text talks about "images". | ||
8 | |||
9 | Additionally, some of the names of configuration options are | ||
10 | image-centric. (Actually, I could only find one of these): | ||
11 | |||
12 | * ``vmware_store_image_dir`` (and its default value is | ||
13 | 'openstack_glance') | ||
14 | |||
15 | :solution: * Make the language in Exception messages, log messages, and | ||
16 | the configuration option help text neutral, for example, replace | ||
17 | 'image' by 'object' and any other appropriate language changes. | ||
18 | |||
19 | * Introduce new configuration options for any options with | ||
20 | image-centric names and deprecate the old options using the | ||
21 | facilities oslo.config supplies for this purpose. | ||
22 | |||
23 | :impacts: The deprecated options will be listed in a release note. | ||