[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]
Re: [xml-dev] How to Unique contraint
- From: Rick Jelliffe <rjelliffe@allette.com.au>
- To: xml-dev@lists.xml.org
- Date: Thu, 22 Mar 2007 21:50:29 +1100
In Schematron, you might do something roughly like this,:
<pattern>
<rule context="anElement">
<assert test="@port != @debug-port">
The port number must be different from the debug port number.
</assert>
<assert test="not( preceding::anElement[@port= current()/@port or
@debug-port=current()/@port or
@port=current()/@debug-port ][ @debug-port =
current()/@debug-port ])">
A number can only be assigned once, either as a port or as a
debug port.
</assert>
</rule>
</pattern>
If the anElement are in the same parent, then use preceding-sibling:: axis.
Cheers
Rick Jelliffe
[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]