You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/09/05 16:16:50 UTC

svn commit: r440350 - in /incubator/activemq/trunk: activemq-dotnet/ activemq-web-console/src/main/webapp/WEB-INF/tags/form/ activemq-web-console/src/main/webapp/WEB-INF/tags/jms/

Author: chirino
Date: Tue Sep  5 07:16:49 2006
New Revision: 440350

URL: http://svn.apache.org/viewvc?view=rev&rev=440350
Log:
Applied new source header boiler plate per http://www.apache.org/legal/src-headers.html

Modified:
    incubator/activemq/trunk/activemq-dotnet/nant.build
    incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/checkbox.tag
    incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/forEachMapEntry.tag
    incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/option.tag
    incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/text.tag
    incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/uri.tag
    incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/jms/forEachMessage.tag
    incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/jms/persistent.tag

Modified: incubator/activemq/trunk/activemq-dotnet/nant.build
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-dotnet/nant.build?view=diff&rev=440350&r1=440349&r2=440350
==============================================================================
--- incubator/activemq/trunk/activemq-dotnet/nant.build (original)
+++ incubator/activemq/trunk/activemq-dotnet/nant.build Tue Sep  5 07:16:49 2006
@@ -1,4 +1,20 @@
 <?xml version="1.0" ?>
+<!--
+    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.
+-->
 <project name="openwire" default="build">
 
   <!-- set build.date property to current date in format yyyy-MM-dd -->

Modified: incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/checkbox.tag
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/checkbox.tag?view=diff&rev=440350&r1=440349&r2=440350
==============================================================================
--- incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/checkbox.tag (original)
+++ incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/checkbox.tag Tue Sep  5 07:16:49 2006
@@ -1,2 +1,18 @@
+<%--
+    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.
+--%>
 <%@ attribute name="name" type="java.lang.String" required="true"  %>
  <input type="checkbox" name="${name}" value="true" ${param[name] ? 'checked' : ''}/>

Modified: incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/forEachMapEntry.tag
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/forEachMapEntry.tag?view=diff&rev=440350&r1=440349&r2=440350
==============================================================================
--- incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/forEachMapEntry.tag (original)
+++ incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/forEachMapEntry.tag Tue Sep  5 07:16:49 2006
@@ -1,3 +1,19 @@
+<%--
+    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.
+--%>
 <%@ attribute name="var" type="java.lang.String" required="true"  %>
 <%@ attribute name="items" type="java.util.Map" required="true"  %>
 <%@ tag import="java.util.Iterator" %>
@@ -10,4 +26,4 @@
 <%
 	}
 %>       
-    
\ No newline at end of file
+    

Modified: incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/option.tag
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/option.tag?view=diff&rev=440350&r1=440349&r2=440350
==============================================================================
--- incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/option.tag (original)
+++ incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/option.tag Tue Sep  5 07:16:49 2006
@@ -1,3 +1,19 @@
+<%--
+    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.
+--%>
 <%@ attribute name="name" type="java.lang.String" required="true"  %>
 <%@ attribute name="value" type="java.lang.String" required="true"  %>
 <%@ attribute name="label" type="java.lang.String" required="true"  %>

Modified: incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/text.tag
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/text.tag?view=diff&rev=440350&r1=440349&r2=440350
==============================================================================
--- incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/text.tag (original)
+++ incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/text.tag Tue Sep  5 07:16:49 2006
@@ -1,3 +1,19 @@
+<%--
+    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.
+--%>
 <%@ attribute name="name" type="java.lang.String" required="true"  %>
 <%@ attribute name="defaultValue" type="java.lang.String" required="false"  %>
 <%

Modified: incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/uri.tag
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/uri.tag?view=diff&rev=440350&r1=440349&r2=440350
==============================================================================
--- incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/uri.tag (original)
+++ incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/form/uri.tag Tue Sep  5 07:16:49 2006
@@ -1,2 +1,18 @@
+<%--
+    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.
+--%>
 <%@ attribute name="name" type="java.lang.String" required="true"  %>
  <input type="text" name="${name}" value="${param[name]}" />

Modified: incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/jms/forEachMessage.tag
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/jms/forEachMessage.tag?view=diff&rev=440350&r1=440349&r2=440350
==============================================================================
--- incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/jms/forEachMessage.tag (original)
+++ incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/jms/forEachMessage.tag Tue Sep  5 07:16:49 2006
@@ -1,3 +1,19 @@
+<%--
+    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.
+--%>
 <%@ attribute name="var" type="java.lang.String" required="true"  %>
 <%@ attribute name="queueBrowser" type="javax.jms.QueueBrowser" required="true"  %>
 <%@ tag import="java.util.Enumeration" %>
@@ -15,4 +31,4 @@
 			}
 	}
 %>       
-    
\ No newline at end of file
+    

Modified: incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/jms/persistent.tag
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/jms/persistent.tag?view=diff&rev=440350&r1=440349&r2=440350
==============================================================================
--- incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/jms/persistent.tag (original)
+++ incubator/activemq/trunk/activemq-web-console/src/main/webapp/WEB-INF/tags/jms/persistent.tag Tue Sep  5 07:16:49 2006
@@ -1,3 +1,19 @@
+<%--
+    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.
+--%>
 <%@ attribute name="message" type="javax.jms.Message" required="true"  %>
 <%
 	if (message != null) {