AnantLabs / rdfquery

Automatically exported from code.google.com/p/rdfquery
0 stars 0 forks source link

http://www.w3.org/2001/XMLSchema#string validation #33

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Should the type http://www.w3.org/2001/XMLSchema#string allow new lines?

As current regexp expression invalidates strings containing new lines.

Original issue reported on code.google.com by ziod...@gmail.com on 9 May 2011 at 12:53

GoogleCodeExporter commented 9 years ago
Solution:
On line 157 in jquery.datatype.js replace:
  regex: /^.*$/,
with:
  regex: /^.*$/m,

Original comment by mynarzji...@gmail.com on 27 Aug 2012 at 2:47