- Timestamp:
- Jun 28, 2015 11:30:09 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:
- aceae8c
- Parents:
- 22d92da (diff), a15e754 (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:
- src/sas
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/guiframe/gui_manager.py
r22d92da r2d707e3 1303 1303 if menu_list: 1304 1304 for (menu, name) in menu_list: 1305 print "[%s]" % name1306 1305 self._menubar.Replace(pos, menu, name) 1307 1306 self._applications_menu_name = name -
src/sas/models/media/model_functions.rst
r5e880fe1 ree9fa94 20 20 21 21 22 .. note:: The contents of this document are awaiting proof reading. Feb2015 22 .. note:: The contents of this document are presented in good faith and are 23 believed to be mostly correct and accurate, however they have not 24 yet been rigorously checked for errors. June2015 23 25 24 26 … … 83 85 ======================= 84 86 85 Contents86 --------87 1. Background_88 89 2. Model_ Functions90 91 2.1 Shape-based_ Functions92 93 2.2 Shape-independent_ Functions94 95 2.3 Structure-factor_ Functions96 97 2.4 Customised_ Functions98 99 3. References_100 101 102 103 .. ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ104 105 106 107 87 .. _Background: 108 88 … … 290 270 - sph_bessel_jn_ 291 271 272 Also see the documentation on :ref:`Adding_your_own_models` under Fitting Data. 273 292 274 293 275 -
src/sas/perspectives/fitting/pagestate.py
racf8e4a5 ra15e754 545 545 paramval_string += CENTRE % param + "\n" 546 546 547 text_string = "\n\n\n" + title + "\n\n" + file + \ 548 "\n" + q_name + \ 549 "\n" + chi2 + \ 550 "\n\n" + paramval 547 text_string = "\n\n\n%s\n\n%s\n%s\n%s\n\n%s" % (title, file, q_name, chi2, paramval) 551 548 552 549 title_name = self._check_html_format(title_name) -
src/sas/perspectives/fitting/report_dialog.py
r2f4b430 ra15e754 44 44 self.report_html = self.report_list[0] % \ 45 45 "memory:img_fit0.png" 46 elif len(self.report_list ) == 2:46 elif len(self.report_list[2]) == 2: 47 47 self.report_html = self.report_list[0] % \ 48 48 ("memory:img_fit0.png",
Note: See TracChangeset
for help on using the changeset viewer.