... Ouch! Yes, of course. I see Syd saw that as well. Please forgive my hasty response. I know better than to try and rush an answer. . . . . . . . . . Ken...
First thing to note is that this is (as far as can be determined from the OP) not a RELAX NG question, but rather a question about the regular expression...
... That doesn't look correct to me ... are you not missing a third operand in the embedded expression? ((&)|(<)| ) ... that is the choice between an...
Hello, I was wondering if it was possible to do a negative look-ahead pattern match with Relax NG. I am trying to exclude certain strings. The pattern works...
... Clearly yes. ... It is. ... File a bug at http://code.google.com/p/jing-trang/issues/entry . Other than that, manually fix the trang output. Trang is a...
... a? & b? & c? is almost your friend here. That interleaves in arbitrary order three streams, each containing either a single element or nothing. Since you...
... Would this be more clear? data = element data { (a & b? & c? ) | ( a? & b & c? ) | (a? & b? & c) } . . . . . Ken -- XSLT/XQuery/XPath training after...
I don't know that it is "better" in any sense of the word, but I find the following a little clearer to read. data = element data { ( a & b? & c? ) | ( a? & b...
I'd like to require one, but allow up to all, of a set of elements but prohibit more than one occurrence of any individual element. For example, with elements...
XMLmind XML Editor Personal Edition v4.5.1 can be downloaded from http://www.xmlmind.com/xmleditor/download.shtml Professional Edition users, please upgrade...
... Interleaving is complex and fragile enough based on just element names; if it could depend on element attribute values (or content, why not?) as well, it...
Hi, A client has persuasive reasons involving backwards compatibility to change a naming convention in an RNG schema I prepared from: <interleave> <alpha/ ...
Whoops. Of course I meant: <interleave> <element name="alpha">.. <element name="beta">.. <element name="gamma">.. .. </interleave> versus <!-- not allowed!?...
Hi everyone, I've been trying RELAX NG and Jing for validating legal docs in XML format. One legal doc can refer to many others. And some conflicts maybe...
On Fri, Nov 6, 2009 at 17:45, MURATA Makoto (FAMILY Given) < ... Thanks Makoto. In this case, I was trying to use Jing, not MSV. I don't recall at the moment,...
Markus, Micah, and Leigh, Sorry for my tardy reply. Here are some comments. First, the use of &= is recommended only when you combine different define...
Hi, I'm trying to validate documents using RELAX NG schemata, and JAXP, but I'm having trouble. In order to isolate my issues, I've created a test case. I have...
... I don't know. Sorry. I have never used nxml-mode. -- Henri Sivonen hsivonen@... http://hsivonen.iki.fi/...
Henri Sivonen
hsivonen@...
Sep 24, 2009 4:06 pm
1120
2009/9/23 Henri Sivonen <hsivonen@...> ... Thanks Henri... next one, how is it used please? nxml-mode shows up with Incorrect schema. Unknown datatype...
... For some datatypes, there are commented-out regexp approximations in common.rnc. I infer you are using a non-Java environment. Which environment are you...
Henri Sivonen
hsivonen@...
Sep 23, 2009 11:10 am
1116
Henri has a schema with missing data types at http://syntax.whattf.org/relaxng/ but the datatypes are in java source form only? Has anyone seen a complete...