Ignore:
Timestamp:
Oct 25, 2013 2:24:22 PM (12 years ago)
Author:
toby
Message:

add import and export routines to sphinx

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/sphinxdocs/find_undoc.py ΒΆ

    r1112 r1123  
    2222                     
    2323# loop over python files referenced in subversion
    24 proc = sp.Popen(["svn","list",os.path.join(loc,'..')],stdout=sp.PIPE)
     24proc = sp.Popen(["svn","list",
     25                 os.path.join(loc,'..'),
     26                 os.path.join(loc,'..','exports'),
     27                 os.path.join(loc,'..','imports'),
     28                 ],stdout=sp.PIPE)
    2529undoc = []
    2630for fil in proc.stdout.readlines():
Note: See TracChangeset for help on using the changeset viewer.