Skip to content
Snippets Groups Projects
Commit 74cb1a44 authored by jacques.grelet_ird.fr's avatar jacques.grelet_ird.fr
Browse files

update french and english manuals

parent 0f85b690
No related branches found
No related tags found
No related merge requests found
No preview for this file type
No preview for this file type
File deleted
No preview for this file type
No preview for this file type
......@@ -28,7 +28,7 @@ fprintf('\nREAD_XML_FILE\n'); tic;
% Open the file
% -------------
fd = fopen( file(self), 'rt' );
fd = fopen( filename, 'rt' );
if( fd == -1 )
warndlg( msg_error, 'XML error dialog');
sprintf('...cannot locate %s\n', filename);
......@@ -41,7 +41,7 @@ fprintf('...reading %s : ', filename);
h = hashtable;
%% parse le fichier XML
tree = xml_read( fileread( file( self ) ) );
tree = xml_read( fileread( filename ) );
% decode l'entete, a completer
%tsg.CYCLE_MESURE = tree.ENTETE.CYCLE_MESURE.LIBELLE;
......@@ -52,7 +52,7 @@ fclose(fd);
%% deuxieme lecture des donnees dans le fichier apres la balise <DATA>
% on lit la deuxieme ligne contenant les entetes des colonnes
fd = fopen( file(self), 'rt' );
fd = fopen( filename, 'rt' );
while ~feof(fd)
line = fgetl(fd);
[tok match] = regexp(line,'<(\w+)>','tokens');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment