RELAX NG (ISO/IEC 19757-2) is an International Standard schema language for XML. A RELAX NG schema specifies a grammar that a validator can apply to XML documents to determine whether or not they are schema-valid.
0
votes
1answer
39 views
Relax NG in Eclipse
Is there any option how add RelaxNG support to Eclipse? I mean sytnax highlighting, hint after Ctrl+Space pressed etc.
I have found only some articles about this topic and they are several years old ...
-4
votes
1answer
45 views
Parse .rng to .ecore [closed]
Hi everybody i have a file that the extension is .rng and i want to use java to parse it into a .ecore(or Xsd) file but have no idea is their any tool or API for that
0
votes
1answer
37 views
Making a complex Relax NG attribute without using pattern?
I have an attribute called 'page'. It is made up of two to three doubles, separated by commas, not spaces, with an optional '!' at the end. All of the following are valid:
page="8.5,11,3!"
...
0
votes
1answer
219 views
Java HTML 5 validation with XSD / trang HTML 5 Relax NG to XSD conversion
My goal is to do standalone HTML 5 Markup validation with an XSD schema in java.
In the following I describe my approach.
Any help is appreciated -- also if there is an alternative or better way to ...
1
vote
3answers
150 views
How to convert an XML schema (XSD) to Relax NG?
The Relax NG homepage lists the Sun RELAX NG Converter which apparently is able to convert an XSD file to a relaxng one - but the link is dead and a blog entry about secondary sources seems to be ...
1
vote
1answer
58 views
RELAX NG conditional datatype based on other element
My goal is to have a RELAX NG compact schema which enforces that an element's datatype matches that of the parent element's datatype.
I currently have the following schema:
start = Tickmarks
...
0
votes
1answer
57 views
What Ruby libraries support validation of Relax NG compact syntax?
What Ruby libraries support XML validation with Relax NG compact syntax?
I've tried Nokogiri so far, with no success. It only supports .rng files, not .rnc files.
0
votes
2answers
63 views
How to write “anything goes” in Relax NG?
Is there a way to write that there are completely no restrictions on content of an element in Relax NG?
In XML Schema something like this is apparently possible with
<xs:sequence>
...
1
vote
1answer
28 views
RELAX NG Multiple names for the element with the same structure
Suppose I have two these rules:
JFalse = element JFalse {
attribute label { xs:string }?,
attribute jump { xs:string }?,
attribute offset { xs:integer }?
}
JGt = element JGt {
attribute ...
2
votes
1answer
133 views
RELAX NG Compact Syntax regular expression support?
Is it possible to define a pattern for text in RELAX NG Compact Syntax in the way Regular Expressions are defined, or, maybe even simpler variations of regular grammar which only has "or" and ...
0
votes
1answer
50 views
Use Relax NG to verify an XML node is empty and devoid of white space
I'd like to use a Relax NG schema to validate an XML file. As part of the validation, I'd like to make sure that there is no white space in a set of nodes. For example, I'd like for the first two ...
0
votes
1answer
78 views
Multiple assignment in XML schema
Is there any way to write a markup like following in Relax NG compact (It seems that it have not a counterpart in Relax NG XML)
bar = foo = element title {text}
In future somebody may want assign ...
0
votes
1answer
76 views
Customized DocBook schema
In this question some DocBook editors are listed, I extended the DocBook schema and now I want use it to author book. Which of that editors can be modified to use my customized schema and still ...
0
votes
1answer
33 views
Is there a way to restrict an XML attribute's string length in the Relax NG Compact syntax?
I have an attribute I want to restrict to a maximum length of 25 characters. The XML schema is defined in Relax NG Compact syntax. Is there a way to specify this?
0
votes
0answers
96 views
Can lxml's objectify.makeparser use RELAX NG schema?
I've created a RELAX NG schema document and an XML instance document that conforms to this schema. I'm using the python lxml library to parse and validate the files.
I'm looking into using the ...
0
votes
1answer
74 views
How to validate against schema for namespace, not complete document?
I have a document like this:
<d:block xmlns:d="D" xmlns:b="B" xmlns="default" name="popover">
<d:description>...</d:description>
<d:sample>
<b:popover>
...
3
votes
2answers
152 views
Can relaxng specify an unordered set of elements with the same name, but different attributes?
Im working to automate the testing of an API which takes and returns XML, so I want to translate the documented return data of the API into schema as much as possible. I chose RelaxNG for this task ...
0
votes
1answer
137 views
Is there a JavaScript library to validate xml against RELAX NG schema
Is there a JavaScript library to validate xml against RELAX NG schema? I tried jsrelaxngvalidator but it is slow and doesn't work for large schemas. Are there any other JavaScript RELAX NG schema ...
1
vote
0answers
127 views
lxml RelaxNG validation gives inexact results
I'm using python 2.7 and lxml to validate a large xml file with RelaxNG. When the xml does not validate correctly I'm getting inexact result as to the location and nature of the problem. Usually it ...
1
vote
1answer
54 views
Add Regular Expression to Text Element
Is there a way to take an element that is an "anyURI" and add additional constraints such as require "://"? Or would I have to define a new data type and how would I actually keep the rules for ...
0
votes
0answers
159 views
XJC rng to java class “unkown location” error
I am experimenting with JAXB and relaxng.
I try to generate a java file from a very simple relax-ng definition (i think). a sample xml file validates with this file, so i assume it is correct:
...
2
votes
1answer
138 views
Can I specify the schema location in a RELAX NG compact schema?
I want to use a Relax NG compact schema. Do I specify the .rnc file in the xsi:schemaLocation the way I would for an XSD? I don't want to convert the Relax NG to an XSD because the limitations of XSD ...
1
vote
2answers
444 views
Jing RelaxNG validator and custom datatype library from java code
After reading this I've been trying to implement a custom datatype to be used by a RelaxNG XML validator (Jing). I've successfully ran the example implementation which is provided by Jing (they call ...
1
vote
1answer
93 views
Allowing arbitrary order of elements in RelaxNG schema
I've got a RelaxNG schema that looks pretty much like this:
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
<start>
<element name="xml">
<zeroOrMore>
...
0
votes
1answer
164 views
How can I generate basic documentation from a Relax NG Schema
I'm trying to generate very simple documentation from the annotations in a Relax NG XML Schema. For example, given the following Relax NG:
<?xml version="1.0" encoding="UTF-8"?>
<grammar ...
0
votes
2answers
118 views
Is it possible to read Relax NG xml in XSLT?
I want to know whether it is possible to transform Relax NG XML with XSLT. Please give me some tutorial.
I don't seem to be able to match the grammar-tag in the RelaxNG schema below with ...
1
vote
1answer
142 views
Querying a RelaxNG schema (xml syntax) in java, preferably using Jing
I am trying to find a way to query a RNG schema while avoiding reinvention of the wheel, in order to answer basic questions such as: what elements are valid children of an XML instance element, what ...
0
votes
1answer
95 views
Using RelaxNG how can I allow any element to have an attribute “myattribute” - that is define global attributes
Is there a way to declare an attribute globally available i my grammar?
That is, I want any element to be able to have a certain attribute.
Alternatively I would like to define a list of elements ...
0
votes
1answer
56 views
RelaxNG enumerated element names
If I have element names that must look like this:
<myElem>
<subElem_n/>
<subElem_n+1/>
<subElem_n+2/>
</myElem>
Where 'n' = 0;
How would I enforce this is ...
0
votes
2answers
90 views
How to validate RelaxNG syntax?
This is hard to Google since RelaxNG is used to validate other stuff and I am getting too many erroneous results. What I am looking for is a good way to validate that my RelaxNG file itself is free of ...
1
vote
1answer
43 views
Referencing specific element(s) in a RelaxNG schema with externalRef
So I have one RelaxNG schema that references another:
<define name="review">
<element name="review">
<externalRef href="other.rng"/>
</element>
</define>
...
0
votes
1answer
58 views
Need a little recursion in RELAX NG external references
We've been using RELAX NG to specify and validate XML messages for our web-based API, and I was doing some housecleaning and started to make use of the <external> element.
In our schemas we ...
0
votes
1answer
53 views
Validate that URI is not empty in RelaxNG
I'm trying to validate that an element always has an href attribute in RelaxNG, and assumed you could do it with this:
<attribute name="href">
<data type="anyURI"/>
</attribute>
...
3
votes
2answers
883 views
RelaxNG or XSD schema validation with JavaScript
I'd like to do RelaxNG (preferred) or XSD (if I have to) schema validation in client-side JavaScript. Any good libraries for this? Google finds jsrelaxngvalidator but I'm having trouble getting it ...
0
votes
1answer
64 views
RelaxNG Debug Message for Choice Elements
How do I make my RNG file more verbose so that if I fail to specify a required choice element, the error message will be better described than just:
Expected an element , got nothing
Is there a way ...
2
votes
2answers
621 views
Python - RelaxNG object model generator / parser
Say I have this XML:
<domain type='qemu' xmlns:qemu='http://libirt.org/schemas/domain/qemu/1.0'>
<name>QEmu-fedora-i686</name>
<memory>219200</memory>
<os>
...
2
votes
1answer
93 views
Allowing additional attributes with Relax NG
I am writing a relax NG schema to validate some XML files.
For most of the elements, there are some required attributes, and the instances of this XML schema may also add any extra attributes.
For ...
5
votes
1answer
94 views
XML Schema to validate each value in an NMTOKENS attribute list
Given this XML file:
<users blessed="phrogz alians">
<user name="phrogz" id="42" />
<user name="lachtok" id="3" />
<user name="vielee" id="5" />
<user ...
0
votes
1answer
60 views
Is it possible to force the use of CDATA via RelaxNG?
I'm looking for a way to use RelaxNG to require an element in an XML document to be populated with CDATA.
I don't see it listed in the Guidelines for using W3C XML Schema Datatypes with RELAX NG or ...
1
vote
2answers
224 views
Validating XHTML5 in PHP?
Background I have made the decision to serve my website as application/xhtml+xml to anyone who will accept it. I understand that there are consequences, which consequences I'm willing to accept.
...
1
vote
1answer
107 views
RelaxNG: <choice> containing <zeroOrMore>
In RelaxNG, I want to describe a structure similar to this:
<parent>
<subelem1>
<subelem1>
<subelem1>
...
</parent>
or:
<parent>
...
2
votes
1answer
288 views
Generate object model out of RelaxNG schema with RNGOM - how to start?
I want to generate an object model out of an RelaxNG Schema.
Therefore I want to use the RNGOM Object Model/Parser (mainly because I could not find any alternative - although I don't even care about ...
0
votes
1answer
172 views
How to validate xml document against relaxNG schema in libxml++
I'm rather new to parsing xml in c++ and to xml in general.
I'm trying to parse my document with SAXParser from libxml++ library, however, I would also like it to validate my document against a ...
0
votes
1answer
113 views
Analysis for an XML parsing (and validating) C program
Thanks to jmbr at Stack Overflow, I finally found a way to validate xml against RELAX NG via a C program. The program is as follows...
#include <stdio.h>
#include <stdlib.h>
#include ...
2
votes
1answer
542 views
Why does Jing not allow a colon (“:”) in an id attribute?
I've been banging my head against xsd:ID not allowing a colon (":") in an id attribute. I first noticed this when using James Clark's nxml-mode in Emacs as it validated an XHTML file I was working ...
2
votes
1answer
99 views
RelaxNG - *any* attribute?
Is there a way to define an any name attribute? I'm validating code where users can and do apply their own attributes for tags and the like, which don't impact my project.
<define name="div">
...
1
vote
1answer
181 views
RELAX NG on Windows
I am guessing that my problems could stem from Windows file issues related to UTF8. But then again, the code is Java based, so the problem could be anything.
I ran the MSV and JING validators and ...
1
vote
1answer
93 views
How to define own types in Relax NG?
Consider the following regular expression
pattern = "(0[1-9]|1[012])/(0[1-9]|[12][0-9]|3[01])/(19|20)\d\d"
This pattertn represents date strings in MM/DD/YYYY format. Now, if I want to create ...
1
vote
1answer
354 views
How to implement constraints / conditional operators in Relax NG?
Consider the following Relax NG schema written in Compact Syntax
key = element key { type, value }
type = element type { text }
value = element value { text }
Hereby any XML document like
...
1
vote
2answers
274 views
Validating xml against relax ng in ANSI C
Is it possible to validate an xml file against a Relax NG schema in ANSI C? I have come across this library called libxml2 but all help I could get from it is with respect to how to parse an xml file. ...

