You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by ab...@apache.org on 2012/08/09 23:07:11 UTC

svn commit: r1371483 [3/5] - in /incubator/celix/trunk: ./ cmake/ cmake/modules/ dependency_manager/ dependency_manager/private/ dependency_manager/private/src/ dependency_manager/public/ dependency_manager/public/include/ deployment_admin/ deployment_...

Modified: incubator/celix/trunk/examples/osgi-in-action/chapter04-paint-example/triangle/private/src/activator.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/osgi-in-action/chapter04-paint-example/triangle/private/src/activator.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/osgi-in-action/chapter04-paint-example/triangle/private/src/activator.c (original)
+++ incubator/celix/trunk/examples/osgi-in-action/chapter04-paint-example/triangle/private/src/activator.c Thu Aug  9 21:06:58 2012
@@ -16,7 +16,13 @@
  *specific language governing permissions and limitations
  *under the License.
  */
-
+/*
+ * activator.c
+ *
+ *  \date       Aug 22, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
+ */
 #include <stdlib.h>
 #include <stdio.h>
 #include <apr_general.h>

Modified: incubator/celix/trunk/examples/osgi-in-action/chapter04-paint-example/triangle/private/src/triangle_shape.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/osgi-in-action/chapter04-paint-example/triangle/private/src/triangle_shape.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/osgi-in-action/chapter04-paint-example/triangle/private/src/triangle_shape.c (original)
+++ incubator/celix/trunk/examples/osgi-in-action/chapter04-paint-example/triangle/private/src/triangle_shape.c Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * simple_shape.c
  *
- *  Created on: Aug 22, 2011
- *      Author: operator
+ *  \date       Aug 22, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 

Modified: incubator/celix/trunk/examples/whiteboard/publisherA/CMakeLists.txt
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/publisherA/CMakeLists.txt?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/publisherA/CMakeLists.txt (original)
+++ incubator/celix/trunk/examples/whiteboard/publisherA/CMakeLists.txt Thu Aug  9 21:06:58 2012
@@ -15,10 +15,10 @@
 # specific language governing permissions and limitations
 # under the License.
 
-bundle(publisherA SOURCES activator publisher)
-include_directories("${PROJECT_SOURCE_DIR}/celix")
-include_directories("../publisherService")
+bundle(publisherA SOURCES private/src/activator private/src/publisher)
+include_directories("../publisherService/public/include")
+include_directories("../publisherService/private/include")
 include_directories("${PROJECT_SOURCE_DIR}/utils/public/include")
 target_link_libraries(publisherA celix_framework)
 
-package(publisherA FILES ../publisherService/publisher.h)
\ No newline at end of file
+package(publisherA FILES ../publisherService/public/include/publisher.h)
\ No newline at end of file

Copied: incubator/celix/trunk/examples/whiteboard/publisherA/private/src/activator.c (from r1370761, incubator/celix/trunk/examples/whiteboard/publisherA/activator.c)
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/publisherA/private/src/activator.c?p2=incubator/celix/trunk/examples/whiteboard/publisherA/private/src/activator.c&p1=incubator/celix/trunk/examples/whiteboard/publisherA/activator.c&r1=1370761&r2=1371483&rev=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/publisherA/activator.c (original)
+++ incubator/celix/trunk/examples/whiteboard/publisherA/private/src/activator.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * activator.c
  *
- *  Created on: Aug 23, 2010
- *      Author: alexanderb
+ *  \date       Aug 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 

Copied: incubator/celix/trunk/examples/whiteboard/publisherA/private/src/publisher.c (from r1370761, incubator/celix/trunk/examples/whiteboard/publisherA/publisher.c)
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/publisherA/private/src/publisher.c?p2=incubator/celix/trunk/examples/whiteboard/publisherA/private/src/publisher.c&p1=incubator/celix/trunk/examples/whiteboard/publisherA/publisher.c&r1=1370761&r2=1371483&rev=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/publisherA/publisher.c (original)
+++ incubator/celix/trunk/examples/whiteboard/publisherA/private/src/publisher.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * publisher.c
  *
- *  Created on: Aug 23, 2010
- *      Author: alexanderb
+ *  \date       Aug 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdio.h>
 

Modified: incubator/celix/trunk/examples/whiteboard/publisherB/CMakeLists.txt
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/publisherB/CMakeLists.txt?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/publisherB/CMakeLists.txt (original)
+++ incubator/celix/trunk/examples/whiteboard/publisherB/CMakeLists.txt Thu Aug  9 21:06:58 2012
@@ -15,10 +15,10 @@
 # specific language governing permissions and limitations
 # under the License.
 
-bundle(publisherB SOURCES activator publisher)
-include_directories("${PROJECT_SOURCE_DIR}/celix")
-include_directories("../publisherService")
+bundle(publisherB SOURCES private/src/activator private/src/publisher)
+include_directories("../publisherService/public/include")
+include_directories("../publisherService/private/include")
 target_link_libraries(publisherB celix_framework)
 include_directories("${PROJECT_SOURCE_DIR}/utils/public/include")
 
-package(publisherB FILES ../publisherService/publisher.h)
\ No newline at end of file
+package(publisherB FILES ../publisherService/public/include/publisher.h)
\ No newline at end of file

