summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--conf.py8
-rw-r--r--src/mailman/docs/START.rst8
-rw-r--r--src/mailman/docs/WebUIin5.rst2
3 files changed, 11 insertions, 7 deletions
diff --git a/conf.py b/conf.py
index db7b868df..d0d8589dd 100644
--- a/conf.py
+++ b/conf.py
@@ -230,8 +230,12 @@ def index_html():
if error.errno != errno.EEXIST:
raise
os.chdir('build/sphinx/html')
- os.symlink('README.html', 'index.html')
- print 'index.html -> README.html'
+ try:
+ os.symlink('README.html', 'index.html')
+ print 'index.html -> README.html'
+ except OSError as error:
+ if error.errno != errno.EEXIST:
+ raise
finally:
os.chdir(cwd)
diff --git a/src/mailman/docs/START.rst b/src/mailman/docs/START.rst
index cd7b5247d..57df48e30 100644
--- a/src/mailman/docs/START.rst
+++ b/src/mailman/docs/START.rst
@@ -49,8 +49,8 @@ simplifies building and testing Mailman.
During the beta program, you may need some additional dependencies, such as a
C compiler and the Python development headers and libraries. You will need an
-internet connection. Also the `web UI`_ and `archive UI`_ are distributed and
-installed separately.
+internet connection. Also `Postorius`_ (the web UI) and the `archive UI`_ are
+distributed and installed separately.
Building Mailman 3
@@ -121,8 +121,8 @@ Try ``bin/mailman --help`` for more details. You can use the commands
``bin/mailman start`` to start the runner subprocess daemons, and of course
``bin/mailman stop`` to stop them.
-The `web ui`_ is being developed as a separate, Django-based project. For
-now, all configuration happens via the command line and REST API.
+Postorius is being developed as a separate, Django-based project. For now,
+all configuration happens via the command line and REST API.
Mailman Web UI
diff --git a/src/mailman/docs/WebUIin5.rst b/src/mailman/docs/WebUIin5.rst
index 5000de9ad..56f2df9fb 100644
--- a/src/mailman/docs/WebUIin5.rst
+++ b/src/mailman/docs/WebUIin5.rst
@@ -43,7 +43,7 @@ fine as long as you only want to work on the components related to the REST
client or the web ui.
-mailman.client (the Python bindings for Mailman's ReST API)
+mailman.client (the Python bindings for Mailman's REST API)
===========================================================
Download from Launchpad::