Search the web
Sign In
New User? Sign Up
rng-users · RELAX NG users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1029 - 1058 of 1125   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1029
CALL FOR PROPOSALS Text encoding in the era of mass digitization 2009 Conference and Members' Meeting of the TEI Consortium ...
Syd Bauman
syd_bauman
Offline Send Email
May 2, 2009
1:33 am
1030
I have a conversion issue when going from RNG to XSD that I don't understand. I have a flat RNG with several simple element patterns defined thusly ... ...
tw33zer
Offline Send Email
May 4, 2009
1:23 pm
1031
... Actually, it is. Because your element has an attribute, it must be modeled in XSD with a complex type, and the way to indicate that a complex type may...
John Cowan
johnwcowan
Online Now Send Email
May 4, 2009
2:13 pm
1032
... I thought the preferred way to do this in XSD was <xs:complexType name="p.content"> <xs:simpleContent> <xs:extension base="xs:string"> <xs:attributeGroup...
tw33zer
Offline Send Email
May 4, 2009
2:33 pm
1033
... Hmmm. Rats. I wonder if this will make getting XProc out of CR a problem. The p:validate-with-relax-ng step includes an option to support the attribute...
Norman Walsh
normwalsh
Online Now Send Email
May 4, 2009
2:41 pm
1034
... The obvious approach is to whomp up an XSLT script that takes a RELAX NG schema with a:defaultValue annotations and generates another XSLT script that can...
John Cowan
johnwcowan
Online Now Send Email
May 4, 2009
3:35 pm
1035
... That may be the obvious approach, but I'm not sure the XSLT script is obvious, unless implementing a RELAX NG validator in XSLT seems obvious to you, in...
Norman Walsh
normwalsh
Online Now Send Email
May 4, 2009
3:53 pm
1036
... The problem's a little harder than I thought, but not as hard as you think, and fortunately, Eric VdV has done the heavy lifting on it. There is a strong...
John Cowan
johnwcowan
Online Now Send Email
May 4, 2009
4:43 pm
1037
... That's subtly different: it's a complex type whose content is a string, as opposed to its content being text. The validation will be the same, just as the...
John Cowan
johnwcowan
Online Now Send Email
May 4, 2009
6:59 pm
1038
Hi everyone, As far as I can see currently trang cannot convert xsd schemas to relax ng. Are there any plans to add this in future? If there are no plans for...
al_shopov
Online Now Send Email
May 7, 2009
5:51 pm
1039
Hi, I want to validate an XML file containing following section. Requirement is to validate "required", unordered fields with same name. <Metadata> <App_Data...
veenaonnet
Offline Send Email
May 7, 2009
5:51 pm
1040
... Not unless you want to try? Sun MSV is the tool I use. https://msv.dev.java.net/ FILE FOR THE SUN RELAX NG CONVERTER version 20060319 Copyright (c) Sun...
Dave Pawson
dpawson2000
Offline Send Email
May 7, 2009
6:00 pm
1041
... Trang's model is to convert schemas in such a way that the component parts of the input are well reflected in the output. XSD->RNG is too hard to do using...
John Cowan
johnwcowan
Online Now Send Email
May 7, 2009
6:29 pm
1042
Dear Trang users, maybe you know the answer on the following questions: 1) Are nested grammars going to be supported during conversion from RNG to XML Schema?...
Vyacheslav Zholudev
detonator413
Online Now Send Email
May 14, 2009
5:26 pm
1043
I am trying to compile a conforming XML schema to an rnc for use with nxml. I do the following: 1. Compile the Xsd to rng with rngconv.jar from the Sun...
a_stephm
Offline Send Email
May 18, 2009
8:51 am
1044
Is it possible to expand any xIncludes in a source document prior to validation with Jing please? I.e. as part of the same call to Jing? Seems like a useful...
Dave Pawson
dpawson2000
Offline Send Email
May 25, 2009
7:36 am
1045
... It should be possible to change parser used to Xerces and use properties to enable XInclude processing, something like: java -jar jing.jar ...
Jirka Kosek
jirka@...
Send Email
May 25, 2009
7:46 am
1046
... <grin/> Thanks Jirka! that did it. One less step in the process! James has an issue on Google dev site ...
Dave Pawson
dpawson2000
Offline Send Email
May 25, 2009
8:06 am
1047
Hi, How to specify a restriction based on a regular expression with the compact syntax: element test{ attribute version { text } } I want to force a pattern...
JLM
qesnef
Offline Send Email
May 26, 2009
2:54 pm
1048
... element test{ attribute version { token {pattern="\d+(\.\d+)*"} } } (see http://books.xmlschemata.org/relaxng/relax-CHP-9.html) Hope this helps. Eric...
Eric van der Vlist
evlist
Offline Send Email
May 26, 2009
3:04 pm
1049
... Use an XSD data type in order to add a pattern facet, and don't use "^" or "$" in the pattern. I hope this helps. . . . . . . . . . Ken T:\ftemp>type...
G. Ken Holman
g_ken_holman
Offline Send Email
May 26, 2009
3:07 pm
1050
... Sorry, JLM, but I transcribed your pattern incorrectly into my test, and the test case I presented for failure should have passed. I hope I've copied it...
G. Ken Holman
g_ken_holman
Offline Send Email
May 26, 2009
3:12 pm
1051
... That's exactly right: the first three patterns succeed and the fourth fails, because a dot without digits following is forbidden by the pattern. It's not...
John Cowan
johnwcowan
Online Now Send Email
May 26, 2009
6:24 pm
1052
RNG users, Good news is that another ISO/IEC standard, ISO/IEC-15909, uses RELAX NG. Bad news is that they are annoyed by the ID/IDREF issue. Cheers, Makoto ...
MURATA Makoto (FAMILY...
mktmurata
Offline Send Email
Jun 10, 2009
4:27 am
1053
Just a comment on NVDL implementation in Jing. Please note that if you checkout the latest Jing source code from ...
George Cristian Bina
george_bina
Offline Send Email
Jun 10, 2009
5:44 am
1054
I'm converting an RNG schema to RNC using trang-20081028. There are a few RNG files, and a modules/ directory containing others. The top-level RNG files...
leighklotz
Offline Send Email
Jun 16, 2009
11:17 pm
1055
I have a rng file that is essentially a flat structure with all elements and attributes referencing named patterns ... e.g., <element name="element_name"> <ref...
tw33zer
Offline Send Email
Jun 30, 2009
3:58 pm
1056
apologies: the second example below is in error: an element definition was distributed because of a pattern merge. The first example is legit, however. I...
tw33zer
Offline Send Email
Jun 30, 2009
4:23 pm
1057
I have a definition that contains a set of attributes that I want to apply to a variety of other types. When applies to the other types I want to be able to...
rob.dingwell
Offline Send Email
Jul 1, 2009
12:07 am
1058
Hi, I'm fairly new to RelaxNG, and so my apologies in advance if I'm missing something basic. Does the jing command line program take XML schema dataypes into...
hcayless
Offline Send Email
Jul 1, 2009
12:07 am
Messages 1029 - 1058 of 1125   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help