summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.readthedocs.yaml6
-rw-r--r--distribution/pom.xml4
-rw-r--r--docs/_static/css/ribbon.css2
-rw-r--r--docs/conf.py38
-rw-r--r--docs/requirements-docs.txt5
-rw-r--r--pom.xml2
-rw-r--r--usecaseui-portal/pom.xml2
7 files changed, 50 insertions, 9 deletions
diff --git a/.readthedocs.yaml b/.readthedocs.yaml
index 3797dc8b..82889b5a 100644
--- a/.readthedocs.yaml
+++ b/.readthedocs.yaml
@@ -5,9 +5,6 @@
# Required
version: 2
-formats:
- - htmlzip
-
build:
image: latest
@@ -16,5 +13,8 @@ python:
install:
- requirements: docs/requirements-docs.txt
+submodules:
+ include: all
+
sphinx:
configuration: docs/conf.py
diff --git a/distribution/pom.xml b/distribution/pom.xml
index cab0d307..7139af30 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -19,7 +19,7 @@
<parent>
<groupId>org.onap.usecase-ui</groupId>
<artifactId>usecase-ui-parent</artifactId>
- <version>3.0.1-SNAPSHOT</version>
+ <version>5.2.0-SNAPSHOT</version>
</parent>
<artifactId>usecase-ui-distribution</artifactId>
@@ -28,7 +28,7 @@
<description>distribution for usecase-ui portal</description>
<properties>
- <usecaseui.version>5.1.0</usecaseui.version>
+ <usecaseui.version>5.2.0</usecaseui.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
diff --git a/docs/_static/css/ribbon.css b/docs/_static/css/ribbon.css
index 6008cb1a..afb9480d 100644
--- a/docs/_static/css/ribbon.css
+++ b/docs/_static/css/ribbon.css
@@ -59,5 +59,5 @@
/* fix width of the screen */
.wy-nav-content {
- max-width: none;
+ max-width: 800px;
}
diff --git a/docs/conf.py b/docs/conf.py
index d211470a..a6063226 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,10 +1,44 @@
from docs_conf.conf import *
+project = "onap"
+release = "master"
+version = "master"
+
+author = "Open Network Automation Platform"
+# yamllint disable-line rule:line-length
+copyright = "ONAP. Licensed under Creative Commons Attribution 4.0 International License"
+
+pygments_style = "sphinx"
+html_theme = "sphinx_rtd_theme"
+html_theme_options = {
+ "style_nav_header_background": "white",
+ "sticky_navigation": "False" }
+html_logo = "_static/logo_onap_2017.png"
+html_favicon = "_static/favicon.ico"
+html_static_path = ["_static"]
+html_show_sphinx = False
+
+#
+# Map to 'latest' if this file is used in 'latest' (master) 'doc' branch.
+# Change to {releasename} after you have created the new 'doc' branch.
+#
+
branch = 'latest'
+doc_url = 'https://docs.onap.org/projects'
+
master_doc = 'index'
linkcheck_ignore = [
- 'http://localhost',
+ r'http://localhost:\d+/'
+]
+
+extensions = [
+ 'sphinx.ext.intersphinx',
+ 'sphinx.ext.graphviz',
+ 'sphinxcontrib.blockdiag',
+ 'sphinxcontrib.seqdiag',
+ 'sphinxcontrib.swaggerdoc',
+ 'sphinxcontrib.plantuml'
]
intersphinx_mapping = {}
@@ -13,3 +47,5 @@ html_last_updated_fmt = '%d-%b-%y %H:%M'
def setup(app):
app.add_css_file("css/ribbon.css")
+
+
diff --git a/docs/requirements-docs.txt b/docs/requirements-docs.txt
index 3b3441a8..0cfb2ae2 100644
--- a/docs/requirements-docs.txt
+++ b/docs/requirements-docs.txt
@@ -1,3 +1,8 @@
lfdocs-conf
sphinx>=4.2.0 # BSD
sphinx-rtd-theme>=1.0.0 # MIT
+sphinxcontrib-blockdiag # BSD
+sphinxcontrib-seqdiag # BSD
+sphinxcontrib-swaggerdoc
+sphinxcontrib-spelling
+sphinxcontrib-plantuml
diff --git a/pom.xml b/pom.xml
index 5340848b..71cdaeca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
<groupId>org.onap.usecase-ui</groupId>
<artifactId>usecase-ui-parent</artifactId>
- <version>5.1.0-SNAPSHOT</version>
+ <version>5.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>usecase-ui-parent</name>
<description>parent project for usecase-ui</description>
diff --git a/usecaseui-portal/pom.xml b/usecaseui-portal/pom.xml
index 8a4c0de6..0d219e6f 100644
--- a/usecaseui-portal/pom.xml
+++ b/usecaseui-portal/pom.xml
@@ -20,7 +20,7 @@
<parent>
<groupId>org.onap.usecase-ui</groupId>
<artifactId>usecase-ui-parent</artifactId>
- <version>3.0.1-SNAPSHOT</version>
+ <version>5.2.0-SNAPSHOT</version>
</parent>
<artifactId>usecase-ui-portal</artifactId>