From 2e54022f1abca3a9adb65fde5161f46c40dea86b Mon Sep 17 00:00:00 2001 From: Brian Rosmaita Date: Fri, 29 Sep 2017 12:38:56 -0400 Subject: [PATCH] Add lite spec for language neutralization Based on discussions with the Glare team at the Denver PTG: https://etherpad.openstack.org/p/glance-queens-ptg-glance_store Change-Id: I70ca7ad0bf2e5e7922ce95fae13405b2f1633c18 --- .../glance_store/neutralize-language.rst | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 specs/queens/approved/glance_store/neutralize-language.rst 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 00000000..1f08f082 --- /dev/null +++ b/specs/queens/approved/glance_store/neutralize-language.rst @@ -0,0 +1,23 @@ +============================== +Spec Lite: Neutralize Language +============================== + +:problem: The glance_store library is being consumed by another project (Glare) + but much of the language in Exception messages, log messages, and + configuration option help text talks about "images". + + Additionally, some of the names of configuration options are + image-centric. (Actually, I could only find one of these): + + * ``vmware_store_image_dir`` (and its default value is + 'openstack_glance') + +:solution: * Make the language in Exception messages, log messages, and + the configuration option help text neutral, for example, replace + 'image' by 'object' and any other appropriate language changes. + + * Introduce new configuration options for any options with + image-centric names and deprecate the old options using the + facilities oslo.config supplies for this purpose. + +:impacts: The deprecated options will be listed in a release note.