algorithm-nearest-in-parent: Difference between revisions
Jump to navigation
Jump to search
DavidJanes (talk | contribs) No edit summary |
(Algorithm was very badly coded.) |
||
| (5 intermediate revisions by 5 users not shown) | |||
| Line 5: | Line 5: | ||
p = start_element.parent | p = start_element.parent | ||
while p: | while p: | ||
for c in p.children: | |||
for c in | |||
if condition_test(c): | if condition_test(c): | ||
return c | |||
p = p.parent | p = p.parent | ||
return None | return None | ||
</nowiki | </nowiki></pre> | ||
Latest revision as of 01:44, 11 October 2010
This algorithm will return all the elements in a DOM that meet the condition_test by checking each node in the parent hierarchy above the start_element on up. Once a result is found at any level of the parent hierarchy, we stop checking.
def nearest_in_parent(start_element, condition_test):
p = start_element.parent
while p:
for c in p.children:
if condition_test(c):
return c
p = p.parent
return None