Modified: incubator/qpid/trunk/qpid/java/common/templating.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/common/templating.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/java/common/templating.py (original) +++ incubator/qpid/trunk/qpid/java/common/templating.py Thu Aug 28 12:26:51 2008 @@ -1,3 +1,21 @@ +# +# 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. +# class Parser:
Modified: incubator/qpid/trunk/qpid/java/etc/coding_standards.xml URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/etc/coding_standards.xml?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/java/etc/coding_standards.xml (original) +++ incubator/qpid/trunk/qpid/java/etc/coding_standards.xml Thu Aug 28 12:26:51 2008 @@ -1,117 +1,138 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN" "http://www.puppycrawl.com/dtds/configuration_1_1.dtd"> -<module name="Checker"> - <!-- Checks package.html defined for all packages. --> - <module name="PackageHtml"/> - - <module name="TreeWalker"> - - <!-- Whitespace conventions. --> - <module name="TabCharacter"/> - - <!-- License conventions. Checks that the license is included in every file. --> - <module name="Header"> - <property name="headerFile" value="${checkstyle.header.file}"/> - </module> - - <!-- Coding style conventions. --> - <module name="com.puppycrawl.tools.checkstyle.checks.coding.PackageDeclarationCheck"> - <property name="severity" value="error"/> - </module> - - <!-- These rules ensure that everything is javadoc'ed. --> - <!-- - <module name="RequiredRegexp"> - <property name="format" value="<table id="crc"><caption>CRC Card</caption>"/> - </module> - --> - - <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocTypeCheck"> - <property name="excludeScope" value="nothing"/> - <property name="scope" value="private"/> - <property name="severity" value="error"/> - <property name="tokens" value="CLASS_DEF, INTERFACE_DEF"/> - <property name="allowMissingParamTags" value="true"/> - </module> - - <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocVariableCheck"> - <property name="excludeScope" value="nothing"/> - <property name="scope" value="private"/> - <property name="severity" value="error"/> - </module> - - <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"> - <property name="allowMissingParamTags" value="false"/> - <property name="allowMissingReturnTag" value="false"/> - <property name="allowMissingThrowsTags" value="false"/> - <property name="allowThrowsTagsForSubclasses" value="false"/> - <property name="allowUndeclaredRTE" value="true"/> - <property name="allowMissingJavadoc" value="false"/> - <property name="allowMissingPropertyJavadoc" value="true"/> - <property name="excludeScope" value="nothing"/> - <property name="scope" value="private"/> - <property name="severity" value="error"/> - <property name="tokens" value="METHOD_DEF, CTOR_DEF"/> - </module> - - <module name="JavadocStyle"> - <property name="scope" value="private"/> - <property name="checkHtml" value="false"/> - <property name="checkFirstSentence" value="true"/> - <property name="checkEmptyJavadoc" value="true"/> - </module> - - <!-- These rules enforce the conventions for the naming of variables. --> - <!-- - <module name="com.puppycrawl.tools.checkstyle.checks.naming.ConstantNameCheck"> - <property name="format" value="^log$|^[A-Z](_?[A-Z0-9]+)*$"/> - <property name="severity" value="error"/> - </module> - - <module name="com.puppycrawl.tools.checkstyle.checks.naming.LocalFinalVariableNameCheck"> - <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> - <property name="severity" value="error"/> - </module> - - <module name="com.puppycrawl.tools.checkstyle.checks.naming.LocalVariableNameCheck"> - <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> - <property name="severity" value="error"/> - </module> - - <module name="com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck"> - <property name="applyToPackage" value="true"/> - <property name="applyToPrivate" value="true"/> - <property name="applyToProtected" value="true"/> - <property name="applyToPublic" value="true"/> - <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> - <property name="severity" value="error"/> - </module> - - <module name="com.puppycrawl.tools.checkstyle.checks.naming.MethodNameCheck"> - <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> - <property name="severity" value="error"/> - </module> - - <module name="com.puppycrawl.tools.checkstyle.checks.naming.PackageNameCheck"> - <property name="format" value="^[a-z]+(\.[a-zA-Z_][a-zA-Z0-9_]*)*$"/> - <property name="severity" value="error"/> - </module> - - <module name="com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck"> - <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> - <property name="severity" value="error"/> - </module> - - <module name="com.puppycrawl.tools.checkstyle.checks.naming.StaticVariableNameCheck"> - <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> - <property name="severity" value="error"/> - </module> - - <module name="com.puppycrawl.tools.checkstyle.checks.naming.TypeNameCheck"> - <property name="format" value="^[A-Z][a-zA-Z0-9_]*$"/> - <property name="severity" value="error"/> - <property name="tokens" value="CLASS_DEF, INTERFACE_DEF"/> - </module> - --> - </module> -</module> +<?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. + +--> + +<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN" "http://www.puppycrawl.com/dtds/configuration_1_1.dtd"> +<module name="Checker"> + <!-- Checks package.html defined for all packages. --> + <module name="PackageHtml"/> + + <module name="TreeWalker"> + + <!-- Whitespace conventions. --> + <module name="TabCharacter"/> + + <!-- License conventions. Checks that the license is included in every file. --> + <module name="Header"> + <property name="headerFile" value="${checkstyle.header.file}"/> + </module> + + <!-- Coding style conventions. --> + <module name="com.puppycrawl.tools.checkstyle.checks.coding.PackageDeclarationCheck"> + <property name="severity" value="error"/> + </module> + + <!-- These rules ensure that everything is javadoc'ed. --> + <!-- + <module name="RequiredRegexp"> + <property name="format" value="<table id="crc"><caption>CRC Card</caption>"/> + </module> + --> + + <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocTypeCheck"> + <property name="excludeScope" value="nothing"/> + <property name="scope" value="private"/> + <property name="severity" value="error"/> + <property name="tokens" value="CLASS_DEF, INTERFACE_DEF"/> + <property name="allowMissingParamTags" value="true"/> + </module> + + <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocVariableCheck"> + <property name="excludeScope" value="nothing"/> + <property name="scope" value="private"/> + <property name="severity" value="error"/> + </module> + + <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"> + <property name="allowMissingParamTags" value="false"/> + <property name="allowMissingReturnTag" value="false"/> + <property name="allowMissingThrowsTags" value="false"/> + <property name="allowThrowsTagsForSubclasses" value="false"/> + <property name="allowUndeclaredRTE" value="true"/> + <property name="allowMissingJavadoc" value="false"/> + <property name="allowMissingPropertyJavadoc" value="true"/> + <property name="excludeScope" value="nothing"/> + <property name="scope" value="private"/> + <property name="severity" value="error"/> + <property name="tokens" value="METHOD_DEF, CTOR_DEF"/> + </module> + + <module name="JavadocStyle"> + <property name="scope" value="private"/> + <property name="checkHtml" value="false"/> + <property name="checkFirstSentence" value="true"/> + <property name="checkEmptyJavadoc" value="true"/> + </module> + + <!-- These rules enforce the conventions for the naming of variables. --> + <!-- + <module name="com.puppycrawl.tools.checkstyle.checks.naming.ConstantNameCheck"> + <property name="format" value="^log$|^[A-Z](_?[A-Z0-9]+)*$"/> + <property name="severity" value="error"/> + </module> + + <module name="com.puppycrawl.tools.checkstyle.checks.naming.LocalFinalVariableNameCheck"> + <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> + <property name="severity" value="error"/> + </module> + + <module name="com.puppycrawl.tools.checkstyle.checks.naming.LocalVariableNameCheck"> + <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> + <property name="severity" value="error"/> + </module> + + <module name="com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck"> + <property name="applyToPackage" value="true"/> + <property name="applyToPrivate" value="true"/> + <property name="applyToProtected" value="true"/> + <property name="applyToPublic" value="true"/> + <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> + <property name="severity" value="error"/> + </module> + + <module name="com.puppycrawl.tools.checkstyle.checks.naming.MethodNameCheck"> + <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> + <property name="severity" value="error"/> + </module> + + <module name="com.puppycrawl.tools.checkstyle.checks.naming.PackageNameCheck"> + <property name="format" value="^[a-z]+(\.[a-zA-Z_][a-zA-Z0-9_]*)*$"/> + <property name="severity" value="error"/> + </module> + + <module name="com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck"> + <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> + <property name="severity" value="error"/> + </module> + + <module name="com.puppycrawl.tools.checkstyle.checks.naming.StaticVariableNameCheck"> + <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> + <property name="severity" value="error"/> + </module> + + <module name="com.puppycrawl.tools.checkstyle.checks.naming.TypeNameCheck"> + <property name="format" value="^[A-Z][a-zA-Z0-9_]*$"/> + <property name="severity" value="error"/> + <property name="tokens" value="CLASS_DEF, INTERFACE_DEF"/> + </module> + --> + </module> +</module> Modified: incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/concurrency/package.html URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/concurrency/package.html?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/concurrency/package.html (original) +++ incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/concurrency/package.html Thu Aug 28 12:26:51 2008 @@ -1,7 +1,28 @@ -<html> -<body> -Contains code to assist in testing concurrency issues using coordinated threads to present code under test with -oportunities to expose concurrency bugs. Some example concurrency bugs that may be tested using these techniques are -race conditions, dead locks, live locks, dirty reads, phantom reads, non repeatable reads and so on. -</body> -</html> \ No newline at end of file +<!-- + + 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. + +--> + +<html> +<body> +Contains code to assist in testing concurrency issues using coordinated threads to present code under test with +oportunities to expose concurrency bugs. Some example concurrency bugs that may be tested using these techniques are +race conditions, dead locks, live locks, dirty reads, phantom reads, non repeatable reads and so on. +</body> +</html> Modified: incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/listeners/package.html URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/listeners/package.html?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/listeners/package.html (original) +++ incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/listeners/package.html Thu Aug 28 12:26:51 2008 @@ -1,6 +1,27 @@ -<html> -<body> -Listners for test statistics are defined in this package. At the moment there is only one listener which writes all test -statistics out to a CSV (comma seperated values) file which can be loaded by most spread sheets. -</body> -</html> \ No newline at end of file +<!-- + + 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. + +--> + +<html> +<body> +Listners for test statistics are defined in this package. At the moment there is only one listener which writes all test +statistics out to a CSV (comma seperated values) file which can be loaded by most spread sheets. +</body> +</html> Modified: incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/package.html URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/package.html?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/package.html (original) +++ incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/package.html Thu Aug 28 12:26:51 2008 @@ -1,12 +1,33 @@ -<html> -<body> -Basic JUnit is enahanced with test runners to run tests repeatedly, simultaneously in many threads and with increasing -test sizes for asymptotic performance measurements. There are features to measure the time and amount of memory that -tests use as well as to record the asymptotic test size parameters. There are some utilities to write these test -statistics to various file formats too and these can be found in the listeners package. - -</p>The main test runner class is TKTestRunner which can be called with command line parameters to specify how tests -should be run. - -</body> -</html> \ No newline at end of file +<!-- + + 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. + +--> + +<html> +<body> +Basic JUnit is enahanced with test runners to run tests repeatedly, simultaneously in many threads and with increasing +test sizes for asymptotic performance measurements. There are features to measure the time and amount of memory that +tests use as well as to record the asymptotic test size parameters. There are some utilities to write these test +statistics to various file formats too and these can be found in the listeners package. + +</p>The main test runner class is TKTestRunner which can be called with command line parameters to specify how tests +should be run. + +</body> +</html> Modified: incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/util/package.html URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/util/package.html?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/util/package.html (original) +++ incubator/qpid/trunk/qpid/java/junit-toolkit/src/main/org/apache/qpid/junit/extensions/util/package.html Thu Aug 28 12:26:51 2008 @@ -1,6 +1,27 @@ -<html> -<body> -Provides some helper classes. ContextualProperties allows a hierarchy of properties to be used in properties file with -default overrides. SizeOf takes memeory measurements by stabilizing the garbage collector. -</body> -</html> \ No newline at end of file +<!-- + + 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. + +--> + +<html> +<body> +Provides some helper classes. ContextualProperties allows a hierarchy of properties to be used in properties file with +default overrides. SizeOf takes memeory measurements by stabilizing the garbage collector. +</body> +</html> Modified: incubator/qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/framework/package.html URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/framework/package.html?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/framework/package.html (original) +++ incubator/qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/framework/package.html Thu Aug 28 12:26:51 2008 @@ -1,3 +1,24 @@ +<!-- + + 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. + +--> + <html> <body> <p/>A framework for testing Qpid, built around a standard 'test circuit' design. The idea behind this framework is the @@ -19,4 +40,4 @@ test report gethered from all of the receivers. Test code will be written to the assertions making as few assumptions as possible about the exact test topology. </body> -</html> \ No newline at end of file +</html> Modified: incubator/qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/xa/FaultTest.java URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/xa/FaultTest.java?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/xa/FaultTest.java (original) +++ incubator/qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/xa/FaultTest.java Thu Aug 28 12:26:51 2008 @@ -1,4 +1,25 @@ package org.apache.qpid.test.unit.xa; +/* + * + * 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. + * + */ + import org.slf4j.Logger; import org.slf4j.LoggerFactory; Modified: incubator/qpid/trunk/qpid/java/test-provider.properties URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/test-provider.properties?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/java/test-provider.properties (original) +++ incubator/qpid/trunk/qpid/java/test-provider.properties Thu Aug 28 12:26:51 2008 @@ -1,3 +1,24 @@ +# +# +# 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. +# +# + connectionfactory.local = amqp://username:[EMAIL PROTECTED]/test?brokerlist='tcp://localhost:5672' connectionfactory.vm = amqp://username:[EMAIL PROTECTED]/test?brokerlist='vm://:1' Modified: incubator/qpid/trunk/qpid/java/testkit/src/main/java/org/apache/qpid/testkit/MessageFactory.java URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/testkit/src/main/java/org/apache/qpid/testkit/MessageFactory.java?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/java/testkit/src/main/java/org/apache/qpid/testkit/MessageFactory.java (original) +++ incubator/qpid/trunk/qpid/java/testkit/src/main/java/org/apache/qpid/testkit/MessageFactory.java Thu Aug 28 12:26:51 2008 @@ -1,4 +1,25 @@ package org.apache.qpid.testkit; +/* + * + * 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. + * + */ + import javax.jms.BytesMessage; import javax.jms.JMSException; Modified: incubator/qpid/trunk/qpid/python/examples/direct/declare_queues.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/direct/declare_queues.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/direct/declare_queues.py (original) +++ incubator/qpid/trunk/qpid/python/examples/direct/declare_queues.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ declare_queues.py Modified: incubator/qpid/trunk/qpid/python/examples/direct/direct_consumer.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/direct/direct_consumer.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/direct/direct_consumer.py (original) +++ incubator/qpid/trunk/qpid/python/examples/direct/direct_consumer.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ direct_consumer.py Modified: incubator/qpid/trunk/qpid/python/examples/direct/direct_producer.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/direct/direct_producer.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/direct/direct_producer.py (original) +++ incubator/qpid/trunk/qpid/python/examples/direct/direct_producer.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ direct_producer.py Modified: incubator/qpid/trunk/qpid/python/examples/direct/listener.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/direct/listener.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/direct/listener.py (original) +++ incubator/qpid/trunk/qpid/python/examples/direct/listener.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ listener.py Modified: incubator/qpid/trunk/qpid/python/examples/fanout/fanout_consumer.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/fanout/fanout_consumer.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/fanout/fanout_consumer.py (original) +++ incubator/qpid/trunk/qpid/python/examples/fanout/fanout_consumer.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ fanout_consumer.py Modified: incubator/qpid/trunk/qpid/python/examples/fanout/fanout_producer.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/fanout/fanout_producer.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/fanout/fanout_producer.py (original) +++ incubator/qpid/trunk/qpid/python/examples/fanout/fanout_producer.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ fanout_producer.py Modified: incubator/qpid/trunk/qpid/python/examples/fanout/listener.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/fanout/listener.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/fanout/listener.py (original) +++ incubator/qpid/trunk/qpid/python/examples/fanout/listener.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ listener.py Modified: incubator/qpid/trunk/qpid/python/examples/pubsub/topic_publisher.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/pubsub/topic_publisher.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/pubsub/topic_publisher.py (original) +++ incubator/qpid/trunk/qpid/python/examples/pubsub/topic_publisher.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ topic_publisher.py Modified: incubator/qpid/trunk/qpid/python/examples/pubsub/topic_subscriber.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/pubsub/topic_subscriber.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/pubsub/topic_subscriber.py (original) +++ incubator/qpid/trunk/qpid/python/examples/pubsub/topic_subscriber.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ topic_subscriber.py Modified: incubator/qpid/trunk/qpid/python/examples/request-response/client.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/request-response/client.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/request-response/client.py (original) +++ incubator/qpid/trunk/qpid/python/examples/request-response/client.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ client.py Modified: incubator/qpid/trunk/qpid/python/examples/request-response/server.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/request-response/server.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/request-response/server.py (original) +++ incubator/qpid/trunk/qpid/python/examples/request-response/server.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ server.py Modified: incubator/qpid/trunk/qpid/python/examples/xml-exchange/declare_queues.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/xml-exchange/declare_queues.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/xml-exchange/declare_queues.py (original) +++ incubator/qpid/trunk/qpid/python/examples/xml-exchange/declare_queues.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ declare_queues.py Modified: incubator/qpid/trunk/qpid/python/examples/xml-exchange/listener.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/xml-exchange/listener.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/xml-exchange/listener.py (original) +++ incubator/qpid/trunk/qpid/python/examples/xml-exchange/listener.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ listener.py Modified: incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_consumer.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_consumer.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_consumer.py (original) +++ incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_consumer.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ direct_consumer.py Modified: incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_producer.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_producer.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_producer.py (original) +++ incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_producer.py Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# """ xml_producer.py Modified: incubator/qpid/trunk/qpid/python/hello-world URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/hello-world?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/hello-world (original) +++ incubator/qpid/trunk/qpid/python/hello-world Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# from qpid.connection import Connection from qpid.util import connect from qpid.datatypes import uuid4, Message Modified: incubator/qpid/trunk/qpid/python/perftest URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/perftest?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/perftest (original) +++ incubator/qpid/trunk/qpid/python/perftest Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# def publisher(n): import qpid Modified: incubator/qpid/trunk/qpid/python/server URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/server?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/server (original) +++ incubator/qpid/trunk/qpid/python/server Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# import qpid from qpid.connection import Connection, listen from qpid.delegate import Delegate Modified: incubator/qpid/trunk/qpid/python/server010 URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/server010?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/server010 (original) +++ incubator/qpid/trunk/qpid/python/server010 Thu Aug 28 12:26:51 2008 @@ -1,4 +1,22 @@ #!/usr/bin/env python +# +# 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. +# from qpid import delegates from qpid.connection010 import Connection Modified: incubator/qpid/trunk/qpid/python/tests/spec.py URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/tests/spec.py?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/python/tests/spec.py (original) +++ incubator/qpid/trunk/qpid/python/tests/spec.py Thu Aug 28 12:26:51 2008 @@ -1,3 +1,21 @@ +# +# 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. +# from unittest import TestCase from qpid.spec import load from qpid.testlib import testrunner Modified: incubator/qpid/trunk/qpid/ruby/run-tests URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/ruby/run-tests?rev=689937&r1=689936&r2=689937&view=diff ============================================================================== --- incubator/qpid/trunk/qpid/ruby/run-tests (original) +++ incubator/qpid/trunk/qpid/ruby/run-tests Thu Aug 28 12:26:51 2008 @@ -1,4 +1,23 @@ #!/usr/bin/ruby +# +# 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. +# +# require "tests/channel" require "tests/basic"
