Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Apple renamed all their OSes
[simgrid.git] / tools / cmake / scripts / fixup_simgrid_dtd_l.pl
1 #! /usr/bin/env perl
2 use strict;
3
4 while (<>) {
5     # Skip the line " * Generated 2018/10/15 12:32:06." (Reproducible Builds)
6     next if (m#^ \* Generated [0-9/]* [0-9:]*#);
7
8     # Informative error message for files using a very old DTD
9     s#"Bad declaration %s."#"Bad declaration %s.\\nIf your are using a XML v3 file (check the version attribute in <platform>), please update it with tools/simgrid_update_xml.pl"#;
10
11     # Accept the alternative DTD location
12     if (/DOCTYPE.*simgrid.org.simgrid.dtd/)  {
13         print ' "<!DOCTYPE"{S}"platform"{S}SYSTEM{S}("\'http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\'"|"\\"http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\\""){s}">" SET(ROOT_surfxml_platform);'."\n"; 
14     }
15     
16     # Actually outputs the resulting line
17     print;
18 }