[Bug 26997] [XSLT30] Package version ranges - EBNF error

https://www.w3.org/Bugs/Public/show_bug.cgi?id=26997

--- Comment #1 from johnlumley <john@saxonica.com> ---
In addition, the production:

  VersionFromTo  ::=  PackageVersion S "to" S VersionPrefix   

does not correspond with the detailed examples in the subsequent bullet point:

  The range VersionFromTo matches any version that is greater than or equal
  to the starting PackageVersion, and less than or equal to some version that
  matches the VersionPrefix. For example, 1 to 5 matches 1.1,  2.1,  3.1,
  or 5.0 (but not 5.1), while 1 to 5.* matches all of these, plus versions
  such as 5.7.2 (but not 6.0 or 6.0-beta).

The first example uses PackageVersion as the 'to' operand. I suspect the
production should be:

  VersionFromTo  ::=  PackageVersion S "to" S (PackageVersion | VersionPrefix)

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Thursday, 9 October 2014 10:01:39 UTC