forked from apache/netbeans
-
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.
Remove ZIP files as much as possible
- remove tests from websvc.saas.codegen that rely on undonated code from Oracle and thus won't work - remove tests from projectimport.eclipse.core that rely on undonated files and thus won't work. The contained ZIP does not need to be a ZIP and is stored is stored in exploded form - biglist.zip is not a zip file, but a gzipped txt file - Test files for the xml.schema.model tests are stored in exploded form in the archive and the ZIP files are build at test build time - The pp.zip files in mercurial, git and subversion are build at test build time - the SvnWcParserData.zip file holds multiple working copies and can't be simply replaced. It is renamed to make it easier to understand what is contained in the file
- Loading branch information
1 parent
6ae59da
commit 5ffd3ed
Showing
118 changed files
with
3,811 additions
and
974 deletions.
There are no files selected for viewing
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
Binary file not shown.
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
File renamed without changes.
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
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
Binary file not shown.
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,4 @@ | ||
syntax: glob | ||
.hgignore | ||
*.orig | ||
.*~ |
Binary file not shown.
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
Binary file not shown.
File renamed without changes.
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
33 changes: 33 additions & 0 deletions
33
.../test/unit/data/org/netbeans/modules/xml/schema/model/resources/cyclic_dependencies/A.xsd
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,33 @@ | ||
<?xml version="1.0" encoding="windows-1252"?> | ||
<!-- | ||
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. | ||
--> | ||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="cyclic_dependencies_test" | ||
xmlns:tns="cyclic_dependencies_test" | ||
elementFormDefault="qualified"> | ||
<xsd:include schemaLocation="B.xsd"/> | ||
<xsd:include schemaLocation="C.xsd"/> | ||
<xsd:complexType name="complexTypeA"> | ||
<xsd:sequence/> | ||
</xsd:complexType> | ||
</xsd:schema> | ||
|
||
|
42 changes: 42 additions & 0 deletions
42
.../test/unit/data/org/netbeans/modules/xml/schema/model/resources/cyclic_dependencies/B.xsd
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,42 @@ | ||
<?xml version="1.0" encoding="windows-1252"?> | ||
<!-- | ||
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. | ||
--> | ||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="cyclic_dependencies_test" | ||
xmlns:tns="cyclic_dependencies_test" | ||
elementFormDefault="qualified"> | ||
<!--xsd:include schemaLocation="C.xsd"/--> | ||
<!--xsd:include schemaLocation="F.xsd"/--> | ||
<xsd:element name="elemC" type="tns:complexTypeC"></xsd:element> | ||
<xsd:element name="elemF" type="tns:complexTypeF"></xsd:element> | ||
<xsd:complexType name="complexTypeB"> | ||
<xsd:sequence> | ||
<xsd:element name="elementC" type="tns:complexTypeC"></xsd:element> | ||
</xsd:sequence> | ||
<xsd:sequence> | ||
<xsd:element name="elementF" type="tns:complexTypeF"></xsd:element> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
</xsd:schema> | ||
|
||
|
||
|
||
|
31 changes: 31 additions & 0 deletions
31
.../test/unit/data/org/netbeans/modules/xml/schema/model/resources/cyclic_dependencies/C.xsd
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,31 @@ | ||
<?xml version="1.0" encoding="windows-1252"?> | ||
<!-- | ||
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. | ||
--> | ||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="cyclic_dependencies_test" | ||
xmlns:tns="cyclic_dependencies_test" | ||
elementFormDefault="qualified"> | ||
<xsd:include schemaLocation="D.xsd"/> | ||
<xsd:complexType name="complexTypeC"> | ||
<xsd:sequence/> | ||
</xsd:complexType> | ||
</xsd:schema> | ||
|
31 changes: 31 additions & 0 deletions
31
.../test/unit/data/org/netbeans/modules/xml/schema/model/resources/cyclic_dependencies/D.xsd
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,31 @@ | ||
<?xml version="1.0" encoding="windows-1252"?> | ||
<!-- | ||
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. | ||
--> | ||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="cyclic_dependencies_test" | ||
xmlns:tns="cyclic_dependencies_test" | ||
elementFormDefault="qualified"> | ||
<xsd:include schemaLocation="A.xsd"/> | ||
<xsd:complexType name="complexTypeD"> | ||
<xsd:sequence/> | ||
</xsd:complexType> | ||
</xsd:schema> | ||
|
32 changes: 32 additions & 0 deletions
32
.../test/unit/data/org/netbeans/modules/xml/schema/model/resources/cyclic_dependencies/E.xsd
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,32 @@ | ||
<?xml version="1.0" encoding="windows-1252"?> | ||
<!-- | ||
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. | ||
--> | ||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="cyclic_dependencies_test" | ||
xmlns:tns="cyclic_dependencies_test" | ||
elementFormDefault="qualified"> | ||
<xsd:include schemaLocation="B.xsd"/> | ||
<xsd:include schemaLocation="F.xsd"/> | ||
<xsd:complexType name="complexTypeE"> | ||
<xsd:sequence/> | ||
</xsd:complexType> | ||
</xsd:schema> | ||
|
31 changes: 31 additions & 0 deletions
31
.../test/unit/data/org/netbeans/modules/xml/schema/model/resources/cyclic_dependencies/F.xsd
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,31 @@ | ||
<?xml version="1.0" encoding="windows-1252"?> | ||
<!-- | ||
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. | ||
--> | ||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="cyclic_dependencies_test" | ||
xmlns:tns="cyclic_dependencies_test" | ||
elementFormDefault="qualified"> | ||
<xsd:include schemaLocation="C.xsd"/> | ||
<xsd:complexType name="complexTypeF"> | ||
<xsd:sequence/> | ||
</xsd:complexType> | ||
</xsd:schema> | ||
|
33 changes: 33 additions & 0 deletions
33
...a.model/test/unit/data/org/netbeans/modules/xml/schema/model/resources/performance1/A.xsd
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,33 @@ | ||
<?xml version="1.0" encoding="windows-1252"?> | ||
<!-- | ||
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. | ||
--> | ||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="hl7_performance_test" | ||
xmlns:tns="hl7_performance_test" | ||
elementFormDefault="qualified"> | ||
|
||
<xsd:include schemaLocation="unresolvedIncludes.xsd" /> | ||
|
||
<xsd:element name="A1" type="tns:C1"/> | ||
<xsd:element name="A2" type="tns:C2"/> | ||
<xsd:element name="A3" type="tns:C3"/> | ||
|
||
</xsd:schema> |
Oops, something went wrong.