Copied: incubator/celix/trunk/examples/whiteboard/publisherB/private/src/activator.c (from r1370761, incubator/celix/trunk/examples/whiteboard/publisherB/activator.c)
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/publisherB/private/src/activator.c?p2=incubator/celix/trunk/examples/whiteboard/publisherB/private/src/activator.c&p1=incubator/celix/trunk/examples/whiteboard/publisherB/activator.c&r1=1370761&r2=1371483&rev=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/publisherB/activator.c (original)
+++ incubator/celix/trunk/examples/whiteboard/publisherB/private/src/activator.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * activator.c
  *
- *  Created on: Aug 23, 2010
- *      Author: alexanderb
+ *  \date       Aug 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 

Copied: incubator/celix/trunk/examples/whiteboard/publisherB/private/src/publisher.c (from r1370761, incubator/celix/trunk/examples/whiteboard/publisherB/publisher.c)
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/publisherB/private/src/publisher.c?p2=incubator/celix/trunk/examples/whiteboard/publisherB/private/src/publisher.c&p1=incubator/celix/trunk/examples/whiteboard/publisherB/publisher.c&r1=1370761&r2=1371483&rev=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/publisherB/publisher.c (original)
+++ incubator/celix/trunk/examples/whiteboard/publisherB/private/src/publisher.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * publisher.c
  *
- *  Created on: Aug 23, 2010
- *      Author: alexanderb
+ *  \date       Aug 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdio.h>
 

Copied: incubator/celix/trunk/examples/whiteboard/publisherService/private/include/publisher_private.h (from r1370761, incubator/celix/trunk/examples/whiteboard/publisherService/publisher_private.h)
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/publisherService/private/include/publisher_private.h?p2=incubator/celix/trunk/examples/whiteboard/publisherService/private/include/publisher_private.h&p1=incubator/celix/trunk/examples/whiteboard/publisherService/publisher_private.h&r1=1370761&r2=1371483&rev=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/publisherService/publisher_private.h (original)
+++ incubator/celix/trunk/examples/whiteboard/publisherService/private/include/publisher_private.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * publisher_private.h
  *
- *  Created on: Aug 23, 2010
- *      Author: alexanderb
+ *  \date       Aug 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef PUBLISHER_PRIVATE_H_

Copied: incubator/celix/trunk/examples/whiteboard/publisherService/public/include/publisher.h (from r1370761, incubator/celix/trunk/examples/whiteboard/publisherService/publisher.h)
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/publisherService/public/include/publisher.h?p2=incubator/celix/trunk/examples/whiteboard/publisherService/public/include/publisher.h&p1=incubator/celix/trunk/examples/whiteboard/publisherService/publisher.h&r1=1370761&r2=1371483&rev=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/publisherService/publisher.h (original)
+++ incubator/celix/trunk/examples/whiteboard/publisherService/public/include/publisher.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * publisher.h
  *
- *  Created on: Aug 23, 2010
- *      Author: alexanderb
+ *  \date       Aug 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef PUBLISHER_H_

Modified: incubator/celix/trunk/examples/whiteboard/tracker/CMakeLists.txt
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/tracker/CMakeLists.txt?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/tracker/CMakeLists.txt (original)
+++ incubator/celix/trunk/examples/whiteboard/tracker/CMakeLists.txt Thu Aug  9 21:06:58 2012
@@ -15,8 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-bundle(tracker SOURCES activator)
-include_directories("${PROJECT_SOURCE_DIR}/celix")
-include_directories("../publisherService")
+bundle(tracker SOURCES private/src/activator)
+include_directories("../publisherService/public/include")
 include_directories("${PROJECT_SOURCE_DIR}/utils/public/include")
 target_link_libraries(tracker celix_framework)

Copied: incubator/celix/trunk/examples/whiteboard/tracker/private/src/activator.c (from r1370761, incubator/celix/trunk/examples/whiteboard/tracker/activator.c)
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/tracker/private/src/activator.c?p2=incubator/celix/trunk/examples/whiteboard/tracker/private/src/activator.c&p1=incubator/celix/trunk/examples/whiteboard/tracker/activator.c&r1=1370761&r2=1371483&rev=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/tracker/activator.c (original)
+++ incubator/celix/trunk/examples/whiteboard/tracker/private/src/activator.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * activator.c
  *
- *  Created on: Aug 23, 2010
- *      Author: alexanderb
+ *  \date       Aug 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <pthread.h>

Modified: incubator/celix/trunk/examples/whiteboard/tracker_depman/CMakeLists.txt
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/tracker_depman/CMakeLists.txt?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/tracker_depman/CMakeLists.txt (original)
+++ incubator/celix/trunk/examples/whiteboard/tracker_depman/CMakeLists.txt Thu Aug  9 21:06:58 2012
@@ -15,10 +15,10 @@
 # specific language governing permissions and limitations
 # under the License.
 
-bundle(tracker_depman SOURCES dependency_activator tracker)
-include_directories("${PROJECT_SOURCE_DIR}/celix")
-include_directories("${PROJECT_SOURCE_DIR}/dependency_manager")
-include_directories("../publisherService")
+bundle(tracker_depman SOURCES private/src/dependency_activator private/src/tracker)
+include_directories("private/include")
+include_directories("${PROJECT_SOURCE_DIR}/dependency_manager/public/include")
+include_directories("../publisherService/public/include")
 include_directories("${PROJECT_SOURCE_DIR}/utils/public/include")
 include_directories("${PROJECT_SOURCE_DIR}/log_service/public/include")
 target_link_libraries(tracker_depman celix_framework dependency_manager)

