Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <xsd:simpleType name="Directory">
  2. <xsd:restriction base="xsd:string">
  3. <xsd:maxLength value="255"/>
  4. <xsd:pattern value="[-a-zA-Z0-9!()_-~.]*"/>
  5. </xsd:restriction>
  6. </xsd:simpleType>
  7. <xsd:simpleType name="FilePath">
  8. <xsd:annotation>
  9. <xsd:documentation>Simple type used to restrict file paths</xsd:documentation>
  10. </xsd:annotation>
  11. <xsd:restriction base="xsd:string">
  12. <xsd:maxLength value="256"/>
  13. <xsd:pattern value="[a-zA-Z0-9!()_-~.\]+"/>
  14. </xsd:restriction>
  15. </xsd:simpleType>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement