Replace broken links and http links in the doc

Some typos were fixed too.

Change-Id: I05f621c2daa1142006ab8e04164c75a031edea4f
This commit is contained in:
François Magimel 2018-06-29 23:08:57 +02:00
parent 1795e28888
commit 379b606dcc
11 changed files with 18 additions and 18 deletions

View File

@ -18,14 +18,14 @@ signed OpenStack's contributor's agreement.
.. seealso:: .. seealso::
* http://docs.openstack.org/infra/manual/developers.html * https://docs.openstack.org/infra/manual/developers.html
* http://wiki.openstack.org/CLA * https://wiki.openstack.org/wiki/CLA
Project Hosting Details Project Hosting Details
------------------------- -------------------------
Bug tracker Bug tracker
http://storyboard.openstack.org https://storyboard.openstack.org
Mailing list (prefix subjects with ``[storyboard]`` for faster responses) Mailing list (prefix subjects with ``[storyboard]`` for faster responses)
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-infra http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-infra
@ -45,4 +45,4 @@ Code Review
Please read `GerritWorkflow`_ before sending your first patch for review. Please read `GerritWorkflow`_ before sending your first patch for review.
.. _GerritWorkflow: http://docs.openstack.org/infra/manual/developers.html#development-workflow .. _GerritWorkflow: https://docs.openstack.org/infra/manual/developers.html#development-workflow

View File

@ -14,7 +14,7 @@ Project Resources
Project status, bugs, and blueprints are tracked at: Project status, bugs, and blueprints are tracked at:
http://storyboard.openstack.org https://storyboard.openstack.org
Source code can be found at: Source code can be found at:
@ -22,7 +22,7 @@ Source code can be found at:
Documentation can be found here: Documentation can be found here:
http://docs.openstack.org/infra/storyboard/ https://docs.openstack.org/infra/storyboard/
Additional resources are linked from the project wiki page: Additional resources are linked from the project wiki page:
@ -31,9 +31,9 @@ Additional resources are linked from the project wiki page:
Anyone wishing to contribute to an OpenStack project should Anyone wishing to contribute to an OpenStack project should
find plenty of helpful resources here: find plenty of helpful resources here:
http://docs.openstack.org/infra/manual/developers.html https://docs.openstack.org/infra/manual/developers.html
All OpenStack projects use Gerrit for code reviews. All OpenStack projects use Gerrit for code reviews.
A good reference for that is here: A good reference for that is here:
http://docs.openstack.org/infra/manual/developers.html#development-workflow https://docs.openstack.org/infra/manual/developers.html#development-workflow

View File

@ -4,7 +4,7 @@ Extending StoryBoard: Overview
StoryBoard provides many extension points that allow you to customize its StoryBoard provides many extension points that allow you to customize its
functionality to your own needs. All of these are implemented using functionality to your own needs. All of these are implemented using
`stevedore <http://stevedore.readthedocs.org>`_, so that installing them is `stevedore <https://docs.openstack.org/stevedore/latest/>`_, so that installing them is
simple, straightforward, and independent of the storyboard core libraries. simple, straightforward, and independent of the storyboard core libraries.
StoryBoard itself makes use of these extension points, StoryBoard itself makes use of these extension points,
providing several 'in-branch' plugins that you may use as a template for your providing several 'in-branch' plugins that you may use as a template for your

View File

@ -44,7 +44,7 @@ reasonably unique::
Then, implement your plugin by extending `CronPluginBase`. You may register Then, implement your plugin by extending `CronPluginBase`. You may register
your own configuration groups, please see your own configuration groups, please see
`oslo.config <http://docs.openstack.org/developer/oslo.config/api/oslo.config.cfg.html>`_ `oslo.config <https://docs.openstack.org/oslo.config/latest/reference/cfg.html>`_
for more details.:: for more details.::
from storyboard.plugin.cron.base import CronPluginBase from storyboard.plugin.cron.base import CronPluginBase

View File