Copied: incubator/celix/trunk/examples/whiteboard/tracker_depman/private/include/tracker.h (from r1370761, incubator/celix/trunk/examples/whiteboard/tracker_depman/tracker.h)
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/tracker_depman/private/include/tracker.h?p2=incubator/celix/trunk/examples/whiteboard/tracker_depman/private/include/tracker.h&p1=incubator/celix/trunk/examples/whiteboard/tracker_depman/tracker.h&r1=1370761&r2=1371483&rev=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/tracker_depman/tracker.h (original)
+++ incubator/celix/trunk/examples/whiteboard/tracker_depman/private/include/tracker.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * tracker.h
  *
- *  Created on: Mar 7, 2011
- *      Author: alexanderb
+ *  \date       Mar 7, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef TRACKER_H_

Copied: incubator/celix/trunk/examples/whiteboard/tracker_depman/private/src/dependency_activator.c (from r1370761, incubator/celix/trunk/examples/whiteboard/tracker_depman/dependency_activator.c)
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/tracker_depman/private/src/dependency_activator.c?p2=incubator/celix/trunk/examples/whiteboard/tracker_depman/private/src/dependency_activator.c&p1=incubator/celix/trunk/examples/whiteboard/tracker_depman/dependency_activator.c&r1=1370761&r2=1371483&rev=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/tracker_depman/dependency_activator.c (original)
+++ incubator/celix/trunk/examples/whiteboard/tracker_depman/private/src/dependency_activator.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * dependency_activator.c
  *
- *  Created on: Aug 23, 2010
- *      Author: alexanderb
+ *  \date       Aug 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <stdio.h>

Copied: incubator/celix/trunk/examples/whiteboard/tracker_depman/private/src/tracker.c (from r1370761, incubator/celix/trunk/examples/whiteboard/tracker_depman/tracker.c)
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/examples/whiteboard/tracker_depman/private/src/tracker.c?p2=incubator/celix/trunk/examples/whiteboard/tracker_depman/private/src/tracker.c&p1=incubator/celix/trunk/examples/whiteboard/tracker_depman/tracker.c&r1=1370761&r2=1371483&rev=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/examples/whiteboard/tracker_depman/tracker.c (original)
+++ incubator/celix/trunk/examples/whiteboard/tracker_depman/private/src/tracker.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * tracker.c
  *
- *  Created on: Mar 7, 2011
- *      Author: alexanderb
+ *  \date       Mar 7, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <stdio.h>

Modified: incubator/celix/trunk/framework/CMakeLists.txt
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/CMakeLists.txt?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/CMakeLists.txt (original)
+++ incubator/celix/trunk/framework/CMakeLists.txt Thu Aug  9 21:06:58 2012
@@ -14,6 +14,7 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
+
 celix_subproject(FRAMEWORK "Option to build the framework shared library" "ON" DEPS UTILS)
 if (FRAMEWORK) 
     cmake_minimum_required(VERSION 2.6)

Modified: incubator/celix/trunk/framework/private/include/attribute.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/include/attribute.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/include/attribute.h (original)
+++ incubator/celix/trunk/framework/private/include/attribute.h Thu Aug  9 21:06:58 2012
@@ -19,10 +19,10 @@
 /*
  * attribute.h
  *
- *  Created on: Jul 27, 2010
- *      Author: alexanderb
+ *  \date       Jul 27, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
-
 #ifndef ATTRIBUTE_H_
 #define ATTRIBUTE_H_
 

Modified: incubator/celix/trunk/framework/private/include/bundle_cache.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/include/bundle_cache.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/include/bundle_cache.h (original)
+++ incubator/celix/trunk/framework/private/include/bundle_cache.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * bundle_cache.h
  *
- *  Created on: Aug 8, 2010
- *      Author: alexanderb
+ *  \date       Aug 8, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef BUNDLE_CACHE_H_

Modified: incubator/celix/trunk/framework/private/include/bundle_private.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/include/bundle_private.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/include/bundle_private.h (original)
+++ incubator/celix/trunk/framework/private/include/bundle_private.h Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * bundle_private.h
  *
- *  Created on: Feb 18, 2011
- *      Author: alexanderb
+ *  \date       Feb 18, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef BUNDLE_PRIVATE_H_

Modified: incubator/celix/trunk/framework/private/include/framework_log.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/include/framework_log.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/include/framework_log.h (original)
+++ incubator/celix/trunk/framework/private/include/framework_log.h Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * log.h
  *
- *  Created on: Dec 8, 2011
- *      Author: alexander
+ *  \date       Dec 8, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef LOG_H_

Modified: incubator/celix/trunk/framework/private/include/listener_hook_info_impl.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/include/listener_hook_info_impl.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/include/listener_hook_info_impl.h (original)
+++ incubator/celix/trunk/framework/private/include/listener_hook_info_impl.h Thu Aug  9 21:06:58 2012
@@ -1,13 +1,36 @@
+/**
+ *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_hook_info_impl.h
  *
- *  Created on: Oct 28, 2011
- *      Author: alexander
+ *  \date       Oct 28, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef LISTENER_HOOK_INFO_IMPL_H_
 #define LISTENER_HOOK_INFO_IMPL_H_
 
+#include <apr_general.h>
+
+#include "celix_errno.h"
+
 celix_status_t listenerHookInfo_create(apr_pool_t *pool);
 
 #endif /* LISTENER_HOOK_INFO_IMPL_H_ */

