Author: rfrovarp
Date: Fri May 13 02:32:29 2011
New Revision: 1102546

URL: http://svn.apache.org/viewvc?rev=1102546&view=rev
Log:
Add license headers

Modified:
    
incubator/droids/trunk/droids-wicket/src/main/java/org/apache/droids/wicket/app/IndexPage.html
    
incubator/droids/trunk/droids-wicket/src/main/java/org/apache/droids/wicket/component/DroidPanel.html
    
incubator/droids/trunk/droids-wicket/src/main/resources/application.properties
    incubator/droids/trunk/droids-wicket/src/main/resources/log4j.properties
    incubator/droids/trunk/droids-wicket/src/site/resources/css/site.css
    incubator/droids/trunk/droids-wicket/src/site/site.xml

Modified: 
incubator/droids/trunk/droids-wicket/src/main/java/org/apache/droids/wicket/app/IndexPage.html
URL: 
http://svn.apache.org/viewvc/incubator/droids/trunk/droids-wicket/src/main/java/org/apache/droids/wicket/app/IndexPage.html?rev=1102546&r1=1102545&r2=1102546&view=diff
==============================================================================
--- 
incubator/droids/trunk/droids-wicket/src/main/java/org/apache/droids/wicket/app/IndexPage.html
 (original)
+++ 
incubator/droids/trunk/droids-wicket/src/main/java/org/apache/droids/wicket/app/IndexPage.html
 Fri May 13 02:32:29 2011
@@ -1,3 +1,20 @@
+<!--
+   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>
     <head>
         <title>Hello Droids</title>

Modified: 
incubator/droids/trunk/droids-wicket/src/main/java/org/apache/droids/wicket/component/DroidPanel.html
URL: 
http://svn.apache.org/viewvc/incubator/droids/trunk/droids-wicket/src/main/java/org/apache/droids/wicket/component/DroidPanel.html?rev=1102546&r1=1102545&r2=1102546&view=diff
==============================================================================
--- 
incubator/droids/trunk/droids-wicket/src/main/java/org/apache/droids/wicket/component/DroidPanel.html
 (original)
+++ 
incubator/droids/trunk/droids-wicket/src/main/java/org/apache/droids/wicket/component/DroidPanel.html
 Fri May 13 02:32:29 2011
@@ -1,3 +1,20 @@
+<!--
+   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.
+-->
+
 <wicket:panel>
 
 <table wicket:id="info">

Modified: 
incubator/droids/trunk/droids-wicket/src/main/resources/application.properties
URL: 
http://svn.apache.org/viewvc/incubator/droids/trunk/droids-wicket/src/main/resources/application.properties?rev=1102546&r1=1102545&r2=1102546&view=diff
==============================================================================
--- 
incubator/droids/trunk/droids-wicket/src/main/resources/application.properties 
(original)
+++ 
incubator/droids/trunk/droids-wicket/src/main/resources/application.properties 
Fri May 13 02:32:29 2011
@@ -1 +1,16 @@
-jdbc.driver=xxx
\ 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.
+
+jdbc.driver=xxx

Modified: 
incubator/droids/trunk/droids-wicket/src/main/resources/log4j.properties
URL: 
http://svn.apache.org/viewvc/incubator/droids/trunk/droids-wicket/src/main/resources/log4j.properties?rev=1102546&r1=1102545&r2=1102546&view=diff
==============================================================================
--- incubator/droids/trunk/droids-wicket/src/main/resources/log4j.properties 
(original)
+++ incubator/droids/trunk/droids-wicket/src/main/resources/log4j.properties 
Fri May 13 02:32:29 2011
@@ -1,3 +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.
+
 log4j.rootLogger=INFO, stdout
 
 log4j.logger.java.sql.Statement=DEBUG

Modified: incubator/droids/trunk/droids-wicket/src/site/resources/css/site.css
URL: 
http://svn.apache.org/viewvc/incubator/droids/trunk/droids-wicket/src/site/resources/css/site.css?rev=1102546&r1=1102545&r2=1102546&view=diff
==============================================================================
--- incubator/droids/trunk/droids-wicket/src/site/resources/css/site.css 
(original)
+++ incubator/droids/trunk/droids-wicket/src/site/resources/css/site.css Fri 
May 13 02:32:29 2011
@@ -1,3 +1,22 @@
+/*
+ * 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.
+ */
+
 #banner {
   height: 121px;
   background-image: none;
@@ -10,4 +29,4 @@
 #bannerRight {
   margin-top: 40px;
   margin-right: 10px;
-}
\ No newline at end of file
+}

Modified: incubator/droids/trunk/droids-wicket/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/incubator/droids/trunk/droids-wicket/src/site/site.xml?rev=1102546&r1=1102545&r2=1102546&view=diff
==============================================================================
--- incubator/droids/trunk/droids-wicket/src/site/site.xml (original)
+++ incubator/droids/trunk/droids-wicket/src/site/site.xml Fri May 13 02:32:29 
2011
@@ -1,4 +1,21 @@
 <?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.
+-->
+
 <project name="Apache Droids">
     <skin>
         <groupId>org.apache.maven.skins</groupId>
@@ -41,4 +58,4 @@
             <item name="Dependencies" href="/dependencies.html" />
         </menu>
     </body>
-</project>
\ No newline at end of file
+</project>


Reply via email to