Author: ggregory Date: Sat Sep 23 02:21:28 2017 New Revision: 1809364 URL: http://svn.apache.org/viewvc?rev=1809364&view=rev Log: Add missing Apache license headers.
Modified: commons/proper/vfs/trunk/BUILDING.txt commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/address.xsd commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file1.xml commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file2.xml commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file3-bigger.xml commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-invalid.xml commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-not-well-formed.xml commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-with-xsd-ref.xml commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name.xml commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name.xsd commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/person.xml commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/person.xsd Modified: commons/proper/vfs/trunk/BUILDING.txt URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/BUILDING.txt?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/BUILDING.txt (original) +++ commons/proper/vfs/trunk/BUILDING.txt Sat Sep 23 02:21:28 2017 @@ -18,14 +18,7 @@ To build the site, from a command line, mvn clean install mvn site - -On Windows, use a local staging directory, for example: - -mvn site:stage-deploy -DstagingSiteURL=file:///HOMEPATH%/vfs - -On UNIX, use a local staging directory, for example: - -mvn site:stage-deploy -DstagingSiteURL=file:///$HOME/vfs +mvn site:stage To test, run: Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/address.xsd URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/address.xsd?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/address.xsd (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/address.xsd Sat Sep 23 02:21:28 2017 @@ -1,4 +1,20 @@ <?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" targetNamespace="https://www.apache.org/vfs/example/address" Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file1.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file1.xml?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file1.xml (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file1.xml Sat Sep 23 02:21:28 2017 @@ -1,2 +1,18 @@ <?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. + --> <Root1>foo1</Root1> Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file2.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file2.xml?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file2.xml (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file2.xml Sat Sep 23 02:21:28 2017 @@ -1,2 +1,18 @@ <?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. + --> <Root2>foo2</Root2> Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file3-bigger.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file3-bigger.xml?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file3-bigger.xml (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/file3-bigger.xml Sat Sep 23 02:21:28 2017 @@ -1,4 +1,20 @@ <?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. + --> <Root1> <Child>foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1</Child> <Child>foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1 foo1</Child> Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-invalid.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-invalid.xml?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-invalid.xml (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-invalid.xml Sat Sep 23 02:21:28 2017 @@ -1,4 +1,20 @@ <?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. + --> <name xmlns="https://www.apache.org/vfs/example/name" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-not-well-formed.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-not-well-formed.xml?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-not-well-formed.xml (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-not-well-formed.xml Sat Sep 23 02:21:28 2017 @@ -1,4 +1,20 @@ <?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. + --> <name xmlns="https://www.apache.org/vfs/example/name" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-with-xsd-ref.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-with-xsd-ref.xml?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-with-xsd-ref.xml (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name-with-xsd-ref.xml Sat Sep 23 02:21:28 2017 @@ -1,4 +1,20 @@ <?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. + --> <name xmlns="https://www.apache.org/vfs/example/name" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name.xml?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name.xml (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name.xml Sat Sep 23 02:21:28 2017 @@ -1,4 +1,20 @@ <?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. + --> <name> <first>John</first> <middle>Q.</middle> Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name.xsd URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name.xsd?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name.xsd (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/name.xsd Sat Sep 23 02:21:28 2017 @@ -1,4 +1,20 @@ <?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" targetNamespace="https://www.apache.org/vfs/example/name" Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/person.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/person.xml?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/person.xml (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/person.xml Sat Sep 23 02:21:28 2017 @@ -1,4 +1,20 @@ <?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. + --> <person:person xmlns:person="https://www.apache.org/vfs/example/person" xmlns:name="https://www.apache.org/vfs/example/name" Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/person.xsd URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/person.xsd?rev=1809364&r1=1809363&r2=1809364&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/person.xsd (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/test/resources/test-data/read-xml-tests/person.xsd Sat Sep 23 02:21:28 2017 @@ -1,4 +1,20 @@ <?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="https://www.apache.org/vfs/example/person" xmlns:xs="http://www.w3.org/2001/XMLSchema"