(get-sxml-item* list symbol) -> list
Acts as get-sxml-item, except that it returns all items identified by the given symbol, not just the first.
get-sxml-item* will accept an integer for an index-reference, in place of the symbol. However, in this case it will simply act as get-sxml-item.
Example:
>> (get-sxml-item* '(test (a . "test") (a . "foo") (b . "alpha")) 'a) :: ((a . "test") (a . "foo"))