Skip to content
Snippets Groups Projects
Commit c8b73eb7 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

print full namespace in API doc for each function, to make the doc easier to search

parent 51cb13c9
No related branches found
No related tags found
No related merge requests found
...@@ -1421,7 +1421,7 @@ class API: ...@@ -1421,7 +1421,7 @@ class API:
f.write("@section Namespace @code{" + path + "}: " + module.doc + "\n\n"); f.write("@section Namespace @code{" + path + "}: " + module.doc + "\n\n");
f.write("@ftable @code\n"); f.write("@ftable @code\n");
for rtype, name, args, doc, special in module.fs: for rtype, name, args, doc, special in module.fs:
f.write("@item " + name + "\n"); f.write("@item " + path + '/' + name + "\n");
tdoc = doc.replace("`", "@code{").replace("'", "}") tdoc = doc.replace("`", "@code{").replace("'", "}")
f.write("\n".join(textwrap.wrap(tdoc, 80)) + "\n\n") f.write("\n".join(textwrap.wrap(tdoc, 80)) + "\n\n")
f.write("@table @asis\n"); f.write("@table @asis\n");
......
This diff is collapsed.
This diff is collapsed.
# build image (add "--build-arg REBUILD_GMSH=yes" to rebuild the Gmsh lib) # build image (add "--build-arg REBUILD_GMSH=123" to rebuild the Gmsh lib, where
# 123 must be different from build to build)
docker build -f Dockerfile.ubuntu18.10 -t onelab/ubuntu18.10 --build-arg REBUILD_GMSH=yes . docker build -f Dockerfile.ubuntu18.10 -t onelab/ubuntu18.10 --build-arg REBUILD_GMSH=123 .
docker build -f Dockerfile.debian.wheezy.64bit -t onelab/debian.wheezy.64bit --build-arg REBUILD_GMSH=yes . docker build -f Dockerfile.debian.wheezy.64bit -t onelab/debian.wheezy.64bit --build-arg REBUILD_GMSH=123 .
docker build -f Dockerfile.debian.wheezy.32bit -t onelab/debian.wheezy.32bit --build-arg REBUILD_GMSH=yes . docker build -f Dockerfile.debian.wheezy.32bit -t onelab/debian.wheezy.32bit --build-arg REBUILD_GMSH=123 .
# push image to docker-hub # push image to docker-hub
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment