From 490b20d3e31acbc3e8f62f950186fb507fb445f0 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Wed, 15 Mar 2023 21:40:48 +0100 Subject: Enable all Sphinx build warnings as errors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It also fixes several issues to pass the gate. Please note that .. code-block :: json content must be json. Issue-ID: DOC-798 Signed-off-by: Cédric Ollivier Change-Id: I38a751b67ab70a5ed5d61cdd49fe914c7b9270cd --- docs/admin-guide.rst | 10 +++++----- docs/conf.py | 3 ++- docs/cps-events.rst | 10 +++++----- docs/deployment.rst | 2 +- docs/release-notes.rst | 1 + docs/tox.ini | 6 +++--- 6 files changed, 17 insertions(+), 15 deletions(-) diff --git a/docs/admin-guide.rst b/docs/admin-guide.rst index a7439ef4c..c2643f87c 100644 --- a/docs/admin-guide.rst +++ b/docs/admin-guide.rst @@ -30,7 +30,7 @@ Logging Configuration CPS Log pattern --------------- -.. code-block:: java +.. code-block:: { @@ -50,7 +50,7 @@ Change logging level - Curl command 1. Check current log level of "logging.level.org.onap.cps" if it is set to it's default value (INFO) -.. code-block:: java +.. code-block:: bash curl --location --request GET 'http://{cps-service-name:cps-management-port}/manage/loggers/org.onap.cps' \ --header 'Content-Type: application/json; charset=utf-8' @@ -68,7 +68,7 @@ Change logging level .. note:: Below-mentioned endpoint will change the log level at runtime. After executing the curl command "effectiveLevel" will set and applied immediately without restarting CPS service. -.. code-block:: java +.. code-block:: bash curl --location --request POST 'http://{cps-service-name:cps-management-port}/manage/loggers/org.onap.cps' \ --header 'Content-Type: application/json; charset=utf-8' \ @@ -80,7 +80,7 @@ Change logging level - Curl command 3. Verify if log level of "logging.level.org.onap.cps" is changed from 'INFO' to 'DEBUG' -.. code-block:: java +.. code-block:: bash curl --location --request GET 'http://{cps-service-name:cps-management-port}/manage/loggers/org.onap.cps' \ --header 'Content-Type: application/json; charset=utf-8' @@ -109,7 +109,7 @@ Measure Execution Time of CPS Service Execute CPS service that you want to calculate total elapsed time and log as shown below -.. code-block:: xml +.. code-block:: 2022-01-28 18:39:17.679 DEBUG [cps-application,e17da1571e518c59,e17da1571e518c59] 11128 --- [tp1901272535-29] o.onap.cps.aop.CpsLoggingAspectService : Execution time of : DataspaceRepository.getByName() with argument[s] = [test42] having result = org.onap.cps.spi.entities.DataspaceEntity@68ded236 :: 205 ms diff --git a/docs/conf.py b/docs/conf.py index 5185b61cd..e8bb6630f 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,7 +38,8 @@ html_show_sphinx = False extensions = [ 'sphinx.ext.intersphinx','sphinxcontrib.blockdiag', - 'sphinxcontrib.seqdiag', 'sphinxcontrib.swaggerdoc', 'sphinx.ext.graphviz'] + 'sphinxcontrib.seqdiag', 'sphinxcontrib.swaggerdoc', 'sphinx.ext.graphviz', + 'sphinxcontrib.spelling'] # # Map to 'latest' if this file is used in 'latest' (master) 'doc' branch. diff --git a/docs/cps-events.rst b/docs/cps-events.rst index df37de363..d487018e4 100644 --- a/docs/cps-events.rst +++ b/docs/cps-events.rst @@ -27,7 +27,7 @@ Event header "eventTarget" : "test-topic", "eventType" : "org.onap.cps.ncmp.event.model.DmiAsyncRequestResponseEvent", "eventSchema" : "urn:cps:org.onap.cps.ncmp.event.model.DmiAsyncRequestResponseEvent:v1", - "forwarded-Event" : { ... } + "forwarded-Event" : { } } Forwarded-Event Payload @@ -46,7 +46,7 @@ Forwarded-Event Payload "response-data-schema" : "urn:cps:org.onap.cps.ncmp.event.model.DmiAsyncRequestResponseEvent:v1", "response-status" : "OK", "response-code" : "200", - "response-data" : { ... } + "response-data" : { } } @@ -77,7 +77,7 @@ Events header ^^^^^^^^^^^^^ *Event header prototype for all event types* -.. code-block:: json +.. code-block:: { "eventId" : "00001", @@ -86,8 +86,8 @@ Events header "eventSource" : "org.onap.ncmp", "eventType" : "org.onap.ncmp.cmhandle-lcm-event.create", "eventSchema" : "org.onap.ncmp:cmhandle-lcm-event", - "eventSchemaVersion" : "1.0" - "event": .... + "eventSchemaVersion" : "1.0", + "event" : ... } Events payload diff --git a/docs/deployment.rst b/docs/deployment.rst index c7504e28b..2e72c0a35 100644 --- a/docs/deployment.rst +++ b/docs/deployment.rst @@ -247,7 +247,7 @@ Any spring supported property can be configured by providing in ``config.additio | notification.data-updated.topic | | | +---------------------------------------+---------------------------------------------------------------------------------------------------------+-------------------------------+ | config.additional. | Array of dataspaces to be enabled for publishing events to cps-temporal | [] | -| notification.data-updated.filters. | If left blank CPS-Temporal notification will be sent for all dataspaces | | +| notification.data-updated.filters. | If left blank CPS-Temporal notification will be sent for all dataspaces | | | enabled-dataspaces | | | +---------------------------------------+---------------------------------------------------------------------------------------------------------+-------------------------------+ | config.additional. | If asynchronous messaging, user notifications, and updated event persistence should be enabled | ``true`` | diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 93844b84f..12e485aae 100755 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -182,6 +182,7 @@ Release Data | **Release date** | 2023 January 27 | | | | +--------------------------------------+--------------------------------------------------------+ + Features -------- 3.2.1 diff --git a/docs/tox.ini b/docs/tox.ini index ab2de1b8c..8684276f9 100644 --- a/docs/tox.ini +++ b/docs/tox.ini @@ -27,7 +27,7 @@ deps = -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master commands = - sphinx-build -q -b html -n -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/html + sphinx-build -W -q -b html -n -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/html [testenv:docs-linkcheck] basepython = python3.8 deps = @@ -35,7 +35,7 @@ deps = -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master commands = - sphinx-build -b linkcheck -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/linkcheck + sphinx-build -W -q -b linkcheck -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/linkcheck [testenv:docs-spellcheck] basepython = python3.8 deps = @@ -43,4 +43,4 @@ deps = -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master commands = - sphinx-build -b spelling -Dextensions=sphinxcontrib.spelling -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/spellcheck + sphinx-build -b spelling -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/spellcheck -- cgit 1.2.3-korg