gen_index.py 534 字节
Newer Older
T
Tink_Y 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import os.path, time
import exceptions
import glob
import os
if __name__ == '__main__':
    
    file_object = open('index_cn.rst', 'w')
    file_object.write('''=============
API Reference
=============

..  toctree::
    :maxdepth: 1

''')
    file_object.write('    api_guides/index.rst'+'\n')
    file_object.write('    fluid_cn.rst'+'\n')
    for file_name in sorted(glob.glob("*.rst")):
        if file_name != ('index_cn.rst' and 'fluid_cn.rst'):
            file_object.write('    '+file_name + "\n")
    file_object.close( )