mailr10431 - /1.3/scons/manuals.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on January 27, 2010 - 12:54:
Author: bugman
Date: Wed Jan 27 12:54:10 2010
New Revision: 10431

URL: http://svn.gna.org/viewcvs/relax?rev=10431&view=rev
Log:
Epydoc is now documenting everything!

The whitelist system of selected what to document was not working!  Too many 
packages are changing,
especially in the branches.  Therefore absolutely everything is now being 
documented, including the
test suite.  This will allow all new packages to be automatically documented.


Modified:
    1.3/scons/manuals.py

Modified: 1.3/scons/manuals.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/scons/manuals.py?rev=10431&r1=10430&r2=10431&view=diff
==============================================================================
--- 1.3/scons/manuals.py (original)
+++ 1.3/scons/manuals.py Wed Jan 27 12:54:10 2010
@@ -91,22 +91,6 @@
     # Set up the Epydoc configuration (adapted from 
http://epydoc.sourceforge.net/configfile.html).
     
###############################################################################################
 
-    # modules
-    #   The list of objects to document.
-    modules = ['relax',
-               '*.py',
-               'docs'+sep+'*.py',
-               'docs'+sep+'latex'+sep+'*.py',
-               'dx'+sep+'*.py',
-               'generic_fns'+sep+'*.py',
-               'generic_fns'+sep+'structure'+sep+'*.py',
-               'maths_fns'+sep+'*.py',
-               'prompt'+sep+'*.py',
-               'specific_fns'+sep+'*.py',
-               'test_suite'+sep+'[a-z]*.py',
-               'test_suite'+sep+'unit_tests'+sep+'unit_test_runner.py',
-               'scons'+sep+'*.py']
-
     # exclude
     #   The list of objects to exclude.
     exclude = []
@@ -262,9 +246,8 @@
     for name in exclude:
         epydoc_cmd = epydoc_cmd + ' --exclude=' + name
 
-    # Modules.
-    for module in modules:
-        epydoc_cmd = epydoc_cmd + ' ' + module
+    # Document all code!
+    epydoc_cmd = epydoc_cmd + ' *'
 
 
     # Execute Epydoc.




Related Messages


Powered by MHonArc, Updated Wed Jan 27 13:20:02 2010