docs: rename pulse module files to fix doxygen \file name collisions

Prefix all pulse module source files with pulse- to give them unique
basenames, avoiding ambiguous \file suffix matching in doxygen when
identically-named files exist under src/modules/.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Wim Taymans 2026-06-26 12:32:59 +02:00
parent 2a88fb6ae8
commit c4b767cba1
37 changed files with 38 additions and 36 deletions

View file

@ -70,7 +70,8 @@ def main():
res = "\n * ".join(res)
text = text.replace("@pulse_module_options@", res)
if os.path.basename(fn).startswith("module-") and fn.endswith(".c"):
basename = os.path.basename(fn)
if (basename.startswith("module-") or basename.startswith("pulse-module-")) and fn.endswith(".c"):
text = re.sub(r"^ \* ##", r" * #", text, flags=re.M)
print("/** \\privatesection */")