1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Description: Avoid errors/warnings in docs
Tell sphinx not to include warnings
Remove missing functions
.
Author: Boian Bonev <bbonev@ipacct.com>
Origin: other
Forwarded: not-needed
Last-Update: 2023-01-24
--- a/docs/manual/conf.py
+++ b/docs/manual/conf.py
@@ -129,7 +129,7 @@ pygments_style = 'sphinx'
#modindex_common_prefix = []
# If true, keep warnings as "system message" paragraphs in the built documents.
-#keep_warnings = False
+keep_warnings = False
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False
--- a/docs/manual/c/unicode.rst
+++ b/docs/manual/c/unicode.rst
@@ -11,7 +11,6 @@ Unicode
.. doxygenfunction:: EncodeUTF8QuotedPrintable
.. doxygenfunction:: DecodeUTF8QuotedPrintable
.. doxygenfunction:: EncodeWithUTF8Alphabet
-.. doxygenfunction:: DecodeWithUTF8Alphabet
.. doxygenfunction:: DecodeHexUnicode
.. doxygenfunction:: EncodeHexUnicode
.. doxygenfunction:: mywstrncmp
@@ -20,5 +19,3 @@ Unicode
.. doxygenfunction:: EncodeUTF8
.. doxygenfunction:: DecodeUTF8
.. doxygenfunction:: DecodeHexBin
-.. doxygenfunction:: EncodeWithUnicodeAlphabet
-.. doxygenfunction:: DecodeWithUnicodeAlphabet
|