X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/595e59c568ff5f8510de201bfd800951cdc2adcb..c0b9703e09d564d61f806d27bad1e85f05f8cbab:/tools/simgrid_update_xml.pl diff --git a/tools/simgrid_update_xml.pl b/tools/simgrid_update_xml.pl index 006c1d7758..75adbe294d 100755 --- a/tools/simgrid_update_xml.pl +++ b/tools/simgrid_update_xml.pl @@ -138,6 +138,16 @@ Rename a few tags, but in a backward-compatible manner: the old names are still =back +=item Other backward-compatible changes (old syntax is still accepted) for which we did not bump the DTD version: + +=over 4 + +=item + +Rename the FULLDUPLEX sharing into SPLITDUPLEX. + +=back + =back =head1 AUTHORS @@ -146,7 +156,7 @@ Rename a few tags, but in a backward-compatible manner: the old names are still =head1 COPYRIGHT AND LICENSE -Copyright (c) 2006-2016. The SimGrid Team. All rights reserved. +Copyright (c) 2006-2018. 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. @@ -246,6 +256,7 @@ while (defined($line = )) { $line =~ s/\bbypassAsRoute\b/bypassZoneRoute/g; $line =~ s/\bprocess\b/actor/g; } + $line =~ s/\bFULLDUPLEX\b/SPLITDUPLEX/g; $output_string .= "$line\n"; }