[
Lists Home |
Date Index |
Thread Index
]
- To: Jack Lindsey <Jack@lindsey.net>
- Subject: Re: [xml-dev] Re:Validating XML documents containing xml:*
- From: bryan rasmussen <rasmussen.bryan@gmail.com>
- Date: Tue, 8 Nov 2005 09:31:31 +0100
- Cc: xml-dev@lists.xml.org
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=nrnjF3vqQR6HPwoWnfWacjLsuJpx+mCls3g3nVr1FIocDTC+a5355+inIL4BMwMlFk8qwR80yVvC1wVD5Y+ywyOXkHY7qGB45Ri88XYvxctnxugauH+zbac+R9BfoJLrb+WlxalAuYxcBDC4A8akGul1N8fnKbLDeUKbEoUH6/8=
- In-reply-to: <4370210D.6070408@Lindsey.net>
- References: <4370210D.6070408@Lindsey.net>
What could be simpler would be if xml: namespaced attributes were
ignored by default.
On 11/8/05, Jack Lindsey <Jack@lindsey.net> wrote:
> For the instance files to validate, your schema needs to define where
> xml:* attributes are permitted.
>
> In order to reference xml:lang, etc., in your schema, you have to import
> the following W3C namespace:
>
> <xs:import namespace="http://www.w3.org/XML/1998/namespace"
> schemaLocation="http://www.w3.org/2001/xml.xsd"/>
>
> where the world's most famous attributeGroup is defined:
>
> <xs:attributeGroup name="specialAttrs">
> <xs:attribute ref="xml:base"/>
> <xs:attribute ref="xml:lang"/>
> <xs:attribute ref="xml:space"/>
> </xs:attributeGroup>
>
>
> using the W3C-reserved namespace prefix: xml
>
> In order for instance files referencing your schema to use xml:lang they
> must include the W3C's xsi namespace but the associated target schema is
> yours, e.g.
>
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xsi:schemaLocation="http://yourTargetSchema/namespace
> optionally/yourLocalschema.xsd"
>
> What could be simpler?
>
> Also try this list: <xmlschema-dev@w3.org>
>
> Cheers
> Jack Lindsey
>
>
>
>
>
>
>
> -----------------------------------------------------------------
> The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
> initiative of OASIS <http://www.oasis-open.org>
>
> The list archives are at http://lists.xml.org/archives/xml-dev/
>
> To subscribe or unsubscribe from this list use the subscription
> manager: <http://www.oasis-open.org/mlmanage/index.php>
>
>
|