Modified: incubator/celix/trunk/framework/private/include/manifest_parser.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/include/manifest_parser.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/include/manifest_parser.h (original)
+++ incubator/celix/trunk/framework/private/include/manifest_parser.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * manifest_parser.h
  *
- *  Created on: Jul 13, 2010
- *      Author: alexanderb
+ *  \date       Jul 13, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef MANIFEST_PARSER_H_

Modified: incubator/celix/trunk/framework/private/include/resolver.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/include/resolver.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/include/resolver.h (original)
+++ incubator/celix/trunk/framework/private/include/resolver.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * resolver.h
  *
- *  Created on: Jul 13, 2010
- *      Author: alexanderb
+ *  \date       Jul 13, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef RESOLVER_H_

Modified: incubator/celix/trunk/framework/private/src/attribute.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/attribute.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/attribute.c (original)
+++ incubator/celix/trunk/framework/private/src/attribute.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * attribute.c
  *
- *  Created on: Jul 27, 2010
- *      Author: alexanderb
+ *  \date       Jul 27, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <stdio.h>

Modified: incubator/celix/trunk/framework/private/src/bundle.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/bundle.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/bundle.c (original)
+++ incubator/celix/trunk/framework/private/src/bundle.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * bundle.c
  *
- *  Created on: Mar 23, 2010
- *      Author: alexanderb
+ *  \date       Mar 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <string.h>

Modified: incubator/celix/trunk/framework/private/src/bundle_archive.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/bundle_archive.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/bundle_archive.c (original)
+++ incubator/celix/trunk/framework/private/src/bundle_archive.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * bundle_archive.c
  *
- *  Created on: Aug 8, 2010
- *      Author: alexanderb
+ *  \date       Aug 8, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdio.h>
 #include <stdlib.h>

Modified: incubator/celix/trunk/framework/private/src/bundle_cache.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/bundle_cache.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/bundle_cache.c (original)
+++ incubator/celix/trunk/framework/private/src/bundle_cache.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * bundle_cache.c
  *
- *  Created on: Aug 6, 2010
- *      Author: alexanderb
+ *  \date       Aug 6, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #ifndef _WIN32
 #include <dirent.h>

Modified: incubator/celix/trunk/framework/private/src/bundle_context.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/bundle_context.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/bundle_context.c (original)
+++ incubator/celix/trunk/framework/private/src/bundle_context.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * bundle_context.c
  *
- *  Created on: Mar 26, 2010
- *      Author: alexanderb
+ *  \date       Mar 26, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <stdio.h>

Modified: incubator/celix/trunk/framework/private/src/bundle_revision.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/bundle_revision.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/bundle_revision.c (original)
+++ incubator/celix/trunk/framework/private/src/bundle_revision.c Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * bundle_revision.c
  *
- *  Created on: Apr 12, 2011
- *      Author: alexanderb
+ *  \date       Apr 12, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <string.h>

Modified: incubator/celix/trunk/framework/private/src/capability.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/capability.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/capability.c (original)
+++ incubator/celix/trunk/framework/private/src/capability.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * capability.c
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 

Modified: incubator/celix/trunk/framework/private/src/celix_errorcodes.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/celix_errorcodes.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/celix_errorcodes.c (original)
+++ incubator/celix/trunk/framework/private/src/celix_errorcodes.c Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * celix_errorcodes.c
  *
- *  Created on: Aug 30, 2011
- *      Author: alexander
+ *  \date       Aug 30, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include "celix_errno.h"
 

Modified: incubator/celix/trunk/framework/private/src/filter.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/filter.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/filter.c (original)
+++ incubator/celix/trunk/framework/private/src/filter.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * filter.c
  *
- *  Created on: Apr 28, 2010
- *      Author: dk489
+ *  \date       Apr 28, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdio.h>
 #include <string.h>

Modified: incubator/celix/trunk/framework/private/src/framework.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/framework.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/framework.c (original)
+++ incubator/celix/trunk/framework/private/src/framework.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * framework.c
  *
- *  Created on: Mar 23, 2010
- *      Author: alexanderb
+ *  \date       Mar 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <stdio.h>

Modified: incubator/celix/trunk/framework/private/src/manifest.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/manifest.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/manifest.c (original)
+++ incubator/celix/trunk/framework/private/src/manifest.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * manifest.c
  *
- *  Created on: Jul 5, 2010
- *      Author: alexanderb
+ *  \date       Jul 5, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdio.h>
 #include <stdlib.h>

Modified: incubator/celix/trunk/framework/private/src/manifest_parser.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/manifest_parser.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/manifest_parser.c (original)
+++ incubator/celix/trunk/framework/private/src/manifest_parser.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * manifest_parser.c
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <string.h>

Modified: incubator/celix/trunk/framework/private/src/module.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/module.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/module.c (original)
+++ incubator/celix/trunk/framework/private/src/module.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * module.c
  *
