From 2b6f8b15aff8c1d322dc95b80f255f2b68011f60 Mon Sep 17 00:00:00 2001
From: Raoul Snyman <rsnyman@redhat.com>
Date: Tue, 16 Apr 2019 13:51:48 -0700
Subject: [PATCH] Deploy documentation to GitLab Pages

- Set up .gitlab-ci.yml to deploy documentation to GitLab pages
- Make some minor fixes/changes for git migration
---
 .bzrignore => .gitignore |  0
 .gitlab-ci.yml           | 14 ++++++++++++++
 manual/source/conf.py    |  2 +-
 3 files changed, 15 insertions(+), 1 deletion(-)
 rename .bzrignore => .gitignore (100%)
 create mode 100644 .gitlab-ci.yml

diff --git a/.bzrignore b/.gitignore
similarity index 100%
rename from .bzrignore
rename to .gitignore
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..8fd4422
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,14 @@
+image: alpine
+
+pages:
+  script:
+  - apk --no-cache add make py3-setuptools python3-dev
+  - python3 -m pip install sphinx sphinx_rtd_theme
+  - cd manual
+  - make html
+  - mv build/html/ ../public/
+  artifacts:
+    paths:
+    - public
+  only:
+  - master
diff --git a/manual/source/conf.py b/manual/source/conf.py
index 88654cb..70fefdb 100644
--- a/manual/source/conf.py
+++ b/manual/source/conf.py
@@ -42,7 +42,7 @@ master_doc = 'index'
 
 # General information about the project.
 project = u'OpenLP'
-copyright = u'2004 - 2015, Raoul Snyman'
+copyright = u'OpenLP Developers'
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the