-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
1,336 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'] |
Oops, something went wrong.