This commit is contained in:
Christian Mehlmauer
2013-02-02 19:54:48 +01:00
parent 5f05533b7f
commit d2d15cef95
4 changed files with 18 additions and 8 deletions

View File

@@ -54,13 +54,13 @@
<hash sha1="ac638cc38f011b74a8d9a4e7d3d60358e472166c"> <hash sha1="ac638cc38f011b74a8d9a4e7d3d60358e472166c">
<title>Inline phpinfo()</title> <title>Inline phpinfo()</title>
<file>phpinfo.php</file> <file>phpinfo.php</file>
<reference></reference> <reference>http://php.net/manual/en/function.phpinfo.php</reference>
</hash> </hash>
<hash sha1="012ee25cceff745e681fbb3697a06f3712f55554"> <hash sha1="012ee25cceff745e681fbb3697a06f3712f55554">
<title>phpinfo()</title> <title>phpinfo()</title>
<file>phpinfo.php</file> <file>phpinfo.php</file>
<reference></reference> <reference>http://php.net/manual/en/function.phpinfo.php</reference>
</hash> </hash>
</hashes> </hashes>

View File

@@ -21,11 +21,15 @@
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="stringtype"> <xs:simpleType name="stringtype">
<xs:restriction base="xs:string"/> <xs:restriction base="xs:string">
<xs:minLength value="1" />
</xs:restriction>
</xs:simpleType> </xs:simpleType>
<xs:simpleType name="uritype"> <xs:simpleType name="uritype">
<xs:restriction base="xs:anyURI"/> <xs:restriction base="xs:anyURI">
<xs:minLength value="1" />
</xs:restriction>
</xs:simpleType> </xs:simpleType>
<xs:simpleType name="sha1type"> <xs:simpleType name="sha1type">

View File

@@ -21,15 +21,19 @@
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="stringtype"> <xs:simpleType name="stringtype">
<xs:restriction base="xs:string"/> <xs:restriction base="xs:string">
<xs:minLength value="1" />
</xs:restriction>
</xs:simpleType> </xs:simpleType>
<xs:simpleType name="uritype"> <xs:simpleType name="uritype">
<xs:restriction base="xs:anyURI"/> <xs:restriction base="xs:anyURI">
<xs:minLength value="1" />
</xs:restriction>
</xs:simpleType> </xs:simpleType>
<xs:simpleType name="typetype"> <xs:simpleType name="typetype">
<xs:restriction base="xs:string"> <xs:restriction base="stringtype">
<xs:enumeration value="SQLI"/> <xs:enumeration value="SQLI"/>
<xs:enumeration value="MULTI"/> <xs:enumeration value="MULTI"/>
<xs:enumeration value="REDIRECT"/> <xs:enumeration value="REDIRECT"/>

View File

@@ -21,7 +21,9 @@
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="stringtype"> <xs:simpleType name="stringtype">
<xs:restriction base="xs:string"/> <xs:restriction base="xs:string">
<xs:minLength value="1" />
</xs:restriction>
</xs:simpleType> </xs:simpleType>
<xs:complexType name="filetype"> <xs:complexType name="filetype">