Changes in / [3689302:05fb3d6b] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/sphinx-docs/build_sphinx.py
rb7a2ebfd r354524d 35 35 #/sasview-local-trunk/docs/sphinx-docs/build_sphinx.py 36 36 37 SASMODELS_SOURCE_MODELS = os.path.join(CURRENT_SCRIPT_DIR, "..", "..", "..", "sasmodels", " sasmodels", "models")38 SASMODELS_SOURCE_IMG = os.path.join(CURRENT_SCRIPT_DIR, "..", "..", "..", "sasmodels", " sasmodels", "models", "img")39 SASMODELS_DEST_MODELS = os.path.join( SASVIEW_SRC, "sas", "models", "media")37 SASMODELS_SOURCE_MODELS = os.path.join(CURRENT_SCRIPT_DIR, "..", "..", "..", "sasmodels", "doc", "model") 38 SASMODELS_SOURCE_IMG = os.path.join(CURRENT_SCRIPT_DIR, "..", "..", "..", "sasmodels", "doc", "model", "img") 39 SASMODELS_DEST_MODELS = os.path.join(CURRENT_SCRIPT_DIR, "..", "..", "src", "sas", "models", "media") 40 40 SASMODELS_DEST_IMG = os.path.join(CURRENT_SCRIPT_DIR, "..", "..", "src", "sas", "models", "media", "img") 41 41 … … 79 79 _remove_dir(SPHINX_SOURCE_TEST) 80 80 81 81 82 def retrieve_user_docs(): 82 83 """ … … 114 115 # print os.path.abspath(SASVIEW_TEST) 115 116 # print os.path.abspath(SPHINX_SOURCE_TEST) 117 print "=== Including Test Data Docs ===" 116 118 if os.path.exists(SASVIEW_TEST): 117 119 print "Found docs folder at ", SASVIEW_TEST 118 120 shutil.copytree(SASVIEW_TEST, SPHINX_SOURCE_TEST) 119 121 122 print "=== And the Sasmodels Docs ===" 120 123 # Make sure we have the relevant images for the new sasmodels documentation 121 124 if os.path.exists(SASMODELS_SOURCE_IMG): … … 128 131 shutil.copy(fromhere,tohere) 129 132 130 # And the relevant .py files with therst descriptions for the new sasmodels documentation133 # And the relevant rst descriptions for the new sasmodels documentation 131 134 if os.path.exists(SASMODELS_SOURCE_MODELS): 132 135 print "Found docs folder SASMODELS_SOURCE_MODELS at ", SASMODELS_SOURCE_MODELS … … 134 137 print "Found docs folder SASMODELS_DEST_MODELS at ", SASMODELS_DEST_MODELS 135 138 for files in os.listdir(SASMODELS_SOURCE_MODELS): 136 if files.endswith(". py"):139 if files.endswith(".rst"): 137 140 fromhere=os.path.join(SASMODELS_SOURCE_MODELS,files) 138 141 tohere=os.path.join(SASMODELS_DEST_MODELS,files)
Note: See TracChangeset
for help on using the changeset viewer.