@ -40,7 +40,7 @@ reasonably unique::
Then, implement your plugin by extending `WorkerTaskBase`. You may register Then, implement your plugin by extending `WorkerTaskBase`. You may register
your own configuration groups, please see your own configuration groups, please see
`oslo.config <http://docs.openstack.org/developer/oslo.config/api/oslo.config.cfg.html>`_ `oslo.config <https://docs.openstack.org/oslo.config/latest/reference/cfg.html>`_
for more details.:: for more details.::
from storyboard.plugin.event_worker import WorkerTaskBase from storyboard.plugin.event_worker import WorkerTaskBase

View File

@ -4,7 +4,7 @@ Tasks, Stories, & Tags
This manual is a guide for StoryBoard users to navigate the usage of tasks, stories, and tags in the webclient. This manual is a guide for StoryBoard users to navigate the usage of tasks, stories, and tags in the webclient.
The OpenStack StoryBoard webclient can be accessed 'here <https://storyboard.openstack.org/>'_. The OpenStack StoryBoard webclient can be accessed here: https://storyboard.openstack.org.
StoryBoard is a task tracking application. It encourages anyone StoryBoard is a task tracking application. It encourages anyone
to sign in and create a story. to sign in and create a story.

View File

@ -39,7 +39,7 @@ the commandline on the fly with a tool like curl.
There are some docs to illustrate usage here: There are some docs to illustrate usage here:
http://docs.openstack.org/infra/storyboard/webapi/v1.html https://docs.openstack.org/infra/storyboard/webapi/v1.html
Moreover, as our API is generally RESTful, it's straightforward to Moreover, as our API is generally RESTful, it's straightforward to
guess how to do things, and compatible with a lot of other tools with guess how to do things, and compatible with a lot of other tools with

View File

@ -15,8 +15,8 @@ StoryBoard consists of two components:
Storyboard API Storyboard API
.. _Pecan: http://pecan.readthedocs.org/en/latest/ .. _Pecan: https://pecan.readthedocs.io/en/latest/
.. _WSME: http://wsme.readthedocs.org/en/latest/ .. _WSME: https://wsme.readthedocs.io/en/latest/
.. _Storyboard API service: https://git.openstack.org/cgit/openstack-infra/storyboard/ .. _Storyboard API service: https://git.openstack.org/cgit/openstack-infra/storyboard/
.. _Storyboard Web Client: https://git.openstack.org/cgit/openstack-infra/storyboard-webclient .. _Storyboard Web Client: https://git.openstack.org/cgit/openstack-infra/storyboard-webclient
.. _Storyboard Python Client: https://git.openstack.org/cgit/openstack-infra/python-storyboardclient .. _Storyboard Python Client: https://git.openstack.org/cgit/openstack-infra/python-storyboardclient

View File

@ -209,7 +209,7 @@ Optional steps: Set up the notifications daemon
sudo rabbitmqctl add_user storyboard storyboard sudo rabbitmqctl add_user storyboard storyboard
sudo rabbitmqctl set_permissions -p / storyboard ".*" ".*" ".*" sudo rabbitmqctl set_permissions -p / storyboard ".*" ".*" ".*"
.. _rabbitmq manpages: https://www.rabbitmq.com/man/rabbitmqctl.1.man.html#User%20management .. _rabbitmq manpages: https://www.rabbitmq.com/rabbitmqctl.8.html#User_Management
3. Set up your storyboard.conf file for notifications using rabbitmq:: 3. Set up your storyboard.conf file for notifications using rabbitmq::

View File

@ -57,7 +57,7 @@ Using grunt directly within virtual environment
* Bootstrap your database:: * Bootstrap your database::
./bin/api.sh create-db` ./bin/api.sh create-db
* Migrate the database:: * Migrate the database::

View File

@ -5,7 +5,7 @@ description-file =
README.rst README.rst
author = OpenStack author = OpenStack
author-email = openstack-dev@lists.openstack.org author-email = openstack-dev@lists.openstack.org
home-page = http://www.openstack.org/ home-page = https://www.openstack.org/
classifier = classifier =
Environment :: OpenStack Environment :: OpenStack
Framework :: Pecan/WSME Framework :: Pecan/WSME