Update opolka/ScoDoc from ScoDoc/ScoDoc #2

Merged
opolka merged 1272 commits from ScoDoc/ScoDoc:master into master 2024-05-27 09:11:04 +02:00
Showing only changes of commit 4985182b9a - Show all commits

View File

@ -212,8 +212,10 @@ class ModuleTag(ScoTag):
# API
def module_tag_search(term):
# TODO placer dans la vraie API et ne plus utiliser sco_publish
def module_tag_search(term: str | int):
"""List all used tag names (for auto-completion)"""
term = "" if term is None else str(term)
# restrict charset to avoid injections
if not scu.ALPHANUM_EXP.match(term):
data = []