• Show log

    Commit

  • Hash : 4f329dc5
    Author : Nick Wellnhofer
    Date : 2024-07-10T03:27:47

    parser: Implement xmlCtxtParseContent
    
    This implements xmlCtxtParseContent, a better alternative to
    xmlParseInNodeContext or xmlParseBalancedChunkMemory. It accepts a
    parser context and a parser input, making it a lot more versatile.
    
    xmlParseInNodeContext is now implemented in terms of
    xmlCtxtParseContent. This makes sure that xmlParseInNodeContext never
    modifies the target document, improving thread safety.
    xmlParseInNodeContext is also more lenient now with regard to undeclared
    entities.
    
    Fixes #727.