[livestream] Parse SMIL (#2713)
This commit is contained in:
parent
b490b8849a
commit
cbf915f3f6
2 changed files with 64 additions and 10 deletions
|
@ -242,8 +242,8 @@ else:
|
|||
if sys.version_info >= (2,7):
|
||||
def find_xpath_attr(node, xpath, key, val):
|
||||
""" Find the xpath xpath[@key=val] """
|
||||
assert re.match(r'^[a-zA-Z]+$', key)
|
||||
assert re.match(r'^[a-zA-Z0-9@\s:._]*$', val)
|
||||
assert re.match(r'^[a-zA-Z-]+$', key)
|
||||
assert re.match(r'^[a-zA-Z0-9@\s:._-]*$', val)
|
||||
expr = xpath + u"[@%s='%s']" % (key, val)
|
||||
return node.find(expr)
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue