summaryrefslogtreecommitdiff
path: root/api-docs/source
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2020-10-16 16:38:39 -0400
committerJordan Wiens <jordan@psifertex.com>2020-10-21 15:44:13 -0400
commit2dd60db958a500469e60e383ebcd5aac2a9e4b43 (patch)
tree54245c3c0917df843a202dc7c4ec1011c2abfdcf /api-docs/source
parentf007112a3de561cc49b8632dbb7e316fd106d108 (diff)
interim progress using exhale
Diffstat (limited to 'api-docs/source')
-rw-r--r--api-docs/source/Architecture_c++.rst5
-rw-r--r--api-docs/source/BinaryView_c++.rst4
-rw-r--r--api-docs/source/ConsoleLogging_c++.rst29
-rw-r--r--api-docs/source/Platform_c++.rst3
-rw-r--r--api-docs/source/c++.rst10
-rw-r--r--api-docs/source/c.rst3
-rw-r--r--api-docs/source/conf.py13
7 files changed, 3 insertions, 64 deletions
diff --git a/api-docs/source/Architecture_c++.rst b/api-docs/source/Architecture_c++.rst
deleted file mode 100644
index 07f4f32e..00000000
--- a/api-docs/source/Architecture_c++.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Architecture
-============
-.. doxygenclass:: BinaryNinja::Architecture
- :members:
- :protected-members:
diff --git a/api-docs/source/BinaryView_c++.rst b/api-docs/source/BinaryView_c++.rst
deleted file mode 100644
index 8320fe2a..00000000
--- a/api-docs/source/BinaryView_c++.rst
+++ /dev/null
@@ -1,4 +0,0 @@
-BinaryView
-===========
-.. doxygenclass:: BinaryNinja::BinaryView
- :members:
diff --git a/api-docs/source/ConsoleLogging_c++.rst b/api-docs/source/ConsoleLogging_c++.rst
deleted file mode 100644
index f5b0bcc7..00000000
--- a/api-docs/source/ConsoleLogging_c++.rst
+++ /dev/null
@@ -1,29 +0,0 @@
-Console Logging
-===============
-BNLogLevel
-----------
-.. doxygenenum:: BNLogLevel
-
-Log
----
-.. doxygenfunction:: Log
-
-LogDebug
---------
-.. doxygenfunction:: LogDebug
-
-LogInfo
---------
-.. doxygenfunction:: LogInfo
-
-LogWarn
---------
-.. doxygenfunction:: LogWarn
-
-LogError
---------
-.. doxygenfunction:: LogError
-
-LogAlert
---------
-.. doxygenfunction:: LogAlert
diff --git a/api-docs/source/Platform_c++.rst b/api-docs/source/Platform_c++.rst
deleted file mode 100644
index 02108bd5..00000000
--- a/api-docs/source/Platform_c++.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Platform
-=========
-.. doxygenclass:: BinaryNinja::Platform
diff --git a/api-docs/source/c++.rst b/api-docs/source/c++.rst
deleted file mode 100644
index 6eec16b2..00000000
--- a/api-docs/source/c++.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-Binary Ninja C++ API Documentation
-==================================
-
-.. toctree::
- :maxdepth: 2
-
- BinaryView_c++
- Architecture_c++
- Platform_c++
- ConsoleLogging_c++
diff --git a/api-docs/source/c.rst b/api-docs/source/c.rst
deleted file mode 100644
index 4f4d5976..00000000
--- a/api-docs/source/c.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Binary Ninja C API Documentation
-================================
-
diff --git a/api-docs/source/conf.py b/api-docs/source/conf.py
index b3b929c8..2c3df758 100644
--- a/api-docs/source/conf.py
+++ b/api-docs/source/conf.py
@@ -48,7 +48,7 @@ def classlist(module):
return (x for x in members if not x[0].startswith("_"))
def setup(app):
- app.add_stylesheet('css/other.css')
+ app.add_css_file('css/other.css')
app.is_parallel_allowed('write')
def generaterst():
@@ -109,19 +109,12 @@ extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.intersphinx',
- 'sphinx.ext.viewcode',
- 'breathe'
+ 'sphinx.ext.viewcode'
]
autosummary_generate = True
autodoc_member_order = 'groupwise'
-breathe_projects = { "BinaryNinja": "../../xml/" }
-breathe_projects_source = {
- "BinaryNinja": ("../../", ["binaryninjaapi.h", "binaryninjacore.h"])
- }
-breathe_default_project = "BinaryNinja"
-
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@@ -139,7 +132,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Binary Ninja API'
+project = u'Binary Ninja Python API'
copyright = u'2015-2020, Vector 35 Inc'
author = u'Vector 35 Inc'