Git Product home page Git Product logo

rng.xsl's Introduction

rng.xsl โ€” An XSLT 2.0 implementation of Relax NG

rng.xsl is a Relax NG validator and simplifier written in XSLT 2.0. It supports XML syntax and XSD datatypes, leveraging XSLT's basic support for both XML and XSD primitive atomic types.

rng.xsl is not a streaming validator, it works on in-memory documents. Unlike most Relax NG implementations, it does not use the derivative algorithm. Instead, it walks the schema and pulls from the validating document to test the patterns.

Features

rng.xsl is still under development. The planned features are:

  • Customize error messages from your XSLT program
  • Inject custom validation logic using XSLT templates
  • Implement custom datatypes in XSLT

Conformance

rng.xsl passes 343 out of 385 tests in Jing's test suite. Most of the failing tests are related to sections 7.3 and 7.4 of the specification, and does not affect validation functionality. Just write correct schemas and you'll be fine.

There's only one failing test related to section 6, which involves the use of non-mutually exclusive choices. For example, given the following schema:

<element xmlns="http://relaxng.org/ns/structure/1.0" name="foo">
   <list>
      <choice>
         <value>x</value>
         <group>
            <value>x</value>
            <value>y</value>
         </group>
      </choice>
   </list>
</element>

rng.xsl correctly validates <foo>x</foo>, but fails for <foo>x y</foo>. However, such patterns are rarely used in real-world schemas. There are no plans to fix this issue.

Feedback

Questions? Issues? use the issue tracker.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.