source: sasview/fittingview/docs/sphinx/genmods.py @ c2b0079

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since c2b0079 was 30d3a1b, checked in by Gervaise Alina <gervyh@…>, 13 years ago

edit doc

  • Property mode set to 100644
File size: 1.9 KB
Line 
1from __future__ import with_statement
2import os.path
3
4MODULE_TEMPLATE=""".. Autogenerated by genmods.py
5
6******************************************************************************
7%(name)s
8******************************************************************************
9
10:mod:`%(package)s.%(module)s`
11==============================================================================
12
13.. automodule:: %(package)s.%(module)s
14   :members:
15   :undoc-members:
16   :inherited-members:
17   :show-inheritance:
18   :special-members:
19   :private-members:
20
21"""
22
23INDEX_TEMPLATE=""".. Autogenerated by genmods.py
24
25.. _api-index:
26
27##############################################################################
28   %(package_name)s
29##############################################################################
30
31.. only:: html
32
33   :Release: |version|
34   :Date: |today|
35
36.. toctree::
37
38   %(rsts)s
39"""
40
41
42
43def genfiles(package, package_name, modules, dir='api'):
44
45    if not os.path.exists(dir):
46        os.makedirs(dir)
47
48    for module,name in modules:
49        with open(os.path.join(dir,module+'.rst'), 'w') as f:
50            f.write(MODULE_TEMPLATE%locals())
51
52    rsts = "\n   ".join(module+'.rst' for module,name in modules)
53    with open(os.path.join(dir,'index.rst'),'w') as f:
54        f.write(INDEX_TEMPLATE%locals())
55
56
57modules = []
58path = os.path.dirname(os.path.join('..', '..', 'fittingview'))
59path = os.path.join(path, 'src', 'sans','perspectives', 'fitting')
60list = os.listdir(path)
61
62for item in list:
63    toks = os.path.splitext(os.path.basename(item))
64    if toks[1]=='.py' and toks[0] not in ["__init__"]:
65        exec "module = ('%s', '%s')"%(toks[0], toks[0])
66        modules.append(module)
67
68package ='sans.perspectives.fitting'
69package_name ='Reference'
70
71if __name__ == "__main__":
72    genfiles(package, package_name, modules, dir='api/perspectives/fitting')
73
74    print "Sphinx: generate .rst files complete..."
75   
Note: See TracBrowser for help on using the repository browser.