summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2016-04-18 17:45:01 +0200
committerMichał Górny <mgorny@gentoo.org>2016-04-18 17:45:01 +0200
commit181e46892590b84add173078455c4b8a99259e85 (patch)
treeaf0a013a6fcee58b97449f4f8cdc15a4df99727c /metadata.xsd
parentmetadata: Use more portable fake-attr uniquity constraint for subslots (diff)
downloadxml-schema-181e46892590b84add173078455c4b8a99259e85.tar.gz
xml-schema-181e46892590b84add173078455c4b8a99259e85.tar.bz2
xml-schema-181e46892590b84add173078455c4b8a99259e85.zip
Disallow whitespace in URLs
Diffstat (limited to 'metadata.xsd')
-rw-r--r--metadata.xsd2
1 files changed, 1 insertions, 1 deletions
diff --git a/metadata.xsd b/metadata.xsd
index 0ead09e..8bc6a4e 100644
--- a/metadata.xsd
+++ b/metadata.xsd
@@ -532,7 +532,7 @@
<xs:simpleType name='urlType'>
<xs:restriction base='xs:token'>
<!-- TODO: something better? -->
- <xs:pattern value="(mailto:[^@]+@[^.]+\..+|https?://.+)"/>
+ <xs:pattern value="(mailto:[^@]+@[^.\s]+\.\S+|https?://\S+)"/>
</xs:restriction>
</xs:simpleType>