- *  Created on: Jul 19, 2010
- *      Author: alexanderb
+ *  \date       Jul 19, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdio.h>
 #include <stdlib.h>

Modified: incubator/celix/trunk/framework/private/src/properties.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/properties.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/properties.c (original)
+++ incubator/celix/trunk/framework/private/src/properties.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * properties.c
  *
- *  Created on: Apr 27, 2010
- *      Author: dk489
+ *  \date       Apr 27, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdio.h>
 #include <string.h>

Modified: incubator/celix/trunk/framework/private/src/requirement.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/requirement.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/requirement.c (original)
+++ incubator/celix/trunk/framework/private/src/requirement.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * requirement.c
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 

Modified: incubator/celix/trunk/framework/private/src/resolver.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/resolver.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/resolver.c (original)
+++ incubator/celix/trunk/framework/private/src/resolver.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * resolver.c
  *
- *  Created on: Jul 13, 2010
- *      Author: alexanderb
+ *  \date       Jul 13, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <string.h>

Modified: incubator/celix/trunk/framework/private/src/service_reference.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/service_reference.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/service_reference.c (original)
+++ incubator/celix/trunk/framework/private/src/service_reference.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * service_reference.c
  *
- *  Created on: Jul 20, 2010
- *      Author: alexanderb
+ *  \date       Jul 20, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdio.h>
 #include <stdlib.h>

Modified: incubator/celix/trunk/framework/private/src/service_registration.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/service_registration.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/service_registration.c (original)
+++ incubator/celix/trunk/framework/private/src/service_registration.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * service_registration.c
  *
- *  Created on: Aug 6, 2010
- *      Author: alexanderb
+ *  \date       Aug 6, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <stdio.h>

Modified: incubator/celix/trunk/framework/private/src/service_registry.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/service_registry.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/service_registry.c (original)
+++ incubator/celix/trunk/framework/private/src/service_registry.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * service_registry.c
  *
- *  Created on: Aug 6, 2010
- *      Author: alexanderb
+ *  \date       Aug 6, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <stdio.h>

Modified: incubator/celix/trunk/framework/private/src/service_tracker.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/service_tracker.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/service_tracker.c (original)
+++ incubator/celix/trunk/framework/private/src/service_tracker.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * service_tracker.c
  *
- *  Created on: Apr 20, 2010
- *      Author: alexanderb
+ *  \date       Apr 20, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <string.h>

Modified: incubator/celix/trunk/framework/private/src/utils.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/utils.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/utils.c (original)
+++ incubator/celix/trunk/framework/private/src/utils.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * utils.c
  *
- *  Created on: Jul 27, 2010
- *      Author: alexanderb
+ *  \date       Jul 27, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <string.h>

Modified: incubator/celix/trunk/framework/private/src/version.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/version.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/version.c (original)
+++ incubator/celix/trunk/framework/private/src/version.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * version.c
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <stdio.h>

Modified: incubator/celix/trunk/framework/private/src/version_range.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/version_range.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/version_range.c (original)
+++ incubator/celix/trunk/framework/private/src/version_range.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * version_range.c
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #include <stdlib.h>

Modified: incubator/celix/trunk/framework/private/src/wire.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/src/wire.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/src/wire.c (original)
+++ incubator/celix/trunk/framework/private/src/wire.c Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * wire.c
  *
- *  Created on: Jul 19, 2010
- *      Author: alexanderb
+ *  \date       Jul 19, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
 #include <string.h>

Modified: incubator/celix/trunk/framework/private/test/framework_test.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/private/test/framework_test.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/private/test/framework_test.c (original)
+++ incubator/celix/trunk/framework/private/test/framework_test.c Thu Aug  9 21:06:58 2012
@@ -19,11 +19,14 @@
 /*
  * test.c
  *
- *  Created on: Jul 16, 2010
- *      Author: alexanderb
+ *  \date       Jul 16, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stdio.h>
 
+#include <stddef.h>
+
 #include "CUnit/Basic.h"
 #include "framework.h"
 

Modified: incubator/celix/trunk/framework/public/include/archive.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/archive.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/archive.h (original)
+++ incubator/celix/trunk/framework/public/include/archive.h Thu Aug  9 21:06:58 2012
@@ -22,7 +22,7 @@
  * @ingroup framework
  * @{
  *
- *  \author    	Alexander Broekhuis
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
  *  \date      	May 31, 2010
  *  \copyright	Apache License, Version 2.0
  */

Modified: incubator/celix/trunk/framework/public/include/bundle.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/bundle.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/bundle.h (original)
+++ incubator/celix/trunk/framework/public/include/bundle.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * bundle.h
  *
- *  Created on: Mar 23, 2010
- *      Author: alexanderb
+ *  \date       Mar 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef BUNDLE_H_

Modified: incubator/celix/trunk/framework/public/include/bundle_activator.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/bundle_activator.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/bundle_activator.h (original)
+++ incubator/celix/trunk/framework/public/include/bundle_activator.h Thu Aug  9 21:06:58 2012
@@ -30,7 +30,7 @@
  * 				to be stopped. The same applies to the bundleActivator_create() and
  * 				bundleActivator_destroy() functions.
  * 				The Framework must not concurrently call the activator functions.
