Index: /trunk/src/find_file_series.m
===================================================================
--- /trunk/src/find_file_series.m	(revision 1010)
+++ /trunk/src/find_file_series.m	(revision 1011)
@@ -53,5 +53,5 @@
 
 %% check for particular file types: images, movies, civ data
-if isfield(FileInfo,'FileIndexing') && strcmp(FileInfo.FileIndexing,'on')
+%if isfield(FileInfo,'FileIndexing') && strcmp(FileInfo.FileIndexing,'on')
     [RootPath,SubDir,RootFile,i1_input,i2_input,j1_input,j2_input,FileExt,NomType]=fileparts_uvmat(fullfileinput);
     %     if ~isempty(regexp(SubDir,'^level\d+$')) && exist([RootPath '.xml'],'file')
@@ -63,17 +63,17 @@
     j2_series=zeros(1,1,1);
     checkfileindexing=1;
-else % no file indexing
-    [PathDir,RootFile]=fileparts(fullfileinput);
-    [RootPath,SubDir,DirExt]=fileparts(PathDir);
-    SubDir=[SubDir DirExt];% include part after . in the name (considered as a file extension)
-    NomType='*';
-    i1_series=[];i2_series=[];j1_series=[];j2_series=[];
-    i1_input=1;i2_input=[];j1_input=[];j2_input=[];
-    if exist(fullfileinput,'file')~=2
-        RootFile='';
-        return
-    end
-    checkfileindexing=0;
-end
+%else % no file indexing
+%     [PathDir,RootFile]=fileparts(fullfileinput);
+%     [RootPath,SubDir,DirExt]=fileparts(PathDir);
+%     SubDir=[SubDir DirExt];% include part after . in the name (considered as a file extension)
+%     NomType='*';
+%     i1_series=[];i2_series=[];j1_series=[];j2_series=[];
+%     i1_input=1;i2_input=[];j1_input=[];j2_input=[];
+%     if exist(fullfileinput,'file')~=2
+%         RootFile='';
+%         return
+%     end
+%     checkfileindexing=0;
+%end
 if ~exist(FilePath,'dir')
     return % don't go further if the dir path does not exist
@@ -173,39 +173,5 @@
             end
         end
-        %         if strcmp(NomType,'level')
-        %             star_string=[RootFile '*' FileExt];
-        %             detect_string=['^' RootFile '(?<i1>\d+)' FileExt '$'];%string used in regexp to detect file indices
-        %             wd=pwd;%current working directory
-        %             cd (FilePath)% move to the local dir to save time in the operation dir.
-        %             dirpair=dir(star_string);% look for relevant files in the file directory
-        %             cd(wd)% back to the working directory
-        %             nbpair=numel(dirpair);
-        %             i1_series=zeros(1,nbpair);
-        %             if nbpair==0% no detected file
-        %                 RootFile='';
-        %             end
-        %             % scan the list of relevant files, extract the indices
-        %             for ifile=1:nbpair
-        %                 rr=regexp(dirpair(ifile).name,detect_string,'names');
-        %                 if ~isempty(rr)
-        %                     i1_series(ifile)=str2num(rr.i1);
-        %                 end
-        %             end
-        %             % look for the list of subfolders level#
-        %             cd (RootPath)% move to the local dir to save time in the operation dir.
-        %             dirpair=dir('level*');% look for relevant subfolders named with leve#
-        %             cd(wd)
-        %             [RootPath,SubDir]=fileparts(RootPath);
-        %             nbpair=numel(dirpair);
-        %             jfile=0;
-        %             for ifile=1:nbpair
-        %                 rr=regexp(dirpair(ifile).name,'^level(?<i1>\d+)$','names');
-        %                 if ~isempty(rr)
-        %                     jfile=jfile+1;
-        %                     j1_series(jfile)=str2num(rr.i1);
-        %                 end
-        %             end
-        %             [j1_series,i1_series]=meshgrid(j1_series,i1_series);
-        %         else
+  
         detect_string=['^' RootFile sep1 i1_str i2_str sep2 j1_str j2_str FileExt '$'];%string used in regexp to detect file indices
         %find the string used to extract the relevant files with the command dir
Index: /trunk/src/geometry_calib.m
===================================================================
--- /trunk/src/geometry_calib.m	(revision 1010)
+++ /trunk/src/geometry_calib.m	(revision 1011)
@@ -378,4 +378,5 @@
     SubDirBase=regexprep(OutPut.DataSeries{1},'\..+$','');
     XmlName=fullfile(OutPut.Campaign,OutPut.Experiment{ilist},[SubDirBase '.xml']);
+    dispmessage=' created with calibration parameters';
     % copy the xml file from the old location if appropriate, then update with the calibration parameters
     if ~exist(XmlName,'file') && ~isempty(SubDirBase)
@@ -383,4 +384,5 @@
         if exist(oldxml,'file')
             [success,message]=copyfile(oldxml,XmlName);%copy the old xml file to a new one with the new convention
+            dispmessage=' updated with calibration parameters';
         end
     end
@@ -389,5 +391,5 @@
         msgbox_uvmat('ERROR',errormsg);
     else
-        display([XmlName ' updated with calibration parameters'])
+        display([XmlName dispmessage])
         nbcalib=nbcalib+1;
     end
Index: /trunk/src/series.m
===================================================================
--- /trunk/src/series.m	(revision 1010)
+++ /trunk/src/series.m	(revision 1011)
@@ -642,5 +642,5 @@
         RootFile='';
     else %scan the input folder
-        InputTable{iview,3}(1)=[];
+        InputTable{iview,3}=regexprep(InputTable{iview,3},'^/','');
             [RootPath,~,RootFile,i1_series,i2_series,j1_series,j2_series,tild,FileInfo,MovieObject]=...
                 find_file_series(fullfile(InputTable{iview,1},InputTable{iview,2}),[InputTable{iview,3} InputTable{iview,4} InputTable{iview,5}]);
@@ -3612,5 +3612,6 @@
 ListViewLines=find(cellfun('isempty',PairString)==0); % find list of non empty pairs
 ListViewMenu=cell(numel(ListViewLines),1);
-iview=get(handles.PairString,'Value');
+%iview=get(handles.PairString,'Value');
+iview=[];
 for ilist=1:numel(ListViewLines)
     ListViewMenu{ilist}=num2str(ListViewLines(ilist));
