Changeset 1039 for trunk/src


Ignore:
Timestamp:
May 1, 2018, 5:42:35 PM (6 years ago)
Author:
g7moreau
Message:
  • Rename ListDir? to dir_scan to have no file with capital letter at first letter
Location:
trunk/src
Files:
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/browse_data.m

    r1037 r1039  
    459459%     ListRecords=ListRecords(Value);
    460460% end
    461 % [ListDevices,ListRecords,ListXml,List]=ListDir(CurrentPath,ListExperiments,ListDevices,ListRecords);
     461% [ListDevices,ListRecords,ListXml,List]=dir_scan(CurrentPath,ListExperiments,ListDevices,ListRecords);
    462462% ListXml=get(handles.ListXml,'String');
    463463% Value=get(handles.ListXml,'Value');
  • trunk/src/check_files.m

    r1033 r1039  
    4949    'create_grid';...% called by the GUI geometry_calib to create a physical grid
    5050    'create_grid.fig';...% GUI corresponding to create_grid.m
     51    'dir_scan';... % scan the structure of the directory tree (for editxml.m)
    5152    'disp_uvmat';...% display a message using  msgbox_uvmat or on the log file in batch mode
    5253    'editxml';...% display and edit xml files using a xls schema
     
    7071    'interp2_uvmat';...% linearly interpolate an image or scalar defined on a regular grid
    7172    'keyboard_callback';... % function activated when a key is pressed on the keyboard
    72     'ListDir';... % scan the structure of the directory tree (for editxml.m)
    7373    'mask_proj';...% restrict input fields to a mask region, set to 0 outside
    7474    'mouse_down';% function activated when the mouse button is pressed on a figure (callback for 'WindowButtonDownFcn')
  • trunk/src/dir_scan.m

    r1038 r1039  
    1 %'ListDir': scan the structure of the directory tree (for browse_data.m)
     1%'dir_scan': scan the structure of the directory tree (for browse_data.m)
    22%------------------------------------------------------------------------
    3 % function [ListDevices,ListRecords,ListXml,List]=ListDir(CurrentPath,ListExperiments,ListDevices_in,ListRecords_in)
     3% function [ListDevices,ListRecords,ListXml,List]=dir_scan(CurrentPath,ListExperiments,ListDevices_in,ListRecords_in)
    44%
    55%
     
    3535%=======================================================================
    3636
    37 function [ListDevices,ListRecords,ListXml,List]=ListDir(CurrentPath,ListExperiments,ListDevices_in,ListRecords_in)
     37function [ListDevices,ListRecords,ListXml,List]=dir_scan(CurrentPath,ListExperiments,ListDevices_in,ListRecords_in)
    3838
    3939ListRecords={};
  • trunk/src/editxml.m

    r1037 r1039  
    10271027    ListRecords=ListRecords(Value);
    10281028end
    1029 [ListDevices,ListRecords,ListXml,List]=ListDir(CurrentPath,ListExperiments,ListDevices,ListRecords);
     1029[ListDevices,ListRecords,ListXml,List]=dir_scan(CurrentPath,ListExperiments,ListDevices,ListRecords);
    10301030ListXml=get(hhdataview.ListXml,'String');
    10311031Value=get(hhdataview.ListXml,'Value');
Note: See TracChangeset for help on using the changeset viewer.