Changeset f4c0513 in sasview for docs/sphinx-docs
- Timestamp:
- Jun 29, 2015 4:13:16 PM (9 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 60d08fd
- Parents:
- eddf6af5 (diff), 5a73356a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- docs/sphinx-docs
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/sphinx-docs/build_sphinx.py
r9bf64f6 r2fb09c4 27 27 SASVIEW_BUILD = os.path.abspath(os.path.join(CURRENT_SCRIPT_DIR, "..", "..", "build", "lib"+platform)) 28 28 SASVIEW_DOCS = os.path.join(SASVIEW_BUILD, "doc") 29 SASVIEW_TEST = os.path.join(SASVIEW_SRC, "..", "sasview", "test", "media") 29 30 30 31 SPHINX_BUILD = os.path.join(CURRENT_SCRIPT_DIR, "build") … … 34 35 SPHINX_SOURCE_MODELS = os.path.join(SPHINX_SOURCE, "user", "models") 35 36 SPHINX_SOURCE_PERSPECTIVES = os.path.join(SPHINX_SOURCE, "user", "perspectives") 37 SPHINX_SOURCE_TEST = os.path.join(SPHINX_SOURCE, "test") 36 38 37 39 BUMPS_DOCS = os.path.join(CURRENT_SCRIPT_DIR, "..", "..", "..", … … 55 57 _remove_dir(SPHINX_SOURCE_MODELS) 56 58 _remove_dir(SPHINX_SOURCE_PERSPECTIVES) 59 _remove_dir(SPHINX_SOURCE_TEST) 57 60 58 61 def retrieve_user_docs(): … … 87 90 88 91 copy_tree(docs, dest_dir) 92 93 # Now pickup testdata_help.rst 94 # print os.path.abspath(SASVIEW_TEST) 95 # print os.path.abspath(SPHINX_SOURCE_TEST) 96 if os.path.exists(SASVIEW_TEST): 97 print "Found docs folder at ", SASVIEW_TEST 98 shutil.copytree(SASVIEW_TEST, SPHINX_SOURCE_TEST) 89 99 90 100 def retrieve_bumps_docs(): -
docs/sphinx-docs/source/conf.py
reddf6af5 rf4c0513 53 53 # General information about the project. 54 54 project = u'SasView' 55 copyright = u'201 3, The SasView Project'55 copyright = u'2015, The SasView Project' 56 56 57 57 # The version info for the project you're documenting, acts as replacement for … … 60 60 # 61 61 # The short X.Y version. 62 version = '3. 0.0'62 version = '3.1.0' 63 63 # The full version, including alpha/beta/rc tags. 64 release = '3. 0.0'64 release = '3.1.0' 65 65 66 66 # The language for content autogenerated by Sphinx. Refer to documentation -
docs/sphinx-docs/source/index.rst
r8042dbb r5a73356a 4 4 contain the root `toctree` directive. 5 5 6 SasView Documentation 7 ===================== 6 SasView Documentation Index 7 =========================== 8 8 9 9 .. toctree:: 10 10 :maxdepth: 1 11 11 12 Model Documentation <user/models/model_functions>13 14 12 User Documentation <user/user> 15 13 -
docs/sphinx-docs/source/user/user.rst
r28812b8 r2e5ca08 1 User Documentation 2 ================== 1 SasView User Documentation 2 ========================== 3 4 .. note:: In Windows use [Alt]-[Cursor left] to return to the previous page 3 5 4 6 .. toctree:: … … 37 39 Python Shell Tool <perspectives/calculator/python_shell_help> 38 40 39 Test Data < test/testdata.rst>41 Test Data <../test/testdata_help.rst>
Note: See TracChangeset
for help on using the changeset viewer.