- *  \author    	Alexander Broekhuis
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
  *  \date      	March 18, 2010
  *  \copyright	Apache License, Version 2.0
  */

Modified: incubator/celix/trunk/framework/public/include/bundle_archive.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/bundle_archive.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/bundle_archive.h (original)
+++ incubator/celix/trunk/framework/public/include/bundle_archive.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * bundle_archive.h
  *
- *  Created on: Aug 8, 2010
- *      Author: alexanderb
+ *  \date       Aug 8, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef BUNDLE_ARCHIVE_H_

Modified: incubator/celix/trunk/framework/public/include/bundle_context.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/bundle_context.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/bundle_context.h (original)
+++ incubator/celix/trunk/framework/public/include/bundle_context.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * bundle_context.h
  *
- *  Created on: Mar 26, 2010
- *      Author: alexanderb
+ *  \date       Mar 26, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef BUNDLE_CONTEXT_H_

Modified: incubator/celix/trunk/framework/public/include/bundle_event.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/bundle_event.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/bundle_event.h (original)
+++ incubator/celix/trunk/framework/public/include/bundle_event.h Thu Aug  9 21:06:58 2012
@@ -1,18 +1,32 @@
 /*
+ *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.
+ */
+/*
  * bundle_event.h
  *
- *  Created on: Jun 28, 2012
- *      Author: alexander
+ *  \date       Jun 28, 2012
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef BUNDLE_EVENT_H_
 #define BUNDLE_EVENT_H_
 
-typedef enum bundle_event_type bundle_event_type_e;
-typedef struct bundle_event *bundle_event_t;
-
-#include "service_reference.h"
-
 enum bundle_event_type
 {
 	BUNDLE_EVENT_INSTALLED = 0x00000001,
@@ -27,6 +41,12 @@ enum bundle_event_type
 	BUNDLE_EVENT_LAZY_ACTIVATION = 0x00000200,
 };
 
+typedef enum bundle_event_type bundle_event_type_e;
+typedef struct bundle_event *bundle_event_t;
+
+#include "service_reference.h"
+#include "bundle.h"
+
 struct bundle_event {
 	BUNDLE bundle;
 	bundle_event_type_e type;

Modified: incubator/celix/trunk/framework/public/include/bundle_listener.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/bundle_listener.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/bundle_listener.h (original)
+++ incubator/celix/trunk/framework/public/include/bundle_listener.h Thu Aug  9 21:06:58 2012
@@ -22,7 +22,7 @@
  * @ingroup framework
  * @{
  *
- *  \author    	Alexander Broekhuis
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
  *  \date      	June 28, 2012
  *  \copyright	Apache License, Version 2.0
  */

