X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2ce174fe8395ed8a4871f9532997c0147739af6c..af72ee01a6a0c01b1a67dc3095f952fd8ab1dd42:/docs/find-missing.py diff --git a/docs/find-missing.py b/docs/find-missing.py index 6a79f21637..f1e9b72c26 100755 --- a/docs/find-missing.py +++ b/docs/find-missing.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 # -*- coding: utf-8 -*- -# Copyright (c) 2019-2020. The SimGrid Team. All rights reserved. +# Copyright (c) 2019-2021. The SimGrid Team. All rights reserved. # This program is free software; you can redistribute it and/or modify it # under the terms of the license (GNU LGPL) which comes with this package. @@ -30,8 +30,6 @@ xml_files = [ 'build/xml/classsimgrid_1_1s4u_1_1ConditionVariable.xml', 'build/xml/classsimgrid_1_1s4u_1_1Disk.xml', 'build/xml/classsimgrid_1_1s4u_1_1Engine.xml', - 'build/xml/classsimgrid_1_1s4u_1_1ExecPar.xml', - 'build/xml/classsimgrid_1_1s4u_1_1ExecSeq.xml', 'build/xml/classsimgrid_1_1s4u_1_1Exec.xml', 'build/xml/classsimgrid_1_1s4u_1_1Host.xml', 'build/xml/classsimgrid_1_1s4u_1_1Io.xml', @@ -41,6 +39,8 @@ xml_files = [ 'build/xml/classsimgrid_1_1s4u_1_1NetZone.xml', 'build/xml/classsimgrid_1_1s4u_1_1Semaphore.xml', 'build/xml/classsimgrid_1_1s4u_1_1VirtualMachine.xml', + 'build/xml/classsimgrid_1_1xbt_1_1signal_3_01R_07P_8_8_8_08_4.xml', + 'build/xml/namespacesimgrid_1_1s4u_1_1this__actor.xml', 'build/xml/actor_8h.xml', 'build/xml/barrier_8h.xml', 'build/xml/cond_8h.xml', @@ -162,6 +162,8 @@ for arg in xml_files: #print ("compoundname {}".format(compoundname)) elif elem.attrib["kind"] == "file": compoundname = "" + elif elem.attrib["kind"] == "namespace": + compoundname = elem.find("compoundname").text else: print("Element {} is of kind {}".format(elem.attrib["id"], elem.attrib["kind"]))