Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
This avoids the need to do any datatype conversion for handling bounds. In
particular, it avoids troublesome range issues, like the maximum
xsd:unsignedLong being too large to fit in an xsd:long, which is likely what an
implementation without bigint support uses to represent xsd:integer.
So, avoid all of that by simply using the exact datatype in bounds for that
datatype, which makes more sense anyway.
|
|
This data costs memory, and I think it is better to not present things that
aren't useful to LV2 implementations at all here.
The whitespace annotations could be useful for cleaning up literals, but this
isn't currently used (and tends to be baked in to implementations anyway), so
remove them as well. If necessary they can be added later easily enough.
|
|
|
|
This fixes the patterns to properly match the spec (several were too strict or
otherwise impresive), and also reduces the regex syntax used to a basic and
nearly universal subset (without the use of counted replication) that should be
supported and handled consistently by even a very basic implementation.
|
|
|
|
|
|
|
|
Equivalent content, this is just to minimize the diff for the following commit.
|
|
|
|
|
|
|
|
|