[pygccxml-commit] SF.net SVN: pygccxml: [464] pydsc_dev/pydsc.py
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2006-08-24 12:08:08
|
Revision: 464 Author: roman_yakovenko Date: 2006-08-24 05:07:58 -0700 (Thu, 24 Aug 2006) ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=464&view=rev Log Message: ----------- fixing documentation Modified Paths: -------------- pydsc_dev/pydsc.py Modified: pydsc_dev/pydsc.py =================================================================== --- pydsc_dev/pydsc.py 2006-08-24 10:55:11 UTC (rev 463) +++ pydsc_dev/pydsc.py 2006-08-24 12:07:58 UTC (rev 464) @@ -34,32 +34,43 @@ more complex example ( taken from pygccxml project ): import pydsc -#test only pygccxml -#package_directory defined earlier -pydsc.doc_checker.filter.append( package_directory ) -pydsc.doc_checker.filter_type = pydsc.FILTER_TYPE.INCLUDE -# -map( pydsc.doc_checker.speller.ignore_always - , [ 'org' - , 'http' - , 'bool' - , 'str' - , 'www' - , 'param' - , 'txt' - , 'decl' - , 'decls' - , 'namespace' - , 'enum' - , 'const' - , 'GCC' - , 'xcc' - , 'TODO' - , 'typedef' - , 'os' - , 'normcase' - , 'normpath' ] ) - +#check only pygccxml package +pydsc.include( r'D:\pygccxml_sources\sources\pygccxml_dev' ) +pydsc.ignore( [ 'Yakovenko' + , 'Bierbaum' + , 'org' + , 'http' + , 'bool' + , 'str' + , 'www' + , 'param' + , 'txt' + , 'decl' + , 'decls' + , 'namespace' + , 'namespaces' + , 'enum' + , 'const' + , 'GCC' + , 'xcc' + , 'TODO' + , 'typedef' + , 'os' + , 'normcase' + , 'normpath' + , 'scopedef' + , 'ira'#part of Matthias mail address + , 'uka'#part of Matthias mail address + , 'de'#part of Matthias mail address + , 'dat'#file extension of directory cache + , 'config'#parameter description + , 'gccxml'#parameter description + , 'Py++' + , 'pygccxml' + , 'calldef' + , 'XXX' + , 'wstring' + , 'py' ] ) """ __version__ = '0.2' #current version This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |