diff options
-rw-r--r-- | docs/index.rst | 14 | ||||
-rw-r--r-- | docs/install.rst | 8 |
2 files changed, 11 insertions, 11 deletions
diff --git a/docs/index.rst b/docs/index.rst index 8960aa8b..195f5f1c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2,7 +2,7 @@ Tuskar-UI ========= -Tuskar-UI is a user interface for `Tuskar <https://github.com/stackforge/tuskar>`_, a management API for OpenStack deployments. It is a plugin for `OpenStack Horizon <https://wiki.openstack.org/wiki/Horizon>`_. +Tuskar-UI is a user interface for `Tuskar <https://github.com/openstack/tuskar>`_, a management API for OpenStack deployments. It is a plugin for `OpenStack Horizon <https://wiki.openstack.org/wiki/Horizon>`_. High-Level Overview ------------------- @@ -18,16 +18,16 @@ Developer Information Installation Guide ~~~~~~~~~~~~~~~~~~ -Follow the `Installation Guide <https://github.com/stackforge/tuskar-ui/blob/master/docs/install.rst>`_ to install Tuskar-UI. +Follow the `Installation Guide <https://github.com/openstack/tuskar-ui/blob/master/docs/install.rst>`_ to install Tuskar-UI. Contributing ~~~~~~~~~~~~ -We've moved the code to `stackforge <https://github.com/stackforge>`__ +We've moved the code to `openstack <https://github.com/openstack>`__ to be more familiar to the OpenStack developers. Please go there if you want to check it out: - git clone https://github.com/stackforge/tuskar-ui.git + git clone https://github.com/openstack/tuskar-ui.git The list of bugs and blueprints is on Launchpad: @@ -35,14 +35,14 @@ The list of bugs and blueprints is on Launchpad: We use OpenStack's Gerrit for the code contributions: -`<https://review.openstack.org/#/q/status:open+project:stackforge/tuskar-ui,n,z>`__ +`<https://review.openstack.org/#/q/status:open+project:openstack/tuskar-ui,n,z>`__ and we follow the `OpenStack Gerrit Workflow <https://wiki.openstack.org/wiki/Gerrit_Workflow>`__. If you're interested in the code, here are some key places to start: -* `tuskar_ui/api.py <https://github.com/stackforge/tuskar-ui/blob/master/tuskar_ui/api.py>`_ - This file contains all the API calls made to the Tuskar API (through python-tuskarclient). -* `tuskar_ui/infrastructure <https://github.com/stackforge/tuskar-ui/tree/master/tuskar_ui/infrastructure>`_ - The Tuskar UI code is contained within this directory. Up to this point, UI development has been focused within the resource_management/ subdirectory. +* `tuskar_ui/api.py <https://github.com/openstack/tuskar-ui/blob/master/tuskar_ui/api.py>`_ - This file contains all the API calls made to the Tuskar API (through python-tuskarclient). +* `tuskar_ui/infrastructure <https://github.com/openstack/tuskar-ui/tree/master/tuskar_ui/infrastructure>`_ - The Tuskar UI code is contained within this directory. Up to this point, UI development has been focused within the resource_management/ subdirectory. Future Work ----------- diff --git a/docs/install.rst b/docs/install.rst index 9e174a9d..1defc8d5 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -20,7 +20,7 @@ Installation prerequisites are: machine as tuskar-ui, but it must be network accessible. You may find -`the Tuskar install guide <https://github.com/stackforge/tuskar/blob/master/INSTALL.rst>`_ +`the Tuskar install guide <https://github.com/openstack/tuskar/blob/master/INSTALL.rst>`_ helpful. For baremetal provisioning, you will want a Nova Baremetal driver @@ -28,7 +28,7 @@ installed and registered in the Keystone services catalog. (You can `read more about setting up Nova Baremetal here <https://wiki.openstack.org/wiki/Baremetal>`_.) If you are using Devstack to run OpenStack, you can use -`Devstack Baremetal configuration <https://github.com/stackforge/tuskar-ui/blob/master/docs/devstack_baremetal.rst>`_. +`Devstack Baremetal configuration <https://github.com/openstack/tuskar-ui/blob/master/docs/devstack_baremetal.rst>`_. Installing the packages ----------------------- @@ -62,7 +62,7 @@ Begin by cloning the horizon and tuskar-ui repositories: :: git clone git://github.com/openstack/horizon.git - git clone git://github.com/stackforge/tuskar-ui.git + git clone git://github.com/openstack/tuskar-ui.git Go into horizon and create a symlink to the tuskar-ui code: @@ -137,7 +137,7 @@ tuskar-ui introduces one additional dependency - python-tuskarclient: :: - pip install git+http://github.com/stackforge/python-tuskarclient.git + pip install git+http://github.com/openstack/python-tuskarclient.git Starting the app ---------------- |