mirror of
https://github.com/samba-team/samba.git
synced 2025-07-27 07:42:04 +03:00
samba.tests.docs: Support synonyms.
This commit is contained in:
@ -46,6 +46,10 @@ def get_documented_parameters(sourcedir):
|
||||
if m:
|
||||
name = m.group(1).replace(" ", "")
|
||||
yield name
|
||||
m = re.match('<synonym>(.*)</synonym>', l)
|
||||
if m:
|
||||
name = m.group(1).replace(" ", "")
|
||||
yield name
|
||||
|
||||
|
||||
def get_implementation_parameters(sourcedir):
|
||||
|
Reference in New Issue
Block a user