This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 1786 - [FS] editorial: 8.6.1 Elements in validation mode
Summary: [FS] editorial: 8.6.1 Elements in validation mode
Status: CLOSED FIXED
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: Formal Semantics 1.0 (show other bugs)
Version: Last Call drafts
Hardware: All All
: P2 minor
Target Milestone: ---
Assignee: Jerome Simeon
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-07-20 04:23 UTC by Michael Dyck
Modified: 2007-01-16 17:46 UTC (History)
0 users

See Also:


Attachments

Description Michael Dyck 2005-07-20 04:23:40 UTC
.6.1 Elements in validation mode

Sem / rule 1 / premise (4|6)
Sem / rule 2 / premise 2
"statEnv.elemDecl(expanded-QName) = define ElementType"
    "define ElementType" is not a valid Formal Definition.
Comment 1 Jerome Simeon 2006-04-13 16:08:38 UTC
The rules are not correct, thanks for the catch. Corrected to the
intended rules, using element type references.


statEnv |-   ElementName1 of elem/type expands to expanded-QName1
...
statEnv |-  ElementNamen of elem/type expands to expanded-QNamen
statEnv.elemDecl(expanded-QName1) = define element ElementName1 OptSubstitution1 OptNillable1 TypeReference1
...
statEnv.elemDecl(expanded-QNamen) = define element ElementNamen OptSubstitutionn OptNillablen TypeReferencen
---------------------------------------------------------------------------
statEnv |-  with mode ValidationMode
            resolves to (element ElementName1 | ... | element ElementNamen) 

and 

statEnv |-   ElementName of elem/type expands to expanded-QName
statEnv.elemDecl(expanded-QName) = define element ElementName OptSubstitution OptNillable TypeReference
--------------------------------------------------------------------------------
statEnv |-  ElementName with mode ValidationMode resolves to element ElementName


- Jerome