Changeset 3ea9371 in sasview


Ignore:
Timestamp:
Jul 20, 2016 11:00:17 AM (8 years ago)
Author:
lewis
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, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
072b52c
Parents:
55775e8
Message:

Set sample ID to SASentry.Title to agree with Mantid output

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Vagrantfile

    r96032b3 r3ea9371  
    22# vi: set ft=ruby : 
    33 
    4 # This allows you to build sasview using vagrant  
     4# This allows you to build sasview using vagrant 
    55# for the moment you can build Ubuntu on any platform supported by vagrant 
    66# (Linux, Mac, Windows) 
    7 # You will need VirtualBox as well.  
     7# You will need VirtualBox as well. 
    88# Download pages: 
    99# http://www.vagrantup.com/downloads 
     
    2121  # Every Vagrant development environment requires a box. You can search for 
    2222  # boxes at https://atlas.hashicorp.com/search. 
    23   config.vm.box = "ubuntu1404" 
    24   config.vm.box_url = "https://github.com/hnakamur/packer-templates/releases/download/v1.0.2/ubuntu-14-04-x64-virtualbox.box" 
     23  config.vm.box = "ubuntu/trusty64" 
    2524  #config.vm.box = "fedora19" 
    2625  #config.vm.box_url = "https://dl.dropboxusercontent.com/u/86066173/fedora-19.box" 
    2726  #config.vm.box = "fedora20" 
    2827  #config.vm.box_url = "https://dl.dropboxusercontent.com/u/15733306/vagrant/fedora-20-netinst-2014_01_05-minimal-puppet-guestadditions.box" 
     28 
     29  config.ssh.password = "vagrant" 
    2930 
    3031  # Provider-specific configuration so you can fine-tune various 
     
    3940     vb.memory = "1024" 
    4041     vb.cpus = "1" 
     42     vb.gui = true 
    4143  end 
    4244  # 
  • src/sas/sasgui/perspectives/file_converter/converter_panel.py

    r55775e8 r3ea9371  
    106106            return 
    107107 
     108        self.metadata['sample'].ID = self.metadata['title'] 
     109 
    108110        try: 
    109111            if self.data_type == 'ascii': 
Note: See TracChangeset for help on using the changeset viewer.