Changes in / [aa4b4f05:cf2e6b4] in sasview


Ignore:
Files:
2 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sascalc/dataloader/readers/ascii_reader.py

    rd2471870 r7d94915  
    172172                input_f.close() 
    173173                if not is_data: 
    174                     msg = "ascii_reader: x has no data" 
    175                     raise RuntimeError, msg 
     174                    return None 
    176175                # Sanity check 
    177176                if has_error_dy == True and not len(ty) == len(tdy): 
  • src/sas/sasgui/guiframe/local_perspectives/plotting/Plotter1D.py

    r29e872e r245ae18  
    6565        # context menu 
    6666        self._slicerpop = None 
     67 
    6768        self._available_data = [] 
    6869        self._symbol_labels = self.get_symbol_label() 
     
    731732                self.subplot.set_ylim(y_range) 
    732733                self.subplot.figure.canvas.draw_idle() 
    733                 self.is_zoomed = True 
    734734        d.Destroy() 
    735735 
  • src/sas/sasgui/perspectives/calculator/model_editor.py

    ra08b89b rcf1910f  
    632632        self.reader = None 
    633633        self.name = 'untitled' 
    634         self.overwrite_name = False 
     634        self.overwrite_name = True 
    635635        self.is_2d = False 
    636636        self.fname = None 
     
    684684        name_txt = wx.StaticText(self, -1, 'Function Name : ') 
    685685        overwrite_cb = wx.CheckBox(self, -1, "Overwrite existing plugin model of this name?", (10, 10)) 
    686         overwrite_cb.SetValue(False) 
     686        overwrite_cb.SetValue(True) 
    687687        overwrite_cb.SetToolTipString("Overwrite it if already exists?") 
    688688        wx.EVT_CHECKBOX(self, overwrite_cb.GetId(), self.on_over_cb) 
     689        #overwrite_cb.Show(False) 
    689690        self.name_tcl = wx.TextCtrl(self, -1, size=(PANEL_WIDTH * 3 / 5, -1)) 
    690691        self.name_tcl.Bind(wx.EVT_TEXT_ENTER, self.on_change_name) 
    691         self.name_tcl.SetValue('') 
     692        self.name_tcl.SetValue('MyFunction') 
    692693        self.name_tcl.SetFont(self.font) 
    693694        hint_name = "Unique Model Function Name." 
     
    946947        # First check for valid python name then if the name already exists 
    947948        if not name or not bool(re.match('^[A-Za-z0-9_]*$', name)): 
    948             msg = '"%s" '%name 
    949             msg += "is not a valid model name. Name must not be empty and \n" 
     949            msg = "is not a valid python name. Name must not be empty and \n" 
    950950            msg += "may include only alpha numeric or underline characters \n" 
    951951            msg += "and no spaces" 
     
    11521152 
    11531153        _TreeLocation = "user/sasgui/perspectives/fitting/fitting_help.html" 
    1154         _PageAnchor = "#new-plugin-model" 
     1154        _PageAnchor = "#New_Plugin_Model" 
    11551155        _doc_viewer = DocumentationWindow(self, -1, _TreeLocation, _PageAnchor, 
    11561156                                          "Plugin Model Editor Help") 
  • src/sas/sasgui/perspectives/invariant/media/invariant_help.rst

    r484141c rb64b87c  
    116116Academic Press, New York, 1982 
    117117 
    118 http://web.archive.org/web/20110824105537/http://physchem.kfunigraz.ac.at/sm/Service/Glatter_Kratky_SAXS_1982.zip 
     118http://physchem.kfunigraz.ac.at/sm/ 
    119119 
    120120.. ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ 
  • src/sas/sasgui/plottools/PlotPanel.py

    r198fa76 r1a8e2e8e  
    452452        """ 
    453453        self.cusor_line(event) 
    454         if self.gotLegend == 1 and self.leftdown: 
     454        if self.gotLegend == 1: 
    455455            self._on_legend_motion(event) 
    456456            return 
  • src/sas/sasgui/plottools/plottables.py

    r80f4684 r8abd96d  
    212212                self.color += plottable.colors() 
    213213                self.plottables[plottable] = self.color 
    214                 plottable.custom_color = self.color 
    215214 
    216215    def changed(self): 
  • test/sasdataloader/test/utest_ascii.py

    r3d29f26b r7d94915  
    9292        """ 
    9393        # Test .ABS file loaded as ascii 
    94         f = None 
    95         try: 
    96             f = self.loader.load("ascii_test_6.txt") 
     94        f = self.loader.load("ascii_test_6.txt") 
    9795        # The length of the data is 5 
    98         except: 
    99             self.assertEqual(f, None) 
     96        self.assertEqual(f, None) 
    10097         
    10198if __name__ == '__main__': 
Note: See TracChangeset for help on using the changeset viewer.