Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement DDXMLNode nodesForXPath:namespaceMappings:error. #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Apr 28, 2013

  1. Implement DDXMLNode nodesForXPath:namespaceMappings:error.

    This allows the caller to pass in an NSDictionary specifying the mapping
    from namespace prefix to namespace URL.  Namespace prefixes specified in
    the given XPath will then be resolved against that mapping.
    
    This allows callers to find nodes using default namespaces, e.g.
    <element xmlns='<schema URL>'>...</element>.  The caller must specify
    prefix=<schema URL> in namespaceMappings, and then can use prefix:element
    in the XPath.
    
    If namespaceMappings is nil, then the existing behavior is used
    (parsing the namespaces from the document node).  This works in the
    situation where the namespaces are all named explicitly, and all on the
    root node, but not in general.
    
    This addresses upstream issue robbiehanson#19, the second half of issue robbiehanson#20.
    Ewan Mellor committed Apr 28, 2013
    Configuration menu
    Copy the full SHA
    48701f1 View commit details
    Browse the repository at this point in the history