- Timestamp:
- May 1, 2018 8:45:08 AM (7 years ago)
- Branches:
- 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
- Children:
- b5cc06e
- Parents:
- 417c03f
- Location:
- src/sas
- Files:
-
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Calculators/DataOperationUtilityPanel.py
re90988c raed0532 110 110 documentation tree (after /doc/ ....". 111 111 """ 112 location = "/user/ sasgui/perspectives/calculator/data_operator_help.html"112 location = "/user/qtgui/Calculators/data_operator_help.html" 113 113 self.manager.showHelp(location) 114 114 -
src/sas/qtgui/Calculators/DensityPanel.py
re90988c raed0532 146 146 147 147 def displayHelp(self): 148 location = "/user/sasgui/perspectives/calculator/density_calculator_help.html"148 location = "/user/qtgui/Calculators/density_calculator_help.html" 149 149 self.manager.showHelp(location) 150 150 -
src/sas/qtgui/Calculators/GenericScatteringCalculator.py
re90988c raed0532 382 382 documentation tree (after /doc/ ....". 383 383 """ 384 location = "/user/ sasgui/perspectives/calculator/sas_calculator_help.html"384 location = "/user/qtgui/Calculators/sas_calculator_help.html" 385 385 self.manager.showHelp(location) 386 386 -
src/sas/qtgui/Calculators/KiessigPanel.py
re90988c raed0532 38 38 documentation tree (after /doc/ ....". 39 39 """ 40 location = "/user/ sasgui/perspectives/calculator/kiessig_calculator_help.html"40 location = "/user/qtgui/Calculators/kiessig_calculator_help.html" 41 41 self.manager.showHelp(location) 42 42 -
src/sas/qtgui/Calculators/ResolutionCalculatorPanel.py
re90988c raed0532 366 366 documentation tree (after /doc/ ....". 367 367 """ 368 location = "/user/ sasgui/perspectives/calculator/resolution_calculator_help.html"368 location = "/user/qtgui/Calculators/resolution_calculator_help.html" 369 369 self.manager.showHelp(location) 370 370 -
src/sas/qtgui/Calculators/SldPanel.py
re90988c raed0532 213 213 214 214 def displayHelp(self): 215 location = "/user/ sasgui/perspectives/calculator/sld_calculator_help.html"215 location = "/user/qtgui/Calculators/sld_calculator_help.html" 216 216 self.manager.showHelp(location) 217 217 -
src/sas/qtgui/Calculators/SlitSizeCalculator.py
re90988c raed0532 47 47 documentation tree (after /doc/ ....". 48 48 """ 49 location = "/user/ sasgui/perspectives/calculator/slit_calculator_help.html"49 location = "/user/qtgui/Calculators/slit_calculator_help.html" 50 50 self._parent.showHelp(location) 51 51 -
src/sas/qtgui/MainWindow/DataExplorer.py
rd4dac80 raed0532 137 137 Show the "Loading data" section of help 138 138 """ 139 tree_location = "/user/ sasgui/guiframe/data_explorer_help.html"139 tree_location = "/user/qtgui/MainWindow/data_explorer_help.html" 140 140 self.parent.showHelp(tree_location) 141 141 -
src/sas/qtgui/MainWindow/GuiManager.py
rd4dac80 raed0532 172 172 Open a local url in the default browser 173 173 """ 174 #location = os.path.join(GuiUtils.HELP_DIRECTORY_LOCATION, url) 174 175 location = GuiUtils.HELP_DIRECTORY_LOCATION + url 175 176 try: … … 779 780 TODO: use QNetworkAccessManager to assure _helpLocation is valid 780 781 """ 781 self.showHelp(self._helpLocation) 782 helpfile = "index.html" 783 self.showHelp(helpfile) 782 784 783 785 def actionTutorial(self): -
src/sas/qtgui/MainWindow/UnitTesting/DataExplorerTest.py
rc6fb57c raed0532 437 437 Test that the Help window gets shown correctly 438 438 """ 439 partial_url = " sasgui/guiframe/data_explorer_help.html"439 partial_url = "qtgui/MainWindow/data_explorer_help.html" 440 440 button1 = self.form.cmdHelp 441 441 button2 = self.form.cmdHelp_2 -
src/sas/qtgui/Perspectives/Corfunc/CorfuncPerspective.py
re90988c raed0532 312 312 """ 313 313 """ Display help when clicking on Help button """ 314 treeLocation = "/user/ sasgui/perspectives/corfunc/corfunc_help.html"314 treeLocation = "/user/qtgui/Perspectives/Corfunc/corfunc_help.html" 315 315 self.parent.showHelp(treeLocation) 316 316 -
src/sas/qtgui/Perspectives/Fitting/ComplexConstraint.py
r725d9c06 raed0532 202 202 try: 203 203 help_location = GuiUtils.HELP_DIRECTORY_LOCATION + \ 204 "/user/ sasgui/perspectives/fitting/fitting_help.html#simultaneous-fits-with-constraints"204 "/user/qtgui/Perspectives/Fitting/fitting_help.html#simultaneous-fits-with-constraints" 205 205 webbrowser.open('file://' + os.path.realpath(help_location)) 206 206 except AttributeError: -
src/sas/qtgui/Perspectives/Fitting/ConstraintWidget.py
rd4dac80 raed0532 230 230 Show the "Fitting" section of help 231 231 """ 232 tree_location = "/user/ sasgui/perspectives/fitting/"232 tree_location = "/user/qtgui/Perspectives/Fitting/" 233 233 234 234 helpfile = "fitting_help.html#simultaneous-fit-mode" -
src/sas/qtgui/Perspectives/Fitting/FittingOptions.py
re90988c raed0532 158 158 """ 159 159 tree_location = GuiUtils.HELP_DIRECTORY_LOCATION 160 tree_location += "/user/ sasgui/perspectives/fitting/"160 tree_location += "/user/qtgui/Perspectives/Fitting/" 161 161 162 162 # Actual file anchor will depend on the combo box index -
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
rd4dac80 raed0532 1180 1180 Show the "Fitting" section of help 1181 1181 """ 1182 tree_location = "/user/ sasgui/perspectives/fitting/"1182 tree_location = "/user/qtgui/Perspectives/Fitting/" 1183 1183 1184 1184 # Actual file will depend on the current tab -
src/sas/qtgui/Perspectives/Fitting/GPUOptions.py
re90988c raed0532 170 170 """ 171 171 help_location = GuiUtils.HELP_DIRECTORY_LOCATION 172 help_location += "/user/ sasgui/perspectives/fitting/gpu_setup.html"172 help_location += "/user/qtgui/Perspectives/Fitting/gpu_setup.html" 173 173 help_location += "#device-selection" 174 174 # Display the page in default browser -
src/sas/qtgui/Perspectives/Fitting/MultiConstraint.py
r3b3b40b raed0532 142 142 try: 143 143 help_location = GuiUtils.HELP_DIRECTORY_LOCATION + \ 144 "/user/ sasgui/perspectives/fitting/fitting_help.html#simultaneous-fits-with-constraints"144 "/user/qtgui/Perspectives/Fitting/fitting_help.html#simultaneous-fits-with-constraints" 145 145 webbrowser.open('file://' + os.path.realpath(help_location)) 146 146 except AttributeError: -
src/sas/qtgui/Perspectives/Invariant/InvariantPerspective.py
re90988c raed0532 429 429 def onHelp(self): 430 430 """ Display help when clicking on Help button """ 431 treeLocation = "/user/ sasgui/perspectives/invariant/invariant_help.html"431 treeLocation = "/user/qtgui/Perspectives/Invariant/invariant_help.html" 432 432 self.parent.showHelp(treeLocation) 433 433 -
src/sas/qtgui/Perspectives/Inversion/InversionPerspective.py
re90988c raed0532 372 372 Open the P(r) Inversion help browser 373 373 """ 374 tree_location = "/user/ sasgui/perspectives/pr/pr_help.html"374 tree_location = "/user/qtgui/Perspectives/Inversion/pr_help.html" 375 375 376 376 # Actual file anchor will depend on the combo box index -
src/sas/qtgui/Plotting/SlicerParameters.py
re90988c raed0532 86 86 Display generic data averaging help 87 87 """ 88 location = "/user/ sasgui/guiframe/graph_help.html#d-data-averaging"88 location = "/user/qtgui/MainWindow/graph_help.html#d-data-averaging" 89 89 self.parent.showHelp(location) 90 90 -
src/sas/qtgui/Utilities/AddMultEditor.py
r017b285 raed0532 273 273 try: 274 274 help_location = GuiUtils.HELP_DIRECTORY_LOCATION + \ 275 "/user/ sasgui/perspectives/fitting/fitting_help.html#sum-multi-p1-p2"275 "/user/qtgui/Perspectives/Fitting/fitting_help.html#sum-multi-p1-p2" 276 276 webbrowser.open('file://' + os.path.realpath(help_location)) 277 277 except AttributeError: -
src/sas/qtgui/Utilities/GridPanel.py
rd4dac80 raed0532 170 170 """ 171 171 location = GuiUtils.HELP_DIRECTORY_LOCATION 172 url = "/user/ sasgui/perspectives/fitting/fitting_help.html#batch-fit-mode"172 url = "/user/qtgui/Perspectives/Fitting/fitting_help.html#batch-fit-mode" 173 173 try: 174 174 webbrowser.open('file://' + os.path.realpath(location+url)) -
src/sas/qtgui/Utilities/PluginManager.py
r3b8cc00 raed0532 136 136 Show the help page in the default browser 137 137 """ 138 location = "/user/ sasgui/perspectives/fitting/fitting_help.html#new-plugin-model"138 location = "/user/qtgui/Perspectives/Fitting/fitting_help.html#new-plugin-model" 139 139 self.parent.showHelp(location) 140 140 -
src/sas/qtgui/Utilities/TabbedModelEditor.py
rd4dac80 raed0532 329 329 documentation tree (after /doc/ ....". 330 330 """ 331 location = "/user/ sasgui/perspectives/fitting/plugin.html"331 location = "/user/qtgui/Perspectives/Fitting/plugin.html" 332 332 self.parent.showHelp(location) 333 333 -
src/sas/sasgui/guiframe/CategoryManager.py
r463e7ffc raed0532 340 340 from documentation_window import DocumentationWindow 341 341 342 _TreeLocation = "user/ sasgui/perspectives/fitting/fitting_help.html"342 _TreeLocation = "user/qtgui/Perspectives/Fitting/fitting_help.html" 343 343 _PageAnchor = "#category-manager" 344 344 _doc_viewer = DocumentationWindow(self, -1, _TreeLocation, _PageAnchor, -
src/sas/sasgui/perspectives/corfunc/corfunc_panel.py
- Property mode changed from 100755 to 100644
Note: See TracChangeset
for help on using the changeset viewer.