mirror of
https://github.com/samba-team/samba.git
synced 2025-07-29 15: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:
|
if m:
|
||||||
name = m.group(1).replace(" ", "")
|
name = m.group(1).replace(" ", "")
|
||||||
yield name
|
yield name
|
||||||
|
m = re.match('<synonym>(.*)</synonym>', l)
|
||||||
|
if m:
|
||||||
|
name = m.group(1).replace(" ", "")
|
||||||
|
yield name
|
||||||
|
|
||||||
|
|
||||||
def get_implementation_parameters(sourcedir):
|
def get_implementation_parameters(sourcedir):
|
||||||
|
Reference in New Issue
Block a user