Modified: incubator/celix/trunk/framework/public/include/bundle_revision.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/bundle_revision.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/bundle_revision.h (original)
+++ incubator/celix/trunk/framework/public/include/bundle_revision.h Thu Aug  9 21:06:58 2012
@@ -22,7 +22,7 @@
  * @ingroup framework
  * @{
  *
- *  \author    	Alexander Broekhuis
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
  *  \date      	April 12, 2011
  *  \copyright	Apache License, Version 2.0
  */

Modified: incubator/celix/trunk/framework/public/include/bundle_state.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/bundle_state.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/bundle_state.h (original)
+++ incubator/celix/trunk/framework/public/include/bundle_state.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * bundle_state.h
  *
- *  Created on: Sep 27, 2010
- *      Author: alexanderb
+ *  \date       Sep 27, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef BUNDLE_STATE_H_

Modified: incubator/celix/trunk/framework/public/include/capability.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/capability.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/capability.h (original)
+++ incubator/celix/trunk/framework/public/include/capability.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * capability.h
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef CAPABILITY_H_

Modified: incubator/celix/trunk/framework/public/include/celix_errno.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/celix_errno.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/celix_errno.h (original)
+++ incubator/celix/trunk/framework/public/include/celix_errno.h Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
 /*
+ *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.
+ */
+/*
  * celix_errno.h
  *
- *  Created on: Feb 15, 2011
- *      Author: alexanderb
+ *  \date       Feb 15, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 /*!
   \file

Modified: incubator/celix/trunk/framework/public/include/celix_log.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/celix_log.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/celix_log.h (original)
+++ incubator/celix/trunk/framework/public/include/celix_log.h Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
 /*
+ *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.
+ */
+/*
  * celix_log.h
  *
- *  Created on: Jan 12, 2012
- *      Author: alexander
+ *  \date       Jan 12, 2012
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef CELIX_LOG_H_

Modified: incubator/celix/trunk/framework/public/include/celixbool.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/celixbool.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/celixbool.h (original)
+++ incubator/celix/trunk/framework/public/include/celixbool.h Thu Aug  9 21:06:58 2012
@@ -1,3 +1,29 @@
+/*
+ *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.
+ */
+/*
+ * celixbool.h
+ *
+ *  \date       Jun 16, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
+ */
+
 #ifndef CELIXBOOL_H_
 #define CELIXBOOL_H_
 

Modified: incubator/celix/trunk/framework/public/include/constants.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/constants.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/constants.h (original)
+++ incubator/celix/trunk/framework/public/include/constants.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * constants.h
  *
- *  Created on: Apr 29, 2010
- *      Author: dk489
+ *  \date       Apr 29, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef CONSTANTS_H_

Modified: incubator/celix/trunk/framework/public/include/filter.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/filter.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/filter.h (original)
+++ incubator/celix/trunk/framework/public/include/filter.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * filter.h
  *
- *  Created on: Apr 28, 2010
- *      Author: dk489
+ *  \date       Apr 28, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef FILTER_H_

Modified: incubator/celix/trunk/framework/public/include/framework.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/framework.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/framework.h (original)
+++ incubator/celix/trunk/framework/public/include/framework.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * framework.h
  *
- *  Created on: Mar 23, 2010
- *      Author: alexanderb
+ *  \date       Mar 23, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef FRAMEWORK_H_

Modified: incubator/celix/trunk/framework/public/include/listener_hook_service.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/listener_hook_service.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/listener_hook_service.h (original)
+++ incubator/celix/trunk/framework/public/include/listener_hook_service.h Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
 /*
+ *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_hook_service.h
  *
- *  Created on: Oct 28, 2011
- *      Author: alexander
+ *  \date       Oct 28, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef LISTENER_HOOK_SERVICE_H_

Modified: incubator/celix/trunk/framework/public/include/manifest.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/manifest.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/manifest.h (original)
+++ incubator/celix/trunk/framework/public/include/manifest.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * manifest.h
  *
- *  Created on: Jul 5, 2010
- *      Author: alexanderb
+ *  \date       Jul 5, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef MANIFEST_H_

Modified: incubator/celix/trunk/framework/public/include/module.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/module.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/module.h (original)
+++ incubator/celix/trunk/framework/public/include/module.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * module.h
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef MODULE_H_

Modified: incubator/celix/trunk/framework/public/include/properties.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/properties.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/properties.h (original)
+++ incubator/celix/trunk/framework/public/include/properties.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * properties.h
  *
- *  Created on: Apr 27, 2010
- *      Author: dk489
+ *  \date       Apr 27, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef PROPERTIES_H_

Modified: incubator/celix/trunk/framework/public/include/requirement.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/requirement.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/requirement.h (original)
+++ incubator/celix/trunk/framework/public/include/requirement.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * requirement.h
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef REQUIREMENT_H_

Modified: incubator/celix/trunk/framework/public/include/service_event.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/service_event.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/service_event.h (original)
+++ incubator/celix/trunk/framework/public/include/service_event.h Thu Aug  9 21:06:58 2012
@@ -22,7 +22,7 @@
  * @ingroup framework
  * @{
  *
- *  \author    	Alexander Broekhuis
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
  *  \date      	January 11, 2012
  *  \copyright	Apache License, Version 2.0
  */

Modified: incubator/celix/trunk/framework/public/include/service_factory.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/service_factory.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/service_factory.h (original)
+++ incubator/celix/trunk/framework/public/include/service_factory.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * service_factory.h
  *
- *  Created on: Jun 26, 2011
- *      Author: alexander
+ *  \date       Jun 26, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef SERVICE_FACTORY_H_

Modified: incubator/celix/trunk/framework/public/include/service_listener.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/service_listener.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/service_listener.h (original)
+++ incubator/celix/trunk/framework/public/include/service_listener.h Thu Aug  9 21:06:58 2012
@@ -22,7 +22,7 @@
  * @ingroup framework
  * @{
  *
- *  \author    	Alexander Broekhuis
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
  *  \date      	January 11, 2012
  *  \copyright	Apache License, Version 2.0
  */

Modified: incubator/celix/trunk/framework/public/include/service_reference.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/service_reference.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/service_reference.h (original)
+++ incubator/celix/trunk/framework/public/include/service_reference.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * service_reference.h
  *
- *  Created on: Jul 20, 2010
- *      Author: alexanderb
+ *  \date       Jul 20, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef SERVICE_REFERENCE_H_

Modified: incubator/celix/trunk/framework/public/include/service_registration.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/service_registration.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/service_registration.h (original)
+++ incubator/celix/trunk/framework/public/include/service_registration.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * service_registration.h
  *
- *  Created on: Aug 6, 2010
- *      Author: alexanderb
+ *  \date       Aug 6, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef SERVICE_REGISTRATION_H_

Modified: incubator/celix/trunk/framework/public/include/service_registry.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/service_registry.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/service_registry.h (original)
+++ incubator/celix/trunk/framework/public/include/service_registry.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * service_registry.h
  *
- *  Created on: Aug 6, 2010
- *      Author: alexanderb
+ *  \date       Aug 6, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef SERVICE_REGISTRY_H_

Modified: incubator/celix/trunk/framework/public/include/service_tracker.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/service_tracker.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/service_tracker.h (original)
+++ incubator/celix/trunk/framework/public/include/service_tracker.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * service_tracker.h
  *
- *  Created on: Apr 20, 2010
- *      Author: alexanderb
+ *  \date       Apr 20, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef SERVICE_TRACKER_H_

Modified: incubator/celix/trunk/framework/public/include/utils.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/utils.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/utils.h (original)
+++ incubator/celix/trunk/framework/public/include/utils.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * utils.h
  *
- *  Created on: Jul 27, 2010
- *      Author: alexanderb
+ *  \date       Jul 27, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef UTILS_H_

Modified: incubator/celix/trunk/framework/public/include/version.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/version.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/version.h (original)
+++ incubator/celix/trunk/framework/public/include/version.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * version.h
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef VERSION_H_

Modified: incubator/celix/trunk/framework/public/include/version_range.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/version_range.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/version_range.h (original)
+++ incubator/celix/trunk/framework/public/include/version_range.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * version_range.h
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef VERSION_RANGE_H_

Modified: incubator/celix/trunk/framework/public/include/wire.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/wire.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/wire.h (original)
+++ incubator/celix/trunk/framework/public/include/wire.h Thu Aug  9 21:06:58 2012
@@ -19,8 +19,9 @@
 /*
  * wire.h
  *
- *  Created on: Jul 12, 2010
- *      Author: alexanderb
+ *  \date       Jul 12, 2010
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef WIRE_H_

Modified: incubator/celix/trunk/hessian/source/CMakeLists.txt
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/hessian/source/CMakeLists.txt?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/hessian/source/CMakeLists.txt (original)
+++ incubator/celix/trunk/hessian/source/CMakeLists.txt Thu Aug  9 21:06:58 2012
@@ -14,6 +14,7 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
+
 cmake_minimum_required (VERSION 2.6)
 project (HessianC C)
 

Modified: incubator/celix/trunk/hessian/source/private/src/hessian_in.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/hessian/source/private/src/hessian_in.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/hessian/source/private/src/hessian_in.c (original)
+++ incubator/celix/trunk/hessian/source/private/src/hessian_in.c Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * hessian_in.c
  *
- *  Created on: Aug 1, 2011
- *      Author: alexander
+ *  \date       Aug 1, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #include <stdlib.h>

Modified: incubator/celix/trunk/hessian/source/private/src/hessian_out.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/hessian/source/private/src/hessian_out.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/hessian/source/private/src/hessian_out.c (original)
+++ incubator/celix/trunk/hessian/source/private/src/hessian_out.c Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * hessian.c
  *
- *  Created on: Jul 31, 2011
- *      Author: alexander
+ *  \date       Jul 31, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #include <stdlib.h>

Modified: incubator/celix/trunk/hessian/source/private/test/test_hessian_out.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/hessian/source/private/test/test_hessian_out.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/hessian/source/private/test/test_hessian_out.c (original)
+++ incubator/celix/trunk/hessian/source/private/test/test_hessian_out.c Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * test_hessian_out.c
  *
- *  Created on: Aug 4, 2011
- *      Author: alexander
+ *  \date       Aug 4, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #include <stdio.h>

Modified: incubator/celix/trunk/hessian/source/private/test/test_service.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/hessian/source/private/test/test_service.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/hessian/source/private/test/test_service.h (original)
+++ incubator/celix/trunk/hessian/source/private/test/test_service.h Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * test_service.h
  *
- *  Created on: Aug 5, 2011
- *      Author: alexander
+ *  \date       Aug 5, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef TEST_SERVICE_H_

Modified: incubator/celix/trunk/hessian/source/private/test/test_service_proxy.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/hessian/source/private/test/test_service_proxy.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/hessian/source/private/test/test_service_proxy.c (original)
+++ incubator/celix/trunk/hessian/source/private/test/test_service_proxy.c Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * test_encoder.c
  *
- *  Created on: Aug 5, 2011
- *      Author: alexander
+ *  \date       Aug 5, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #include "hessian_2.0_out.h"

Modified: incubator/celix/trunk/hessian/source/private/test/test_service_skeleton.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/hessian/source/private/test/test_service_skeleton.c?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/hessian/source/private/test/test_service_skeleton.c (original)
+++ incubator/celix/trunk/hessian/source/private/test/test_service_skeleton.c Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * test_sercice_skeleton.c
  *
- *  Created on: Aug 5, 2011
- *      Author: alexander
+ *  \date       Aug 5, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 #include <stddef.h>
 

Modified: incubator/celix/trunk/hessian/source/public/include/hessian_2.0.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/hessian/source/public/include/hessian_2.0.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/hessian/source/public/include/hessian_2.0.h (original)
+++ incubator/celix/trunk/hessian/source/public/include/hessian_2.0.h Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * hessian_2.0.h
  *
- *  Created on: Aug 1, 2011
- *      Author: alexander
+ *  \date       Aug 1, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef HESSIAN_2_0_H_

Modified: incubator/celix/trunk/hessian/source/public/include/hessian_2.0_in.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/hessian/source/public/include/hessian_2.0_in.h?rev=1371483&r1=1371482&r2=1371483&view=diff
==============================================================================
--- incubator/celix/trunk/hessian/source/public/include/hessian_2.0_in.h (original)
+++ incubator/celix/trunk/hessian/source/public/include/hessian_2.0_in.h Thu Aug  9 21:06:58 2012
@@ -1,8 +1,27 @@
+/**
+ *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.
+ */
 /*
  * hessian_2.0_in.h
  *
- *  Created on: Aug 1, 2011
- *      Author: alexander
+ *  \date       Aug 1, 2011
+ *  \author    	<a href="mailto:celix-dev@incubator.apache.org">Apache Celix Project Team</a>
+ *  \copyright	Apache License, Version 2.0
  */
 
 #ifndef HESSIAN_2_0_IN_H_