X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/67d66b0cf79b9fc02c0450f254584693dbf21d3b..e8d2ff8dab0cbf7a280fabcb27900c30ff6bb4fe:/docs/source/conf.py diff --git a/docs/source/conf.py b/docs/source/conf.py index 3ad1480a17..29120beff2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -32,11 +32,11 @@ if read_the_docs_build: # -- Project information ----------------------------------------------------- project = u'SimGrid' -copyright = u'2002-2021, The SimGrid Team' +copyright = u'2002-2022, The SimGrid Team' author = u'The SimGrid Team' # The short X.Y version -version = u'3.29.1' +version = u'3.32' # -- General configuration --------------------------------------------------- @@ -54,6 +54,7 @@ extensions = [ 'sphinx.ext.intersphinx', 'sphinx.ext.autosummary', 'sphinx_tabs.tabs', + 'sphinx_copybutton', 'javasphinx', 'showfile', ] @@ -64,6 +65,10 @@ todo_include_todos = True breathe_projects = {'simgrid': '../build/xml'} breathe_default_project = "simgrid" +# Setup the copybutton extension +copybutton_prompt_text = r">>> |\.\.\. |\$ |In \[\d*\]: | {2,5}\.\.\.: | {5,8}: " +copybutton_prompt_is_regexp = True + # Generate a warning for all a cross-reference (such as :func:`myfunc`) that cannot be found nitpicky = True nitpick_ignore = [ @@ -92,6 +97,8 @@ nitpick_ignore = [ ('cpp:identifier', 'kernel::resource::Action::State'), ('cpp:identifier', 'kernel::resource::LinkImpl'), ('cpp:identifier', 'kernel::resource::NetworkAction'), + ('cpp:identifier', 'kernel::resource::SplitDuplexLinkImpl'), + ('cpp:identifier', 'kernel::resource::StandardLinkImpl'), ('cpp:identifier', 'kernel::routing'), ('cpp:identifier', 'kernel::routing::NetPoint'), ('cpp:identifier', 'ns3'), @@ -102,6 +109,7 @@ nitpick_ignore = [ ('cpp:identifier', 's4u_Barrier'), ('cpp:identifier', 's4u_Comm'), ('cpp:identifier', 's4u_ConditionVariable'), + ('cpp:identifier', 's4u_Disk'), ('cpp:identifier', 's4u_Exec'), ('cpp:identifier', 's4u_File'), ('cpp:identifier', 's4u_Host'),