-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6b86a9
commit d53a39a
Showing
29,385 changed files
with
2,889,931 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
The MIT License (MIT) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to You under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
<xs:element name="Configuration" type="ConfigurationType"/> | ||
<xs:complexType name="ConfigurationType"> | ||
<xs:sequence> | ||
<xs:element name="Properties" type="PropertiesType"/> | ||
<xs:choice minOccurs="0" maxOccurs="1"> | ||
<xs:element name="Filters" type="FiltersType"/> | ||
<xs:element name="Filter" type="FilterType"/> | ||
</xs:choice> | ||
<xs:element name="ThresholdFilter" type="ThresholdFilterType"/> | ||
<xs:element name="Appenders" type="AppendersType"/> | ||
<xs:element name="Loggers" type="LoggersType"/> | ||
</xs:sequence> | ||
<xs:attribute name="packages" type="xs:string"/> | ||
<xs:attribute name="status" type="xs:string"/> | ||
<xs:attribute name="strict" type="xs:string"/> | ||
<xs:attribute name="name" type="xs:string"/> | ||
<xs:attribute name="advertiser" type="xs:string"/> | ||
</xs:complexType> | ||
<xs:complexType name="PropertiesType"> | ||
<xs:sequence> | ||
<xs:element name="Property" type="PropertyType"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
<xs:complexType name="AppenderType"> | ||
<xs:sequence> | ||
<xs:element name="Layout" type="LayoutType" minOccurs="0"/> | ||
<xs:choice minOccurs="0" maxOccurs="1"> | ||
<xs:element name="Filters" type="FiltersType"/> | ||
<xs:element name="Filter" type="FilterType"/> | ||
</xs:choice> | ||
</xs:sequence> | ||
<xs:attribute name="type" type="xs:string" use="required"/> | ||
<xs:attribute name="name" type="xs:string" use="required"/> | ||
<xs:attribute name="fileName" type="xs:string" use="optional"/> | ||
</xs:complexType> | ||
<xs:complexType name="RootType"> | ||
<xs:sequence> | ||
<xs:element name="AppenderRef" type="AppenderRefType" minOccurs="1" maxOccurs="unbounded"/> | ||
</xs:sequence> | ||
<xs:attribute name="level" type="xs:string"/> | ||
</xs:complexType> | ||
<xs:complexType name="PropertyType"> | ||
<xs:simpleContent> | ||
<xs:extension base="xs:string"> | ||
<xs:attribute name="name" type="xs:string"/> | ||
</xs:extension> | ||
</xs:simpleContent> | ||
</xs:complexType> | ||
<xs:complexType name="KeyValuePairType"> | ||
<xs:simpleContent> | ||
<xs:extension base="xs:string"> | ||
<xs:attribute name="key" type="xs:string"/> | ||
<xs:attribute name="value" type="xs:string"/> | ||
</xs:extension> | ||
</xs:simpleContent> | ||
</xs:complexType> | ||
<xs:complexType name="AppendersType"> | ||
<xs:sequence> | ||
<xs:element name="Appender" type="AppenderType" minOccurs="1" maxOccurs="unbounded"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
<xs:complexType name="AppenderRefType"> | ||
<xs:simpleContent> | ||
<xs:extension base="xs:string"> | ||
<xs:attribute name="ref" type="xs:string" use="required"/> | ||
</xs:extension> | ||
</xs:simpleContent> | ||
</xs:complexType> | ||
<xs:complexType name="LoggerType"> | ||
<xs:sequence> | ||
<xs:choice minOccurs="0" maxOccurs="1"> | ||
<xs:element name="Filters" type="FiltersType"/> | ||
<xs:element name="Filter" type="FilterType"/> | ||
</xs:choice> | ||
<xs:element name="AppenderRef" type="AppenderRefType"/> | ||
</xs:sequence> | ||
<xs:attribute name="name" type="xs:string" use="required"/> | ||
<xs:attribute name="level" type="xs:string" use="optional"/> | ||
<xs:attribute name="additivity" type="xs:string" use="optional"/> | ||
</xs:complexType> | ||
<xs:complexType name="FilterType" mixed="true"> | ||
<xs:sequence> | ||
<xs:element name="KeyValuePair" type="KeyValuePairType" minOccurs="0"/> | ||
</xs:sequence> | ||
<xs:attribute name="type" type="xs:string" use="required"/> | ||
<xs:attribute name="level" type="xs:string" use="optional"/> | ||
<xs:attribute name="marker" type="xs:string" use="optional"/> | ||
<xs:attribute name="onMatch" type="xs:string" use="optional"/> | ||
<xs:attribute name="onMismatch" type="xs:string" use="optional"/> | ||
</xs:complexType> | ||
<xs:complexType name="FiltersType"> | ||
<xs:sequence> | ||
<xs:element name="Filter" type="FilterType" minOccurs="0" maxOccurs="unbounded"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
<xs:complexType name="LoggersType" mixed="true"> | ||
<xs:sequence> | ||
<xs:element name="Logger" type="LoggerType" minOccurs="0" maxOccurs="unbounded"/> | ||
<xs:element name="Root" type="RootType" minOccurs="1" maxOccurs="1"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
<xs:complexType name="LayoutType" mixed="true"> | ||
<xs:sequence> | ||
<xs:element name="Pattern" type="xs:string" minOccurs="0"/> | ||
</xs:sequence> | ||
<xs:attribute name="Type" type="xs:string" use="required"/> | ||
<xs:attribute name="Pattern" type="xs:string" use="optional"/> | ||
</xs:complexType> | ||
<xs:complexType name="ThresholdFilterType"> | ||
<xs:attribute name="level" type="xs:string" use="optional"/> | ||
<xs:attribute name="onMatch" type="xs:string" use="optional"/> | ||
<xs:attribute name="onMismatch" type="xs:string" use="optional"/> | ||
</xs:complexType> | ||
</xs:schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to You under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<!--DTD generated by XMLSpy v2011 rel. 3 sp1 (x64) (http://www.altova.com)--> | ||
<!--the entity declarations may be overridden in the internal subset--> | ||
<!--namespace prefixes--> | ||
<!ENTITY % log4j_prefix "log4j"> | ||
<!--namespace prefix to namespace uri mappings--> | ||
<!ENTITY % log4j_prefix.. "%log4j_prefix;:"> | ||
<!--namespaces attributes for root element--> | ||
<!ENTITY % documentElementAttributes " xmlns:%log4j_prefix; CDATA 'http://logging.apache.org/log4j/2.0/events'"> | ||
<!--the declarations below should not be modified--> | ||
<!--element name mappings--> | ||
<!ENTITY % log4j..Events "%log4j_prefix..;Events"> | ||
<!ENTITY % log4j..Event "%log4j_prefix..;Event"> | ||
<!ENTITY % log4j..Message "%log4j_prefix..;Message"> | ||
<!ENTITY % log4j..NDC "%log4j_prefix..;NDC"> | ||
<!ENTITY % log4j..Throwable "%log4j_prefix..;Throwable"> | ||
<!ENTITY % log4j..LocationInfo "%log4j_prefix..;LocationInfo"> | ||
<!ENTITY % log4j..Properties "%log4j_prefix..;Properties"> | ||
<!ENTITY % log4j..Data "%log4j_prefix..;Data"> | ||
<!--element and attribute declarations--> | ||
<!--Log4J 2.0 XML Schema--> | ||
<!ELEMENT %log4j..Events; ((%log4j..Event;)*)> | ||
<!ATTLIST %log4j..Events; | ||
%documentElementAttributes; | ||
> | ||
<!ELEMENT %log4j..Event; (%log4j..Message;, (%log4j..NDC;)?, (%log4j..Throwable;)?, (%log4j..LocationInfo;)?, (%log4j..Properties;)?)> | ||
<!ATTLIST %log4j..Event; | ||
logger CDATA #REQUIRED | ||
timestamp NMTOKEN #REQUIRED | ||
level (OFF | FATAL | ERROR | WARN | INFO | DEBUG | TRACE | ALL) #REQUIRED | ||
thread CDATA #REQUIRED | ||
> | ||
<!ELEMENT %log4j..Message; ANY> | ||
<!ELEMENT %log4j..NDC; ANY> | ||
<!ELEMENT %log4j..Throwable; ANY> | ||
<!ELEMENT %log4j..LocationInfo; EMPTY> | ||
<!ATTLIST %log4j..LocationInfo; | ||
class CDATA #REQUIRED | ||
method CDATA #REQUIRED | ||
file CDATA #REQUIRED | ||
line NMTOKEN #REQUIRED | ||
> | ||
<!ELEMENT %log4j..Properties; ((%log4j..Data;)+)> | ||
<!ELEMENT %log4j..Data; EMPTY> | ||
<!ATTLIST %log4j..Data; | ||
name CDATA #REQUIRED | ||
value CDATA #REQUIRED | ||
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- edited with XMLSpy v2011 rel. 3 sp1 (x64) (http://www.altova.com) by Gary Gregory (Rocket Software) --> | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to You under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:log4j="http://logging.apache.org/log4j/2.0/events" targetNamespace="http://logging.apache.org/log4j/2.0/events" elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
<xs:element name="Events"> | ||
<xs:annotation> | ||
<xs:documentation>Log4J 2.0 XML Schema for XML log event files.</xs:documentation> | ||
</xs:annotation> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="Event" minOccurs="0" maxOccurs="unbounded"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="Message"/> | ||
<xs:element name="NDC" minOccurs="0"/> | ||
<xs:element name="Throwable" minOccurs="0"/> | ||
<xs:element name="LocationInfo" minOccurs="0"> | ||
<xs:complexType> | ||
<xs:attribute name="class" type="xs:string" use="required"/> | ||
<xs:attribute name="method" type="xs:string" use="required"/> | ||
<xs:attribute name="file" type="xs:string" use="required"/> | ||
<xs:attribute name="line" type="xs:int" use="required"/> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="Properties" minOccurs="0"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="Data" maxOccurs="unbounded"> | ||
<xs:complexType> | ||
<xs:attribute name="name" type="xs:string" use="required"/> | ||
<xs:attribute name="value" use="required"/> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
<xs:attribute name="logger" type="xs:string" use="required"/> | ||
<xs:attribute name="timestamp" type="xs:long" use="required"/> | ||
<xs:attribute name="level" type="log4j:LevelEnum" use="required"/> | ||
<xs:attribute name="thread" type="xs:string" use="required"/> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:simpleType name="LevelEnum"> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="OFF"/> | ||
<xs:enumeration value="FATAL"/> | ||
<xs:enumeration value="ERROR"/> | ||
<xs:enumeration value="WARN"/> | ||
<xs:enumeration value="INFO"/> | ||
<xs:enumeration value="DEBUG"/> | ||
<xs:enumeration value="TRACE"/> | ||
<xs:enumeration value="ALL"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:schema> |
19 changes: 19 additions & 0 deletions
19
BetterCraft v3b124 1.8 fixed sources/META-INF/DEPENDENCIES
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// ------------------------------------------------------------------ | ||
// Transitive dependencies of this project determined from the | ||
// maven pom organized by organization. | ||
// ------------------------------------------------------------------ | ||
|
||
Apache HttpClient | ||
|
||
|
||
From: 'The Apache Software Foundation' (http://www.apache.org/) | ||
- Commons Codec (http://commons.apache.org/codec/) commons-codec:commons-codec:jar:1.6 | ||
License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) | ||
- Commons Logging (http://commons.apache.org/proper/commons-logging/) commons-logging:commons-logging:jar:1.1.3 | ||
License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) | ||
- Apache HttpCore (http://hc.apache.org/httpcomponents-core-ga) org.apache.httpcomponents:httpcore:jar:4.3.2 | ||
License: Apache License, Version 2.0 (LICENSE.txt) | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
JarIndex-Version: 1.0 | ||
|
||
netty-all-4.0.23.Final.jar | ||
META-INF | ||
META-INF/maven | ||
META-INF/maven/io.netty | ||
META-INF/maven/io.netty/netty-all | ||
META-INF/native | ||
io | ||
io/netty | ||
io/netty/bootstrap | ||
io/netty/buffer | ||
io/netty/channel | ||
io/netty/channel/embedded | ||
io/netty/channel/epoll | ||
io/netty/channel/group | ||
io/netty/channel/local | ||
io/netty/channel/nio | ||
io/netty/channel/oio | ||
io/netty/channel/rxtx | ||
io/netty/channel/sctp | ||
io/netty/channel/sctp/nio | ||
io/netty/channel/sctp/oio | ||
io/netty/channel/socket | ||
io/netty/channel/socket/nio | ||
io/netty/channel/socket/oio | ||
io/netty/channel/udt | ||
io/netty/channel/udt/nio | ||
io/netty/handler | ||
io/netty/handler/codec | ||
io/netty/handler/codec/base64 | ||
io/netty/handler/codec/bytes | ||
io/netty/handler/codec/compression | ||
io/netty/handler/codec/http | ||
io/netty/handler/codec/http/cors | ||
io/netty/handler/codec/http/multipart | ||
io/netty/handler/codec/http/websocketx | ||
io/netty/handler/codec/marshalling | ||
io/netty/handler/codec/protobuf | ||
io/netty/handler/codec/rtsp | ||
io/netty/handler/codec/sctp | ||
io/netty/handler/codec/serialization | ||
io/netty/handler/codec/socks | ||
io/netty/handler/codec/spdy | ||
io/netty/handler/codec/string | ||
io/netty/handler/logging | ||
io/netty/handler/ssl | ||
io/netty/handler/ssl/util | ||
io/netty/handler/stream | ||
io/netty/handler/timeout | ||
io/netty/handler/traffic | ||
io/netty/util | ||
io/netty/util/collection | ||
io/netty/util/concurrent | ||
io/netty/util/internal | ||
io/netty/util/internal/chmv8 | ||
io/netty/util/internal/logging | ||
|
Oops, something went wrong.