Boost logo

Boost-Commit :

From: grafikrobot_at_[hidden]
Date: 2007-11-28 15:24:17


Author: grafik
Date: 2007-11-28 15:24:17 EST (Wed, 28 Nov 2007)
New Revision: 41440
URL: http://svn.boost.org/trac/boost/changeset/41440

Log:
Fix for latest Doxygen namespace file names. And support for method groups. From Samuel Debionne.
Text files modified:
   trunk/tools/build/v2/tools/doxproc.py | 10 ++++++++--
   1 files changed, 8 insertions(+), 2 deletions(-)

Modified: trunk/tools/build/v2/tools/doxproc.py
==============================================================================
--- trunk/tools/build/v2/tools/doxproc.py (original)
+++ trunk/tools/build/v2/tools/doxproc.py 2007-11-28 15:24:17 EST (Wed, 28 Nov 2007)
@@ -530,6 +530,12 @@
     def _translate_sectiondef_private_func( self, sectiondef, target=None, **kwargs ):
         return self._translate_sectiondef_func_(sectiondef,
             name='private member functions',target=target,**kwargs)
+
+ #~ Translate:
+ #~ <sectiondef kind="user-defined"><header>...</header>...</sectiondef>
+ def _translate_sectiondef_user_defined( self, sectiondef, target=None, **kwargs ):
+ return self._translate_sectiondef_func_(sectiondef,
+ name=self._getChildData('header', root=sectiondef),target=target,**kwargs)
     
     #~ Translate:
     #~ <memberdef kind="typedef" id="?">
@@ -829,11 +835,11 @@
     #~ and definitions so that lookup is unambiguous when reading in the definitions.
     namespace_files = filter(
         lambda x:
- os.path.basename(x).startswith('namespace_'),
+ os.path.basename(x).startswith('namespace'),
         input)
     decl_files = filter(
         lambda x:
- not os.path.basename(x).startswith('namespace_') and not os.path.basename(x).startswith('_'),
+ not os.path.basename(x).startswith('namespace') and not os.path.basename(x).startswith('_'),
         input)
     for dox in namespace_files:
         #~ print '--|',os.path.basename(dox)


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk