WIP: Expand the developer documentation #27

Draft
gremond wants to merge 22 commits from develop into developer_docs
Showing only changes of commit 085840449c - Show all commits

View file

@ -36,9 +36,9 @@ from .update import RougailUpgrade
from .object_model import CONVERT_OPTION
def tiramisu_display_name(kls) -> str:
def tiramisu_display_name(kls, subconfig) -> str:
"""Replace the Tiramisu display_name function to display path + description"""
doc = kls.impl_get_information("doc", None)
doc = kls._get_information(subconfig, "doc", None)
comment = f" ({doc})" if doc and doc != kls.impl_getname() else ""
return f"{kls.impl_getpath()}{comment}"