X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..fbfd34bce9d8db2ae29a6a6e62b1e712cbe60491:/docs/find-missing.py diff --git a/docs/find-missing.py b/docs/find-missing.py index 40005325b9..c491e38253 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. @@ -39,6 +39,7 @@ 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', @@ -191,7 +192,7 @@ for arg in xml_files: print ("member {}::{} is of kind {}".format(compoundname, name, kind)) # Forget about the declarations that are done in the RST -with os.popen('grep autodoxymethod:: find-missing.ignore source/*rst|sed \'s/^.*autodoxymethod:: //\'') as pse: +with os.popen('grep doxygenfunction:: find-missing.ignore source/*rst|sed \'s/^.*doxygenfunction:: //\'') as pse: for line in (l.strip() for l in pse): (klass, obj, args) = (None, None, None) if "(" in line: @@ -237,7 +238,7 @@ with os.popen('grep autodoxyvar:: find-missing.ignore source/*rst|sed \'s/^.*aut for obj in sorted(doxy_funs): for meth in sorted(doxy_funs[obj]): for args in sorted(doxy_funs[obj][meth]): - print(".. autodoxymethod:: {}::{}{}".format(obj, meth, args)) + print(".. doxygenfunction:: {}::{}{}".format(obj, meth, args)) for obj in doxy_vars: for meth in sorted(doxy_vars[obj]):