Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit21e25c5

Browse files
author
Felipe Zimmerle
committed
test: nginx: Adds missing files
This commit is just to circunvent a problem, there is no need to havethose files duplicated in our repository, that will be fixed soon.
1 parent176396d commit21e25c5

File tree

6 files changed

+296
-0
lines changed

6 files changed

+296
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!-- A stupid Soap DTD example -->
2+
<!ELEMENT Envelope (Header?,Body)>
3+
<!ELEMENT Header (#PCDATA)>
4+
<!ELEMENT Body (getInput)>
5+
6+
<!ELEMENT getInput (id)>
7+
<!ELEMENT id (#PCDATA)>
8+
<!ATLIST id type CDATA #REQUIRED>
Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
<?xml version='1.0' encoding='UTF-8' ?>
2+
3+
<!-- Schema for the SOAP/1.1 envelope
4+
5+
Portions © 2001 DevelopMentor.
6+
© 2001 W3C (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.
7+
8+
This document is governed by the W3C Software License [1] as described in the FAQ [2].
9+
[1] http://www.w3.org/Consortium/Legal/copyright-software-19980720
10+
[2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD
11+
By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions:
12+
13+
Permission to use, copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make:
14+
15+
1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
16+
17+
2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright © 2001 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/"
18+
19+
3. Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)
20+
21+
Original W3C files; http://www.w3.org/2001/06/soap-envelope
22+
Changes made:
23+
- reverted namespace to http://schemas.xmlsoap.org/soap/envelope/
24+
- reverted mustUnderstand to only allow 0 and 1 as lexical values
25+
- made encodingStyle a global attribute 20020825
26+
- removed default value from mustUnderstand attribute declaration
27+
28+
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
29+
30+
COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
31+
32+
The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders.
33+
34+
-->
35+
<xs:chemaxmlns:xs="http://www.w3.org/2001/XMLSchema"
36+
xmlns:tns="http://schemas.xmlsoap.org/soap/envelope/"
37+
targetNamespace="http://schemas.xmlsoap.org/soap/envelope/" >
38+
39+
40+
<!-- Envelope, header and body-->
41+
<xs:elementname="Envelope"type="tns:Envelope" />
42+
<xs:complexTypename="Envelope" >
43+
<xs:sequence>
44+
<xs:elementref="tns:Header"minOccurs="0" />
45+
<xs:elementref="tns:Body"minOccurs="1" />
46+
<xs:anynamespace="##other"minOccurs="0"maxOccurs="unbounded"processContents="lax" />
47+
</xs:sequence>
48+
<xs:anyAttributenamespace="##other"processContents="lax" />
49+
</xs:complexType>
50+
51+
<xs:elementname="Header"type="tns:Header" />
52+
<xs:complexTypename="Header" >
53+
<xs:sequence>
54+
<xs:anynamespace="##other"minOccurs="0"maxOccurs="unbounded"processContents="lax" />
55+
</xs:sequence>
56+
<xs:anyAttributenamespace="##other"processContents="lax" />
57+
</xs:complexType>
58+
59+
<xs:elementname="Body"type="tns:Body" />
60+
<xs:complexTypename="Body" >
61+
<xs:sequence>
62+
<xs:anynamespace="##any"minOccurs="0"maxOccurs="unbounded"processContents="lax" />
63+
</xs:sequence>
64+
<xs:anyAttributenamespace="##any"processContents="lax" >
65+
<xs:annotation>
66+
<xs:documentation>
67+
Prose in the spec does not specify that attributes are allowed on the Body element
68+
</xs:documentation>
69+
</xs:annotation>
70+
</xs:anyAttribute>
71+
</xs:complexType>
72+
73+
74+
<!-- Global Attributes. The following attributes are intended to be usable via qualified attribute names on any complex type referencing them.-->
75+
<xs:attributename="mustUnderstand" >
76+
<xs:simpleType>
77+
<xs:restrictionbase='xs:boolean'>
78+
<xs:patternvalue='0|1' />
79+
</xs:restriction>
80+
</xs:simpleType>
81+
</xs:attribute>
82+
<xs:attributename="actor"type="xs:anyURI" />
83+
84+
<xs:simpleTypename="encodingStyle" >
85+
<xs:annotation>
86+
<xs:documentation>
87+
'encodingStyle' indicates any canonicalization conventions followed in the contents of the containing element. For example, the value 'http://schemas.xmlsoap.org/soap/encoding/' indicates the pattern described in SOAP specification
88+
</xs:documentation>
89+
</xs:annotation>
90+
<xs:listitemType="xs:anyURI" />
91+
</xs:simpleType>
92+
93+
<xs:attributename="encodingStyle"type="tns:encodingStyle" />
94+
<xs:attributeGroupname="encodingStyle" >
95+
<xs:attributeref="tns:encodingStyle" />
96+
</xs:attributeGroup>
97+
98+
<xs:elementname="Fault"type="tns:Fault" />
99+
<xs:complexTypename="Fault"final="extension" >
100+
<xs:annotation>
101+
<xs:documentation>
102+
Fault reporting structure
103+
</xs:documentation>
104+
</xs:annotation>
105+
<xs:sequence>
106+
<xs:elementname="faultcode"type="xs:QName" />
107+
<xs:elementname="faultstring"type="xs:string" />
108+
<xs:elementname="faultactor"type="xs:anyURI"minOccurs="0" />
109+
<xs:elementname="detail"type="tns:detail"minOccurs="0" />
110+
</xs:sequence>
111+
</xs:complexType>
112+
113+
<xs:complexTypename="detail">
114+
<xs:sequence>
115+
<xs:anynamespace="##any"minOccurs="0"maxOccurs="unbounded"processContents="lax" />
116+
</xs:sequence>
117+
<xs:anyAttributenamespace="##any"processContents="lax" />
118+
</xs:complexType>
119+
120+
</xs:schema>
121+
122+
123+
124+
125+
126+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!-- A stupid Soap DTD example -->
2+
<!ELEMENT Envelope (Header?,Body)>
3+
<!ELEMENT Header (#PCDATA)>
4+
<!ELEMENT Body (getInput)>
5+
6+
<!ELEMENT getInput (id)>
7+
<!ELEMENT id (#PCDATA)>
8+
<!ATTLIST id type CDATA #REQUIRED>
Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
<?xml version='1.0' encoding='UTF-8' ?>
2+
3+
<!-- Schema for the SOAP/1.1 envelope
4+
5+
Portions © 2001 DevelopMentor.
6+
© 2001 W3C (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.
7+
8+
This document is governed by the W3C Software License [1] as described in the FAQ [2].
9+
[1] http://www.w3.org/Consortium/Legal/copyright-software-19980720
10+
[2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD
11+
By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions:
12+
13+
Permission to use, copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make:
14+
15+
1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
16+
17+
2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright © 2001 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/"
18+
19+
3. Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)
20+
21+
Original W3C files; http://www.w3.org/2001/06/soap-envelope
22+
Changes made:
23+
- reverted namespace to http://schemas.xmlsoap.org/soap/envelope/
24+
- reverted mustUnderstand to only allow 0 and 1 as lexical values
25+
- made encodingStyle a global attribute 20020825
26+
- removed default value from mustUnderstand attribute declaration
27+
28+
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
29+
30+
COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
31+
32+
The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders.
33+
34+
-->
35+
<xs:schemaxmlns:xs="http://www.w3.org/2001/XMLSchema"
36+
xmlns:tns="http://schemas.xmlsoap.org/soap/envelope/"
37+
targetNamespace="http://schemas.xmlsoap.org/soap/envelope/" >
38+
39+
40+
<!-- Envelope, header and body-->
41+
<xs:elementname="Envelope"type="tns:Envelope" />
42+
<xs:complexTypename="Envelope" >
43+
<xs:sequence>
44+
<xs:elementref="tns:Header"minOccurs="0" />
45+
<xs:elementref="tns:Body"minOccurs="1" />
46+
<xs:anynamespace="##other"minOccurs="0"maxOccurs="unbounded"processContents="lax" />
47+
</xs:sequence>
48+
<xs:anyAttributenamespace="##other"processContents="lax" />
49+
</xs:complexType>
50+
51+
<xs:elementname="Header"type="tns:Header" />
52+
<xs:complexTypename="Header" >
53+
<xs:sequence>
54+
<xs:anynamespace="##other"minOccurs="0"maxOccurs="unbounded"processContents="lax" />
55+
</xs:sequence>
56+
<xs:anyAttributenamespace="##other"processContents="lax" />
57+
</xs:complexType>
58+
59+
<xs:elementname="Body"type="tns:Body" />
60+
<xs:complexTypename="Body" >
61+
<xs:sequence>
62+
<xs:anynamespace="##any"minOccurs="0"maxOccurs="unbounded"processContents="lax" />
63+
</xs:sequence>
64+
<xs:anyAttributenamespace="##any"processContents="lax" >
65+
<xs:annotation>
66+
<xs:documentation>
67+
Prose in the spec does not specify that attributes are allowed on the Body element
68+
</xs:documentation>
69+
</xs:annotation>
70+
</xs:anyAttribute>
71+
</xs:complexType>
72+
73+
74+
<!-- Global Attributes. The following attributes are intended to be usable via qualified attribute names on any complex type referencing them.-->
75+
<xs:attributename="mustUnderstand" >
76+
<xs:simpleType>
77+
<xs:restrictionbase='xs:boolean'>
78+
<xs:patternvalue='0|1' />
79+
</xs:restriction>
80+
</xs:simpleType>
81+
</xs:attribute>
82+
<xs:attributename="actor"type="xs:anyURI" />
83+
84+
<xs:simpleTypename="encodingStyle" >
85+
<xs:annotation>
86+
<xs:documentation>
87+
'encodingStyle' indicates any canonicalization conventions followed in the contents of the containing element. For example, the value 'http://schemas.xmlsoap.org/soap/encoding/' indicates the pattern described in SOAP specification
88+
</xs:documentation>
89+
</xs:annotation>
90+
<xs:listitemType="xs:anyURI" />
91+
</xs:simpleType>
92+
93+
<xs:attributename="encodingStyle"type="tns:encodingStyle" />
94+
<xs:attributeGroupname="encodingStyle" >
95+
<xs:attributeref="tns:encodingStyle" />
96+
</xs:attributeGroup>
97+
98+
<xs:elementname="Fault"type="tns:Fault" />
99+
<xs:complexTypename="Fault"final="extension" >
100+
<xs:annotation>
101+
<xs:documentation>
102+
Fault reporting structure
103+
</xs:documentation>
104+
</xs:annotation>
105+
<xs:sequence>
106+
<xs:elementname="faultcode"type="xs:QName" />
107+
<xs:elementname="faultstring"type="xs:string" />
108+
<xs:elementname="faultactor"type="xs:anyURI"minOccurs="0" />
109+
<xs:elementname="detail"type="tns:detail"minOccurs="0" />
110+
</xs:sequence>
111+
</xs:complexType>
112+
113+
<xs:complexTypename="detail">
114+
<xs:sequence>
115+
<xs:anynamespace="##any"minOccurs="0"maxOccurs="unbounded"processContents="lax" />
116+
</xs:sequence>
117+
<xs:anyAttributenamespace="##any"processContents="lax" />
118+
</xs:complexType>
119+
120+
</xs:schema>
121+
122+
123+
124+
125+
126+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
-- Test matching Lua Script to just print debug messages
2+
functionmain()
3+
m.log(1,"Test message.");
4+
m.log(2,"Test message.");
5+
m.log(3,"Test message.");
6+
m.log(4,"Test message.");
7+
m.log(5,"Test message.");
8+
m.log(6,"Test message.");
9+
m.log(7,"Test message.");
10+
m.log(8,"Test message.");
11+
m.log(9,"Test message.");
12+
13+
return"Lua script matched.";
14+
end
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
-- Test Lua Script to just print debug messages
2+
functionmain()
3+
m.log(1,"Test message.");
4+
m.log(2,"Test message.");
5+
m.log(3,"Test message.");
6+
m.log(4,"Test message.");
7+
m.log(5,"Test message.");
8+
m.log(6,"Test message.");
9+
m.log(7,"Test message.");
10+
m.log(8,"Test message.");
11+
m.log(9,"Test message.");
12+
13+
returnnil;
14+
end

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp