X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7fd8e8ffb447edb19f32e3200a7dbef3d83138b6..8816765fafedb6fe7a30a663d1fd2eb3955c06f5:/tools/simgrid_update_xml.pl diff --git a/tools/simgrid_update_xml.pl b/tools/simgrid_update_xml.pl index 3980939a64..31dd44d414 100755 --- a/tools/simgrid_update_xml.pl +++ b/tools/simgrid_update_xml.pl @@ -5,7 +5,7 @@ eval 'exec perl -S $0 ${1+"$@"}' # This script updates the simgrid XML file passed as argument (modification in place) # It is built to do the conversion incrementally. -# Copyright (c) 2006-2018. The SimGrid Team. +# Copyright (c) 2006-2019. The SimGrid Team. # All rights reserved. # # This program is free software; you can redistribute it and/or modify it @@ -123,7 +123,7 @@ Units are now mandatory in attributes. USE THE SCRIPT sg_xml_unit_converter.py T =back -=item B Introduced in SimGrid 3.16 (this is the current version) +=item B Introduced in SimGrid 3.16 (this is the current version). =over 4 @@ -146,6 +146,10 @@ Rename a few tags, but in a backward-compatible manner: the old names are still Rename the FULLDUPLEX sharing into SPLITDUPLEX. +=item + +In and , rename the 'availability_file' atribute into 'speed_file'. + =back =back @@ -156,7 +160,7 @@ Rename the FULLDUPLEX sharing into SPLITDUPLEX. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2006-2018. The SimGrid Team. All rights reserved. +Copyright (c) 2006-2019. The SimGrid Team. All rights reserved. This program is free software; you may redistribute it and/or modify it under the terms of GNU LGPL (v2.1) license. @@ -257,6 +261,7 @@ while (defined($line = )) { $line =~ s/\bprocess\b/actor/g; } $line =~ s/\bFULLDUPLEX\b/SPLITDUPLEX/g; + $line =~ s/\bavailability_file\b/speed_file/g; $output_string .= "$line\n"; }