summaryrefslogtreecommitdiffstats
path: root/doc/tools/doxybuilder_funcs.py
diff options
context:
space:
mode:
authorBen Kaduk <kaduk@mit.edu>2012-12-12 10:36:18 -0500
committerBen Kaduk <kaduk@mit.edu>2012-12-14 11:02:36 -0500
commit311347e5e9d9208e2d341b8f8aed37791a4de090 (patch)
treef92ae67aea790eb98fc18706c55b6b6d096fe74f /doc/tools/doxybuilder_funcs.py
parent4dade44544dc838a2ca8929111c131b0dc5fe53a (diff)
downloadkrb5-311347e5e9d9208e2d341b8f8aed37791a4de090.tar.gz
krb5-311347e5e9d9208e2d341b8f8aed37791a4de090.tar.xz
krb5-311347e5e9d9208e2d341b8f8aed37791a4de090.zip
Make the doc build quieter
Don't print out every node processed (or not processed) in the doxygen-Sphinx bridge, nor print out a summary of how many types or functions were processed. While here, tell doxygen to be quiet in its output as well, and not print out each file that is generated. It still outputs warnings, though. ticket: 7495 (new) tags: pullup target_version: 1.11
Diffstat (limited to 'doc/tools/doxybuilder_funcs.py')
-rw-r--r--doc/tools/doxybuilder_funcs.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/tools/doxybuilder_funcs.py b/doc/tools/doxybuilder_funcs.py
index c9a128263f..c9b690185e 100644
--- a/doc/tools/doxybuilder_funcs.py
+++ b/doc/tools/doxybuilder_funcs.py
@@ -169,14 +169,12 @@ class DoxyFuncs(XML2AST):
def run(self):
for node in self.document:
self.process(node)
- print "\nnumber of functions processed ===> ",len(self.objects)
def process(self, node):
node_type = node.attributes['kind']
if node_type == 'function':
data = self._process_function_node(node)
else:
- print 'not processing node: %s' % node_type
return
if 'name' in data and data['name'] in exclude_funcs:
@@ -192,7 +190,6 @@ class DoxyFuncs(XML2AST):
def _process_function_node(self, node):
f_name = node.children['name'][0].getContent()
- print f_name
f_Id = node.attributes['id']
f_ret_type = self._process_type_node(node.children['type'][0])
f_brief = node.children['briefdescription'][0].getContent()