diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-06-06 22:49:03 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-06-06 22:49:03 +0000 |
| commit | 1244d4d5fead6018264f50da90dbc38e1f7c32e2 (patch) | |
| tree | c7ebb1ad6014e0ea0c54bab64598b6daf94ede29 | |
| parent | 19c54b61c1f477e699d2dcd7cc79816f52ca302d (diff) | |
| parent | 658dc23f26e6313dc56eba373f0406e1eac4efdd (diff) | |
| download | python-openstackclient-1244d4d5fead6018264f50da90dbc38e1f7c32e2.tar.gz | |
Merge "Fix release note links to (now) external docs"
| -rw-r--r-- | releasenotes/source/conf.py | 20 | ||||
| -rw-r--r-- | releasenotes/source/index.rst | 2 | ||||
| -rw-r--r-- | releasenotes/source/pre_20_releases.rst (renamed from releasenotes/source/previous_releases.rst) | 25 |
3 files changed, 33 insertions, 14 deletions
diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index 1b6929e2..12ed68df 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -40,8 +40,28 @@ extensions = [ 'oslosphinx', 'reno.sphinxext', + 'sphinx.ext.extlinks', ] +# Set aliases for extlinks +# * lpbug - generic Launchpad bug :lpbug:`123456` +# * oscbp - OSC blueprints :oscbp:`Blue Print <bp-name>` +# * oscdoc - OSC Docs :oscdoc:`Comamnd List <command-list>` +extlinks = { + 'lpbug': ( + 'https://bugs.launchpad.net/bugs/%s', + 'Bug ', + ), + 'oscbp': ( + 'https://blueprints.launchpad.net/python-openstackclient/+spec/%s', + '', + ), + 'oscdoc': ( + 'http://docs.openstack.org/developer/python-openstackclient/%s.html', + '', + ), +} + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/releasenotes/source/index.rst b/releasenotes/source/index.rst index 39602894..e0477df0 100644 --- a/releasenotes/source/index.rst +++ b/releasenotes/source/index.rst @@ -7,4 +7,4 @@ OpenStackClient Release Notes unreleased mitaka - previous_releases + pre_20_releases diff --git a/releasenotes/source/previous_releases.rst b/releasenotes/source/pre_20_releases.rst index 1999d38c..a2af7a9a 100644 --- a/releasenotes/source/previous_releases.rst +++ b/releasenotes/source/pre_20_releases.rst @@ -1,16 +1,12 @@ -================= -Previous Releases -================= - -As of release 2.0 the release notes can be found on the OpenStack `Release Notes site`_. - -.. _`Release Notes site`: http://docs.openstack.org/releasenotes/python-openstackclient +================ +Pre-2.0 Releases +================ 1.9.0 (17 Nov 2015) =================== * Several updates to `openstack server` - Blueprint `servers <https://blueprints.launchpad.net/python-openstackclient/+spec/cmd-with-multi-servers>`_ + Blueprint :oscbp:`servers <cmd-with-multi-servers>` * `openstack server start` * `openstack server stop` @@ -364,16 +360,18 @@ As of release 2.0 the release notes can be found on the OpenStack `Release Notes * Fix ``backup create`` to correctly use the ``--container`` value if supplied. Bug `1446751 <https://bugs.launchpad.net/bugs/1446751>`_ -* Document the backward-compatibility-breaking changes. - Bug `1406470 <https://bugs.launchpad.net/bugs/1406470>`_ +* Document the backward-compatibility-breaking changes in + :oscdoc:`Backwards Incompatible Changes <backwards-incompatible>`. + :lpbug:`1406470` -* Add `--parent`` option to `projct create` command. +* Add ``--parent`` option to ``project create`` command 1.1.0 (21 Apr 2015) =================== * Add global ``--os-cloud`` option to select from a list of cloud configurations. + See :oscdoc:`Configuration <configuration>` for more details. * Fix global ``--timing`` option operation. Bug `1402577 <https://bugs.launchpad.net/bugs/1402577>`_ @@ -461,8 +459,9 @@ As of release 2.0 the release notes can be found on the OpenStack `Release Notes =================== * The OpenStackClient content from the OpenStack Wiki has been migrated into - the OSC source repo. This includes the `commands`, `command-list` - and `humaninterfaceguide` documents. + the OSC source repo. This includes the :oscdoc:`Command Structure <commands>`, + :oscdoc:`Command List <command-list>` and + :oscdoc:`Human Interface Guide <humaninterfaceguide>` documents. * Set a default domain ID when both ``OS_USER_DOMAIN_ID`` and ``OS_USER_DOMAIN_NAME`` are not set. This is also done for |
