From 96633f3b92d394bc64cb7f2c5fdcea609bb547fd Mon Sep 17 00:00:00 2001 From: caoyuan Date: Tue, 23 Apr 2019 19:40:14 +0800 Subject: [PATCH] Replace git.openstack.org URLs with opendev.org URLs 1. Replace git.openstack.org URLs with opendev.org URLs 2. Remove unncessary "==" Change-Id: I788df8332b620cd914c9c5cffdd88e2dcf31e045 --- README.rst | 2 +- doc/source/index.rst | 6 +++--- doc/source/install/index.rst | 2 +- doc/source/user/tutorial/coordinator.rst | 6 +++--- doc/source/user/tutorial/group_membership.rst | 8 ++++---- doc/source/user/tutorial/index.rst | 6 +++--- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.rst b/README.rst index 7725bcf1..c2350d5b 100644 --- a/README.rst +++ b/README.rst @@ -15,7 +15,7 @@ a coordination API helping developers to build distributed applications. * Free software: Apache license * Documentation: https://docs.openstack.org/tooz/latest/ -* Source: https://git.openstack.org/cgit/openstack/tooz +* Source: https://opendev.org/openstack/tooz * Bugs: https://bugs.launchpad.net/python-tooz/ * Release notes: https://docs.openstack.org/releasenotes/tooz diff --git a/doc/source/index.rst b/doc/source/index.rst index af185032..16e7c540 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -1,6 +1,6 @@ -============================================================= - Tooz -- Distributed System Helper Library -============================================================= +========================================= +Tooz -- Distributed System Helper Library +========================================= The Tooz project aims at centralizing the most common distributed primitives like group membership protocol, lock service and leader election by providing diff --git a/doc/source/install/index.rst b/doc/source/install/index.rst index 3070b4a8..cfc0779e 100644 --- a/doc/source/install/index.rst +++ b/doc/source/install/index.rst @@ -34,7 +34,7 @@ http://pypi.python.org/pypi/tooz Source Code =========== -The source is hosted on the OpenStack infrastructure: https://git.openstack.org/cgit/openstack/tooz/ +The source is hosted on the OpenStack infrastructure: https://opendev.org/openstack/tooz/ Reporting Bugs ============== diff --git a/doc/source/user/tutorial/coordinator.rst b/doc/source/user/tutorial/coordinator.rst index 0131deeb..fea28ee2 100644 --- a/doc/source/user/tutorial/coordinator.rst +++ b/doc/source/user/tutorial/coordinator.rst @@ -1,6 +1,6 @@ -======================= - Creating A Coordinator -======================= +====================== +Creating A Coordinator +====================== The principal object provided by tooz is the *coordinator*. It allows you to use various features, such as group membership, leader election or diff --git a/doc/source/user/tutorial/group_membership.rst b/doc/source/user/tutorial/group_membership.rst index 502d2115..2313a5e1 100644 --- a/doc/source/user/tutorial/group_membership.rst +++ b/doc/source/user/tutorial/group_membership.rst @@ -1,9 +1,9 @@ -===================== - Group Membership -===================== +================ +Group Membership +================ Basic operations -=================== +================ One of the feature provided by the coordinator is the ability to handle group membership. Once a group is created, any coordinator can join the diff --git a/doc/source/user/tutorial/index.rst b/doc/source/user/tutorial/index.rst index c2d398c4..d23c5634 100644 --- a/doc/source/user/tutorial/index.rst +++ b/doc/source/user/tutorial/index.rst @@ -1,6 +1,6 @@ -===================================== - Using Tooz in Your Application -===================================== +============================== +Using Tooz in Your Application +============================== This tutorial is a step-by-step walk-through demonstrating how to use tooz in your application.