[ESW Wiki] Update of "its0601TechLangDev" by fsasaki

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "ESW Wiki" for change notification.

The following page has been changed by fsasaki:
http://esw.w3.org/topic/its0601TechLangDev


------------------------------------------------------------------------------
  
  === Including xml:lang in XML Schema ===
  
- To include the xml:lang attribute in your XSD document, import the W3C xml.xsd schema in your own XSD schema using the <xsd:import> element as shown below:
+ To include the xml:lang attribute in your XSD document, import the namespace for XML Schema together with xml.xsd in your own XSD document using the <xsd:import> element as shown below:
  
  {{{<xsd:schema targetNamespace="myNamespaceURI"
   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -25, +25 @@

   schemaLocation="http://www.w3.org/2001/xml.xsd"/>
   ...}}}
  
- Once the xml.xsd schema is imported, you can use the reference to xml:lang in any of your element declarations.
+ Once xml.xsd is imported, you can use the reference to xml:lang in any of your element declarations.
  
  {{{...
  <xsd:element name="myDoc">

Received on Wednesday, 1 February 2006 01:33:49 UTC