summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mailman/docs/8-miles-high.rst5
-rw-r--r--src/mailman/docs/START.rst8
-rw-r--r--src/mailman/docs/STYLEGUIDE.rst2
-rw-r--r--src/mailman/docs/WebUIin5.rst16
4 files changed, 16 insertions, 15 deletions
diff --git a/src/mailman/docs/8-miles-high.rst b/src/mailman/docs/8-miles-high.rst
index ae3074e1c..2d23570cb 100644
--- a/src/mailman/docs/8-miles-high.rst
+++ b/src/mailman/docs/8-miles-high.rst
@@ -10,8 +10,8 @@ Notes from the PyCon 2012 Mailman Sprint
*These are notes from the Mailman sprint at PyCon 2012. They are not
terribly well organized, nor fully fleshed out. Please edit and push
-branches to Launchpad at lp:mailman or post patches to
-the Mailman bug tracker at <https://bugs.launchpad.net/mailman>.*
+branches to `Gitlab`_ or post patches to
+the Mailman bug tracker at <https://gitlab.com/mailman/mailman/issues>.*
The intent of this document is to provide a view of Mailman 3's workflow and
structures from "eight miles high".
@@ -204,3 +204,4 @@ substyles, *etc*.
.. _`lazr.config`: http://pypi.python.org/pypi/lazr.config
+.. _`Gitlab` : http://gitlab.com/mailman/mailman
diff --git a/src/mailman/docs/START.rst b/src/mailman/docs/START.rst
index 688f453d0..6181426cb 100644
--- a/src/mailman/docs/START.rst
+++ b/src/mailman/docs/START.rst
@@ -12,7 +12,7 @@ Contact Us
Contributions of code, problem reports, and feature requests are welcome.
Please submit bug reports on the Mailman bug tracker at
-https://bugs.launchpad.net/mailman (you need to have a login on Launchpad to
+https://gitlab.com/mailman/mailman/issues (you need to have a login on Gitlab to
do so). You can also send email to the mailman-developers@python.org mailing
list, or ask on IRC channel ``#mailman`` on Freenode.
@@ -200,10 +200,10 @@ The Hyperkitty archiver is very loosely coupled to Mailman 3 core. In fact,
any email application that speaks LMTP or SMTP will be able to use Hyperkitty.
-.. _`Postorius`: https://launchpad.net/postorius
-.. _`Hyperkitty`: https://launchpad.net/hyperkitty
+.. _`Postorius`: https://gitlab.com/mailman/postorius
+.. _`Hyperkitty`: https://gitlab.com/mailman/hyperkitty
.. _`Django`: http://djangoproject.org/
-.. _`REST client module`: https://launchpad.net/mailman.client
+.. _`REST client module`: https://gitlab.com/mailman/mailmanclient
.. _`Five Minute Guide the Web UI`: WebUIin5.html
.. _`blog post`: http://wiki.list.org/display/DEV/A+5+minute+guide+to+get+the+Mailman+web+UI+running
.. _`notmuch mail indexer`: http://notmuchmail.org
diff --git a/src/mailman/docs/STYLEGUIDE.rst b/src/mailman/docs/STYLEGUIDE.rst
index ec58553c9..e8f1349ef 100644
--- a/src/mailman/docs/STYLEGUIDE.rst
+++ b/src/mailman/docs/STYLEGUIDE.rst
@@ -114,4 +114,4 @@ assumes the use of Python 3.
.. _`PEP 8`: http://www.python.org/peps/pep-0008.html
-.. _`GNU Mailman Python template`: http://bazaar.launchpad.net/~mailman-coders/mailman/3.0/annotate/head%3A/template.py
+.. _`GNU Mailman Python template`: https://gitlab.com/mailman/mailman/blob/master/template.py
diff --git a/src/mailman/docs/WebUIin5.rst b/src/mailman/docs/WebUIin5.rst
index bbcd7f194..ea24dbfe5 100644
--- a/src/mailman/docs/WebUIin5.rst
+++ b/src/mailman/docs/WebUIin5.rst
@@ -6,7 +6,7 @@ This is a quick guide for setting up a development environment to work on
Mailman 3's web UI, called Postorius. If all goes as planned, you should be
done within 5 minutes. This has been tested on Ubuntu 11.04.
-In order to download the components necessary you need to have the `Bazaar`_
+In order to download the components necessary you need to have the `Git`_
version control system installed on your system. Mailman requires Python 3.4,
while mailman.client needs at least Python version 2.6.
@@ -17,16 +17,16 @@ mailman.client) and other using Python version 3.4 (for Mailman core).
.. _`virtualenv`: http://pypi.python.org/pypi/virtualenv
.. _`Here is a brief HOWTO`: ./ArchiveUIin5.html#get-it-running-under-virtualenv
-.. _`Bazaar`: http://bazaar.canonical.com/en/
+.. _`Git`: http://git-scm.com
GNU Mailman 3
=============
-First download the latest revision of Mailman 3 from Launchpad.
+First download the latest revision of Mailman 3 from Gitlab.
::
- $(py3) bzr branch lp:mailman
+ $(py3) git clone git@gitlab.com:mailman/mailman.git
Install the Core::
@@ -47,9 +47,9 @@ mailman.client (the Python bindings for Mailman's REST API)
===========================================================
Now you should switch to the virtual environment running Python version 2.6 or
-2.7. Download the client from Launchpad::
+2.7. Download the client from Gitlab::
- $(py2) bzr branch lp:mailman.client
+ $(py2) git clone git@gitlab.com:mailman/mailmanclient.git
Install in development mode to be able to change the code without working
directly on the PYTHONPATH.
@@ -65,7 +65,7 @@ Postorius
::
- $(py2) bzr branch lp:postorius
+ $(py2) git clone git@gitlab.com:mailman/postorius.git
$(py2) cd postorius
$(py2) python setup.py develop
@@ -76,7 +76,7 @@ Start the development server
Postorius is a Django app which can be used with any Django project. We have
a project already developed which you can set up like this::
- $(py2) bzr branch lp:~mailman-coders/postorius/postorius_standalone
+ $(py2) git clone git@github.com:mailman/postorius_standalone.git
$(py2) cd postorius_standalone
$(py2) python manage.py syncdb
$(py2) python manage.py runserver