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

Use elementpath for finding via XPath (2.0) #204

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Commits on Oct 5, 2020

  1. Configuration menu
    Copy the full SHA
    42da47d View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2020

  1. Configuration menu
    Copy the full SHA
    a0286a5 View commit details
    Browse the repository at this point in the history
  2. remove custom EXSLT namespace for regex support

    Originally using re:test() which is:
    boolean regexp:test(string, string, string?)
    http://exslt.org/regexp/functions/test/index.html
    
    In XPath 2.0 it's unnecessary to import 3rd-party stuff to use regex
    and the func signature matches. The trick is not to support "None"
    as "flags" or everything crashes.
    
    https://www.w3.org/TR/xpath-functions/#func-matches
    
    Also, this e-mail chain:
    https://exslt.fourthought.narkive.com/qFTvc1I2/exslt-for-xslt-2-0-a-new-life-for-exslt
    KeyWeeUsr committed Oct 8, 2020
    Configuration menu
    Copy the full SHA
    d3a322f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6434fa5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a0a02b5 View commit details
    Browse the repository at this point in the history