Changeset 2ece3851 in sasview for docs/sphinx-docs
- Timestamp:
- Feb 13, 2015 11:52:12 AM (10 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:
- 3e2ebbb
- Parents:
- 64c8fc1 (diff), f620870 (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 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/sphinx-docs/build_sphinx.py
r35bf493 rf620870 65 65 print "Found docs folder at \"%s\"." % docs 66 66 67 dest_dir_name = os.path.basename(os.path.dirname(docs)) 68 dest_dir = os.path.join(SPHINX_SOURCE, "user", dest_dir_name) 67 dest_dir_part = os.path.dirname(os.path.relpath(docs, SASVIEW_SRC)) 68 if os.sep in dest_dir_part: 69 dest_dir_part = dest_dir_part[dest_dir_part.index(os.sep) + 1:] 70 dest_dir = os.path.join(SPHINX_SOURCE, "user", dest_dir_part) 69 71 70 72 copy_tree(docs, dest_dir) -
docs/sphinx-docs/source/user/user.rst
ref325c7 r64c8fc1 12 12 Plotting Data/Models <guiframe/graph_help> 13 13 14 Fitting Perspective <fit ting/fitting_help>14 Fitting Perspective <fit/fitting_help> 15 15 16 16 P(r) Inversion Perspective <invariant/pr_help> … … 33 33 Generic Scattering Calculator Tool <calculator/sas_calculator_help> 34 34 35 Python Shell Tool 35 Python Shell Tool <perspectives/calculator/python_shell_help> 36 36 37 Image Viewer Tool 37 Image Viewer Tool <perspectives/calculator/image_viewer_help>
Note: See TracChangeset
for help on using the changeset viewer.