Skip to content

Commit

Permalink
v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels authored Nov 9, 2021
2 parents 12abe3d + dd7ba83 commit 4c16b6b
Show file tree
Hide file tree
Showing 12 changed files with 1,336 additions and 62 deletions.
51 changes: 51 additions & 0 deletions doc/_extensions/DocumentMember.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# ==============================================================================
# Authors: Patrick Lehmann
#
# Python Module:
#
# Description:
# ------------------------------------
# - TODO
#
# License:
# ==============================================================================
# Copyright 2007-2016 Patrick Lehmann - Dresden, Germany
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
#
from SphinxExtensions import DocumentMemberAttribute


def skip_member_handler(app, what, name, obj, skip, options):
# try:
# print("skip_member_handler: ", obj)
# except:
# print("skip_member_handler: ERROR")

try:
attributes = DocumentMemberAttribute.GetAttributes(obj)
if (len(attributes) > 0):
# print("*#"*20)
# try:
# print("skip_member_handler: ", obj)
# except:
# print("skip_member_handler: ERROR")

return not attributes[0].value
except:
pass
return None

def setup(app):
app.connect('autodoc-skip-member', skip_member_handler)
27 changes: 27 additions & 0 deletions doc/_extensions/autoapi/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 Carlos Jenkins <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from __future__ import unicode_literals, absolute_import
from __future__ import print_function, division

from .apinode import __doc__, APINode # noqa

__author__ = 'Carlos Jenkins'
__email__ = '[email protected]'
__version__ = '1.3.1'

__all__ = ['APINode']
Loading

0 comments on commit 4c16b6b

Please sign in to comment.