Remove linkcheck and add API examples 51/13151/1
authorRich Bennett <rb2745@att.com>
Mon, 18 Sep 2017 14:01:25 +0000 (10:01 -0400)
committerRich Bennett <rb2745@att.com>
Mon, 18 Sep 2017 14:04:52 +0000 (10:04 -0400)
Part 1 of moviing linkcheck from verify to a CSIT job
Added API examples and extensions used to document APIs

Change-Id: I5dd536c50930b09bb129e95a9767c97f09c0604b
Issue-ID: DOC-82
Signed-off-by: Rich Bennett <rb2745@att.com>
docs/conf.py
docs/release/repolist.rst
docs/templates/platform-component/offeredapis.rst
etc/requirements.txt
tox.ini

index ceb28ca..ff9deae 100644 (file)
@@ -37,7 +37,12 @@ extensions = [
     'sphinx.ext.imgmath',
     'sphinx.ext.viewcode',
     'sphinxcontrib.blockdiag',
-    'sphinxcontrib.seqdiag'
+    'sphinxcontrib.seqdiag',
+    'sphinx.ext.ifconfig',
+    'sphinx.ext.todo',
+    'sphinxcontrib.httpdomain',
+    'sphinxcontrib.plantuml',
+    'sphinxcontrib.swaggerdoc'
 ]
 
 # Font path for seqdiag
@@ -369,3 +374,4 @@ epub_exclude_files = ['search.html']
 
 # Patterns to ignore in linkcheck builder
 linkcheck_ignore = [r'http://localhost:\d+/']
+
index 96fdc55..5c188d0 100644 (file)
@@ -22,4 +22,4 @@ Documentation organized by the project delivering them.
    aai/search-data-service <../submodules/aai/search-data-service.git/docs/index>
    optf/has <../submodules/optf/has.git/docs/index>
    dcaegen2 <../submodules/dcaegen2.git/docs/index>
-  aaf/authz <../submodules/aaf/authz.git/docs/index>
+   aaf/authz <../submodules/aaf/authz.git/docs/index>
index 3e3b5b3..55e58bd 100644 (file)
@@ -6,7 +6,24 @@ Offered APIs
 ============
 List APIs offered.   One or more of the following examples may be appropriate.
 
-* java docs link
-* rest API swagger json definition displayed with sphinx directive .. swaggerv2doc:
-* a restructured text document
+Example Swagger Displayed with swaggerv2doc directive
+-----------------------------------------------------
 
+.. swaggerv2doc:: https://gerrit.onap.org/r/gitweb?p=vfc/nfvo/lcm.git;a=blob_plain;f=lcm/swagger/vfc.nslcm.swagger.json
+
+
+Example documenting a REST interface with Sphinx httpdomain directive
+---------------------------------------------------------------------
+
+.. http:get:: path
+
+   For more information see `<https://pythonhosted.org/sphinxcontrib-httpdomain>`_
+
+
+Word Document Converted to RST using Pandocs
+--------------------------------------------
+
+.. toctree:: 
+   :maxdepth: 1
+
+   ../../submodules/appc.git/docs/APPC API Guide/APPC API Guide
index b12395a..66f7610 100644 (file)
@@ -7,4 +7,7 @@ six
 sphinxcontrib-httpdomain
 sphinxcontrib-blockdiag
 sphinxcontrib-seqdiag
+sphinxcontrib-swaggerdoc
+sphinxcontrib-plantuml
+sphinxcontrib-httpdomain
 sphinx_bootstrap_theme>=0.4.11
diff --git a/tox.ini b/tox.ini
index c1993d9..e3349e5 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 minversion = 1.6
-envlist = docs,docs-linkcheck
+envlist = docs
 skipsdist = true
 
 [testenv:docs]
@@ -12,4 +12,4 @@ whitelist_externals = echo
 
 [testenv:docs-linkcheck]
 deps = -r{toxinidir}/etc/requirements.txt
-commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck
\ No newline at end of file
+commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck