Modified: incubator/celix/trunk/remote_services/utils/private/src/remote_services_utils.c URL: http://svn.apache.org/viewvc/incubator/celix/trunk/remote_services/utils/private/src/remote_services_utils.c?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/remote_services/utils/private/src/remote_services_utils.c (original) +++ incubator/celix/trunk/remote_services/utils/private/src/remote_services_utils.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. + */ /* * remote_services_utils.c * - * Created on: Apr 23, 2012 - * Author: alexander + * \date Apr 23, 2012 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdlib.h> #include <stdio.h>
Modified: incubator/celix/trunk/remote_services/utils/public/include/remote_constants.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/remote_services/utils/public/include/remote_constants.h?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/remote_services/utils/public/include/remote_constants.h (original) +++ incubator/celix/trunk/remote_services/utils/public/include/remote_constants.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. + */ /* * remote_constants.h * - * Created on: Sep 30, 2011 - * Author: alexander + * \date Sep 30, 2011 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef REMOTE_CONSTANTS_H_ Modified: incubator/celix/trunk/remote_services/utils/public/include/remote_services_utils.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/remote_services/utils/public/include/remote_services_utils.h?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/remote_services/utils/public/include/remote_services_utils.h (original) +++ incubator/celix/trunk/remote_services/utils/public/include/remote_services_utils.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. + */ /* * remote_services_utils.h * - * Created on: Apr 23, 2012 - * Author: alexander + * \date Apr 23, 2012 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef REMOTE_SERVICES_UTILS_H_ Modified: incubator/celix/trunk/shell/CMakeLists.txt URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/CMakeLists.txt?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/CMakeLists.txt (original) +++ incubator/celix/trunk/shell/CMakeLists.txt Thu Aug 9 21:06:58 2012 @@ -18,18 +18,26 @@ celix_subproject(SHELL "Option to enable if (SHELL) find_package(CURL REQUIRED) - bundle(shell SOURCES shell command - ps_command start_command stop_command - install_command update_command - uninstall_command log_command - inspect_command) + bundle(shell SOURCES + private/src/shell + private/src/command + private/src/ps_command + private/src/start_command + private/src/stop_command + private/src/install_command + private/src/update_command + private/src/uninstall_command + private/src/log_command + private/src/inspect_command) + include_directories("public/include") + include_directories("private/include") include_directories("${PROJECT_SOURCE_DIR}/utils/public/include") include_directories("${PROJECT_SOURCE_DIR}/log_service/public/include") target_link_libraries(shell celix_framework ${CURL_LIBRARIES}) - package(shell FILES shell.h command.h) + package(shell FILES public/include/shell.h public/include/command.h public/include/command_private.h) - FILE(GLOB files shell.h command.h) + FILE(GLOB files public/include/shell.h public/include/command.h public/include/command_private.h) INSTALL(FILES ${files} DESTINATION include/celix/shell COMPONENT framework) INSTALL(FILES ${PROJECT_BINARY_DIR}/bundles/shell.zip DESTINATION bundles COMPONENT framework) endif (SHELL) \ No newline at end of file Copied: incubator/celix/trunk/shell/private/include/inspect_command.h (from r1370761, incubator/celix/trunk/examples/echo_service/server/echo_server.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/include/inspect_command.h?p2=incubator/celix/trunk/shell/private/include/inspect_command.h&p1=incubator/celix/trunk/examples/echo_service/server/echo_server.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/examples/echo_service/server/echo_server.h (original) +++ incubator/celix/trunk/shell/private/include/inspect_command.h Thu Aug 9 21:06:58 2012 @@ -17,24 +17,17 @@ *under the License. */ /* - * echo_server.h + * inspect_command.h * - * Created on: Sep 21, 2010 - * Author: alexanderb + * \date Oct 13, 2011 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ -#ifndef ECHO_SERVER_H_ -#define ECHO_SERVER_H_ +#ifndef INSPECT_COMMAND_H_ +#define INSPECT_COMMAND_H_ -#define ECHO_SERVICE_NAME "echo_server" +COMMAND inspectCommand_create(BUNDLE_CONTEXT context); +void inspectCommand_destroy(COMMAND command); -typedef struct echoServer * ECHO_SERVER; - -struct echoService { - ECHO_SERVER server; - void (*echo)(ECHO_SERVER server, char * text); -}; - -typedef struct echoService * ECHO_SERVICE; - -#endif /* ECHO_SERVER_H_ */ +#endif /* INSPECT_COMMAND_H_ */ Copied: incubator/celix/trunk/shell/private/include/install_command.h (from r1370761, incubator/celix/trunk/shell/install_command.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/include/install_command.h?p2=incubator/celix/trunk/shell/private/include/install_command.h&p1=incubator/celix/trunk/shell/install_command.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/install_command.h (original) +++ incubator/celix/trunk/shell/private/include/install_command.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * install_command.h * - * Created on: Apr 4, 2011 - * Author: alexanderb + * \date Apr 4, 2011 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef INSTALL_COMMAND_H_ Copied: incubator/celix/trunk/shell/private/include/log_command.h (from r1370761, incubator/celix/trunk/shell/log_command.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/include/log_command.h?p2=incubator/celix/trunk/shell/private/include/log_command.h&p1=incubator/celix/trunk/shell/log_command.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/log_command.h (original) +++ incubator/celix/trunk/shell/private/include/log_command.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * log_command.h * - * Created on: Jun 26, 2011 - * Author: alexander + * \date Jun 26, 2011 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef LOG_COMMAND_H_ Copied: incubator/celix/trunk/shell/private/include/ps_command.h (from r1370761, incubator/celix/trunk/shell/ps_command.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/include/ps_command.h?p2=incubator/celix/trunk/shell/private/include/ps_command.h&p1=incubator/celix/trunk/shell/ps_command.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/ps_command.h (original) +++ incubator/celix/trunk/shell/private/include/ps_command.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * ps_command.h * - * Created on: Aug 13, 2010 - * Author: alexanderb + * \date Aug 13, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef PS_COMMAND_H_ Copied: incubator/celix/trunk/shell/private/include/shell_private.h (from r1370761, incubator/celix/trunk/shell/shell_private.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/include/shell_private.h?p2=incubator/celix/trunk/shell/private/include/shell_private.h&p1=incubator/celix/trunk/shell/shell_private.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/shell_private.h (original) +++ incubator/celix/trunk/shell/private/include/shell_private.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * shell_private.h * - * Created on: Aug 13, 2010 - * Author: alexanderb + * \date Aug 13, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef SHELL_PRIVATE_H_ Copied: incubator/celix/trunk/shell/private/include/start_command.h (from r1370761, incubator/celix/trunk/shell/start_command.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/include/start_command.h?p2=incubator/celix/trunk/shell/private/include/start_command.h&p1=incubator/celix/trunk/shell/start_command.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/start_command.h (original) +++ incubator/celix/trunk/shell/private/include/start_command.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * start_command.h * - * Created on: Aug 20, 2010 - * Author: alexanderb + * \date Aug 20, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef START_COMMAND_H_ Copied: incubator/celix/trunk/shell/private/include/stop_command.h (from r1370761, incubator/celix/trunk/shell/stop_command.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/include/stop_command.h?p2=incubator/celix/trunk/shell/private/include/stop_command.h&p1=incubator/celix/trunk/shell/stop_command.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/stop_command.h (original) +++ incubator/celix/trunk/shell/private/include/stop_command.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * stop_command.h * - * Created on: Aug 20, 2010 - * Author: alexanderb + * \date Aug 20, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef STOP_COMMAND_H_ Copied: incubator/celix/trunk/shell/private/include/uninstall_command.h (from r1370761, incubator/celix/trunk/shell/uninstall_command.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/include/uninstall_command.h?p2=incubator/celix/trunk/shell/private/include/uninstall_command.h&p1=incubator/celix/trunk/shell/uninstall_command.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/uninstall_command.h (original) +++ incubator/celix/trunk/shell/private/include/uninstall_command.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * start_command.h * - * Created on: Aug 20, 2010 - * Author: alexanderb + * \date Aug 20, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef UNINSTALL_COMMAND_H_ Copied: incubator/celix/trunk/shell/private/include/update_command.h (from r1370761, incubator/celix/trunk/shell/update_command.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/include/update_command.h?p2=incubator/celix/trunk/shell/private/include/update_command.h&p1=incubator/celix/trunk/shell/update_command.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/update_command.h (original) +++ incubator/celix/trunk/shell/private/include/update_command.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * start_command.h * - * Created on: Aug 20, 2010 - * Author: alexanderb + * \date Aug 20, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef UPDATE_COMMAND_H_ Copied: incubator/celix/trunk/shell/private/src/command.c (from r1370761, incubator/celix/trunk/shell/command.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/src/command.c?p2=incubator/celix/trunk/shell/private/src/command.c&p1=incubator/celix/trunk/shell/command.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/command.c (original) +++ incubator/celix/trunk/shell/private/src/command.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * command.c * - * Created on: Aug 13, 2010 - * Author: alexanderb + * \date Aug 13, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdio.h> Copied: incubator/celix/trunk/shell/private/src/inspect_command.c (from r1370761, incubator/celix/trunk/shell/inspect_command.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/src/inspect_command.c?p2=incubator/celix/trunk/shell/private/src/inspect_command.c&p1=incubator/celix/trunk/shell/inspect_command.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/inspect_command.c (original) +++ incubator/celix/trunk/shell/private/src/inspect_command.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. + */ /* * inspect_command.c * - * Created on: Oct 13, 2011 - * Author: alexander + * \date Oct 13, 2011 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdlib.h> Copied: incubator/celix/trunk/shell/private/src/install_command.c (from r1370761, incubator/celix/trunk/shell/install_command.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/src/install_command.c?p2=incubator/celix/trunk/shell/private/src/install_command.c&p1=incubator/celix/trunk/shell/install_command.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/install_command.c (original) +++ incubator/celix/trunk/shell/private/src/install_command.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * install_command.c * - * Created on: Apr 4, 2011 - * Author: alexanderb + * \date Apr 4, 2011 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdlib.h> Copied: incubator/celix/trunk/shell/private/src/log_command.c (from r1370761, incubator/celix/trunk/shell/log_command.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/src/log_command.c?p2=incubator/celix/trunk/shell/private/src/log_command.c&p1=incubator/celix/trunk/shell/log_command.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/log_command.c (original) +++ incubator/celix/trunk/shell/private/src/log_command.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * log_command.c * - * Created on: Jun 26, 2011 - * Author: alexander + * \date Jun 26, 2011 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdlib.h> Copied: incubator/celix/trunk/shell/private/src/ps_command.c (from r1370761, incubator/celix/trunk/shell/ps_command.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/src/ps_command.c?p2=incubator/celix/trunk/shell/private/src/ps_command.c&p1=incubator/celix/trunk/shell/ps_command.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/ps_command.c (original) +++ incubator/celix/trunk/shell/private/src/ps_command.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * ps_command.c * - * Created on: Aug 13, 2010 - * Author: alexanderb + * \date Aug 13, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdlib.h> Copied: incubator/celix/trunk/shell/private/src/shell.c (from r1370761, incubator/celix/trunk/shell/shell.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/src/shell.c?p2=incubator/celix/trunk/shell/private/src/shell.c&p1=incubator/celix/trunk/shell/shell.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/shell.c (original) +++ incubator/celix/trunk/shell/private/src/shell.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * shell.c * - * Created on: Aug 13, 2010 - * Author: alexanderb + * \date Aug 13, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdlib.h> #include <string.h> Copied: incubator/celix/trunk/shell/private/src/start_command.c (from r1370761, incubator/celix/trunk/shell/start_command.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/src/start_command.c?p2=incubator/celix/trunk/shell/private/src/start_command.c&p1=incubator/celix/trunk/shell/start_command.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/start_command.c (original) +++ incubator/celix/trunk/shell/private/src/start_command.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * start_command.c * - * Created on: Aug 20, 2010 - * Author: alexanderb + * \date Aug 20, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdlib.h> #include <string.h> Copied: incubator/celix/trunk/shell/private/src/stop_command.c (from r1370761, incubator/celix/trunk/shell/stop_command.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/src/stop_command.c?p2=incubator/celix/trunk/shell/private/src/stop_command.c&p1=incubator/celix/trunk/shell/stop_command.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/stop_command.c (original) +++ incubator/celix/trunk/shell/private/src/stop_command.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * stop_command.c * - * Created on: Aug 20, 2010 - * Author: alexanderb + * \date Aug 20, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdlib.h> #include <string.h> Copied: incubator/celix/trunk/shell/private/src/uninstall_command.c (from r1370761, incubator/celix/trunk/shell/uninstall_command.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/src/uninstall_command.c?p2=incubator/celix/trunk/shell/private/src/uninstall_command.c&p1=incubator/celix/trunk/shell/uninstall_command.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/uninstall_command.c (original) +++ incubator/celix/trunk/shell/private/src/uninstall_command.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * start_command.c * - * Created on: Aug 20, 2010 - * Author: alexanderb + * \date Aug 20, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdlib.h> #include <string.h> Copied: incubator/celix/trunk/shell/private/src/update_command.c (from r1370761, incubator/celix/trunk/shell/update_command.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/private/src/update_command.c?p2=incubator/celix/trunk/shell/private/src/update_command.c&p1=incubator/celix/trunk/shell/update_command.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/update_command.c (original) +++ incubator/celix/trunk/shell/private/src/update_command.c Thu Aug 9 21:06:58 2012 @@ -1,4 +1,3 @@ - /** *Licensed to the Apache Software Foundation (ASF) under one *or more contributor license agreements. See the NOTICE file @@ -20,8 +19,10 @@ /* * start_command.c * - * Created on: Aug 20, 2010 - * Author: alexanderb + * \date Aug 20, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 + * */ #include <stdlib.h> #include <string.h> Copied: incubator/celix/trunk/shell/public/include/command.h (from r1370761, incubator/celix/trunk/shell/command.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/public/include/command.h?p2=incubator/celix/trunk/shell/public/include/command.h&p1=incubator/celix/trunk/shell/command.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/command.h (original) +++ incubator/celix/trunk/shell/public/include/command.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * command.h * - * Created on: Aug 13, 2010 - * Author: alexanderb + * \date Aug 13, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef COMMAND_H_ Copied: incubator/celix/trunk/shell/public/include/command_private.h (from r1370761, incubator/celix/trunk/shell/command_private.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/public/include/command_private.h?p2=incubator/celix/trunk/shell/public/include/command_private.h&p1=incubator/celix/trunk/shell/command_private.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/command_private.h (original) +++ incubator/celix/trunk/shell/public/include/command_private.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * command_private.h * - * Created on: Aug 13, 2010 - * Author: alexanderb + * \date Aug 13, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef COMMAND_PRIVATE_H_ Copied: incubator/celix/trunk/shell/public/include/shell.h (from r1370761, incubator/celix/trunk/shell/shell.h) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell/public/include/shell.h?p2=incubator/celix/trunk/shell/public/include/shell.h&p1=incubator/celix/trunk/shell/shell.h&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell/shell.h (original) +++ incubator/celix/trunk/shell/public/include/shell.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * shell.h * - * Created on: Aug 12, 2010 - * Author: alexanderb + * \date Aug 12, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef SHELL_H_ Modified: incubator/celix/trunk/shell_tui/CMakeLists.txt URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell_tui/CMakeLists.txt?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell_tui/CMakeLists.txt (original) +++ incubator/celix/trunk/shell_tui/CMakeLists.txt Thu Aug 9 21:06:58 2012 @@ -16,9 +16,9 @@ # under the License. celix_subproject(SHELL_TUI "Option to enable building the Shell Textual User Interface bundles" OFF DEPS LAUNCHER SHELL) if (SHELL_TUI) - bundle(shell_tui SOURCES shell_tui) + bundle(shell_tui SOURCES private/src/shell_tui) include_directories("${PROJECT_SOURCE_DIR}/utils/public/include") - include_directories("${PROJECT_SOURCE_DIR}/shell") + include_directories("${PROJECT_SOURCE_DIR}/shell/public/include") target_link_libraries(shell_tui celix_framework) package(shell_tui) Copied: incubator/celix/trunk/shell_tui/private/src/shell_tui.c (from r1370761, incubator/celix/trunk/shell_tui/shell_tui.c) URL: http://svn.apache.org/viewvc/incubator/celix/trunk/shell_tui/private/src/shell_tui.c?p2=incubator/celix/trunk/shell_tui/private/src/shell_tui.c&p1=incubator/celix/trunk/shell_tui/shell_tui.c&r1=1370761&r2=1371483&rev=1371483&view=diff ============================================================================== --- incubator/celix/trunk/shell_tui/shell_tui.c (original) +++ incubator/celix/trunk/shell_tui/private/src/shell_tui.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * shell_tui.c * - * Created on: Aug 13, 2010 - * Author: alexanderb + * \date Aug 13, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdio.h> #include <stdlib.h> Modified: incubator/celix/trunk/utils/CMakeLists.txt URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/CMakeLists.txt?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/CMakeLists.txt (original) +++ incubator/celix/trunk/utils/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(UTILS "Option to build the utilities library" "ON") if (UTILS) cmake_minimum_required(VERSION 2.6) Modified: incubator/celix/trunk/utils/private/include/array_list_private.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/include/array_list_private.h?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/include/array_list_private.h (original) +++ incubator/celix/trunk/utils/private/include/array_list_private.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * array_list_private.h * - * Created on: Aug 4, 2010 - * Author: alexanderb + * \date Aug 4, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef ARRAY_LIST_PRIVATE_H_ Modified: incubator/celix/trunk/utils/private/include/hash_map_private.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/include/hash_map_private.h?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/include/hash_map_private.h (original) +++ incubator/celix/trunk/utils/private/include/hash_map_private.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * hash_map_private.h * - * Created on: Jul 21, 2010 - * Author: alexanderb + * \date Jul 21, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef HASH_MAP_PRIVATE_H_ Modified: incubator/celix/trunk/utils/private/include/linked_list_private.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/include/linked_list_private.h?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/include/linked_list_private.h (original) +++ incubator/celix/trunk/utils/private/include/linked_list_private.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * linked_list_private.h * - * Created on: Jul 16, 2010 - * Author: alexanderb + * \date Jul 16, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef LINKED_LIST_PRIVATE_H_ Modified: incubator/celix/trunk/utils/private/src/array_list.c URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/src/array_list.c?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/src/array_list.c (original) +++ incubator/celix/trunk/utils/private/src/array_list.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * array_list.c * - * Created on: Aug 4, 2010 - * Author: alexanderb + * \date Aug 4, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdlib.h> #include <stdio.h> Modified: incubator/celix/trunk/utils/private/src/hash_map.c URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/src/hash_map.c?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/src/hash_map.c (original) +++ incubator/celix/trunk/utils/private/src/hash_map.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * hash_map.c * - * Created on: Jul 21, 2010 - * Author: alexanderb + * \date Jul 21, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include "celixbool.h" #include <stdio.h> Modified: incubator/celix/trunk/utils/private/src/linked_list_iterator.c URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/src/linked_list_iterator.c?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/src/linked_list_iterator.c (original) +++ incubator/celix/trunk/utils/private/src/linked_list_iterator.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * linked_list_iterator.c * - * Created on: Jul 16, 2010 - * Author: alexanderb + * \date Jul 16, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdio.h> #include <stdlib.h> Modified: incubator/celix/trunk/utils/private/src/linkedlist.c URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/src/linkedlist.c?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/src/linkedlist.c (original) +++ incubator/celix/trunk/utils/private/src/linkedlist.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * linkedlist.c * - * Created on: Jul 16, 2010 - * Author: alexanderb + * \date Jul 16, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include "celixbool.h" #include <stdio.h> Modified: incubator/celix/trunk/utils/private/test/array_list_test.c URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/test/array_list_test.c?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/test/array_list_test.c (original) +++ incubator/celix/trunk/utils/private/test/array_list_test.c Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * array_list_test.c * - * Created on: Aug 4, 2010 - * Author: alexanderb + * \date Aug 4, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdio.h> #include <stdlib.h> Modified: incubator/celix/trunk/utils/private/test/hash_map_test.c URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/test/hash_map_test.c?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/test/hash_map_test.c (original) +++ incubator/celix/trunk/utils/private/test/hash_map_test.c Thu Aug 9 21:06:58 2012 @@ -19,11 +19,13 @@ /* * hash_map_test.c * - * Created on: Jul 25, 2010 - * Author: alexanderb + * \date Jul 25, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdio.h> #include <Automated.h> +#include <stddef.h> #include "celixbool.h" Modified: incubator/celix/trunk/utils/private/test/hash_map_test_hash.c URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/test/hash_map_test_hash.c?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/test/hash_map_test_hash.c (original) +++ incubator/celix/trunk/utils/private/test/hash_map_test_hash.c Thu Aug 9 21:06:58 2012 @@ -19,11 +19,13 @@ /* * hash_map_test.c * - * Created on: Jul 25, 2010 - * Author: alexanderb + * \date Jul 25, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdio.h> #include <string.h> +#include <stddef.h> #include <Automated.h> Modified: incubator/celix/trunk/utils/private/test/linked_list_test.c URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/private/test/linked_list_test.c?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/private/test/linked_list_test.c (original) +++ incubator/celix/trunk/utils/private/test/linked_list_test.c Thu Aug 9 21:06:58 2012 @@ -19,11 +19,13 @@ /* * linked_list_test.c * - * Created on: Jul 16, 2010 - * Author: alexanderb + * \date Jul 16, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #include <stdio.h> #include <apr_pools.h> +#include <stddef.h> #include <Automated.h> #include "linkedlist.h" Modified: incubator/celix/trunk/utils/public/include/array_list.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/public/include/array_list.h?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/public/include/array_list.h (original) +++ incubator/celix/trunk/utils/public/include/array_list.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * array_list.h * - * Created on: Aug 4, 2010 - * Author: alexanderb + * \date Aug 4, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef ARRAY_LIST_H_ Modified: incubator/celix/trunk/utils/public/include/exports.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/public/include/exports.h?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/public/include/exports.h (original) +++ incubator/celix/trunk/utils/public/include/exports.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * exports.h * - * Created on: Jun 16, 2011 - * Author: alexander + * \date Jun 16, 2011 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef EXPORTS_H_ Modified: incubator/celix/trunk/utils/public/include/hash_map.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/public/include/hash_map.h?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/public/include/hash_map.h (original) +++ incubator/celix/trunk/utils/public/include/hash_map.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * hash_map.h * - * Created on: Jul 21, 2010 - * Author: alexanderb + * \date Jul 21, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef HASH_MAP_H_ Modified: incubator/celix/trunk/utils/public/include/linked_list_iterator.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/public/include/linked_list_iterator.h?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/public/include/linked_list_iterator.h (original) +++ incubator/celix/trunk/utils/public/include/linked_list_iterator.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * linked_list_iterator.h * - * Created on: Jul 16, 2010 - * Author: alexanderb + * \date Jul 16, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef LINKED_LIST_ITERATOR_H_ Modified: incubator/celix/trunk/utils/public/include/linkedlist.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/utils/public/include/linkedlist.h?rev=1371483&r1=1371482&r2=1371483&view=diff ============================================================================== --- incubator/celix/trunk/utils/public/include/linkedlist.h (original) +++ incubator/celix/trunk/utils/public/include/linkedlist.h Thu Aug 9 21:06:58 2012 @@ -19,8 +19,9 @@ /* * linkedlist.h * - * Created on: Jul 16, 2010 - * Author: alexanderb + * \date Jul 16, 2010 + * \author <a href="mailto:[email protected]">Apache Celix Project Team</a> + * \copyright Apache License, Version 2.0 */ #ifndef LINKEDLIST_H_
