-
Notifications
You must be signed in to change notification settings - Fork 83
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
libxml2 parsing options #88
Conversation
Current coverage is 59.65%@@ master #88 diff @@
==========================================
Files 30 30
Lines 1235 1249 +14
Methods 0 0
Messages 0 0
Branches 0 0
==========================================
+ Hits 733 745 +12
- Misses 502 504 +2
Partials 0 0
|
@@ -1,5 +1,5 @@ | |||
Package: xml2 | |||
Version: 0.1.2.9000 | |||
Version: 0.1.2.9200 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW I don't normally bother bumping this unless it's needed for a revdep.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was bumped by the original upstream commit, but good to know!
e70c13d
to
3f25fb6
Compare
I ended up exposing all of the libxml2 parsing options to the R side in 3f25fb6. They can be specified as a character vector of options to set. The option descriptions come from http://www.xmlsoft.org/html/libxml-parser.html#xmlParserOption |
This looks great |
e5fc442
to
9b1367d
Compare
A quick 'fix' to live dangerously with huge parse stacks.
9b1367d
to
26e1043
Compare
Continuation of #85
Fixes #62, #49