From 043c5c4190523fcd6d18592f85a3078307e22518 Mon Sep 17 00:00:00 2001 From: Krzysztof Jackiewicz Date: Wed, 12 Dec 2012 17:53:28 +0100 Subject: [PATCH] Boilerplates fixed [Issue#] N/A [Feature] N/A [Problem] Some boilerplates were missing/incorrect [Cause] N/A [Solution] Boilerplates fixed [Verification] Check boilerplate correctness. Successfull compilation. Change-Id: Iff6758bf4b56b34eb9155b2779033d75b07dd212 --- src/view/common/scheme_action_map_data.h | 196 ++++++++++----------- src/wrt-launchpad-daemon/feature/preexec.h | 25 ++- src/wrt-launchpad-daemon/include/app_signal.h | 25 ++- src/wrt-launchpad-daemon/include/app_sock.h | 25 ++- src/wrt-launchpad-daemon/include/aul_util.h | 25 ++- src/wrt-launchpad-daemon/include/menu_db_util.h | 25 ++- src/wrt-launchpad-daemon/include/perf.h | 25 ++- src/wrt-launchpad-daemon/include/simple_util.h | 25 ++- .../launchpad_src/access_control.h | 25 ++- src/wrt-launchpad-daemon/launchpad_src/config.h | 25 ++- src/wrt-launchpad-daemon/launchpad_src/gl.h | 25 ++- src/wrt-launchpad-daemon/launchpad_src/launchpad.c | 25 ++- src/wrt-launchpad-daemon/launchpad_src/sigchild.h | 25 ++- src/wrt-launchpad-daemon/launchpad_src/util_x.c | 25 ++- src/wrt-launchpad-daemon/launchpad_src/util_x.h | 25 ++- src/wrt-launchpad-daemon/legacy/preload.h | 25 ++- src/wrt-launchpad-daemon/src/app_sock.c | 25 ++- src/wrt-launchpad-daemon/src/simple_util.c | 25 ++- src/wrt-launchpad-daemon/wrt_launchpad_run.sh | 14 ++ 19 files changed, 282 insertions(+), 353 deletions(-) diff --git a/src/view/common/scheme_action_map_data.h b/src/view/common/scheme_action_map_data.h index 9224e3d..6710222 100644 --- a/src/view/common/scheme_action_map_data.h +++ b/src/view/common/scheme_action_map_data.h @@ -1,98 +1,98 @@ -/* - * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved - * - * Licensed 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. - */ -/* - * @file scheme_action_map_data.h - * @author Tae-Jeong Lee (taejeong.lee@samsung.com) - * @version 1.0 - */ - -#include "scheme_action_map.h" -#include - -namespace ViewModule { - -namespace { - -enum UriAction { - URI_ACTION_WRT, // load in WRT - URI_ACTION_APPSVC, // launch in APPSVC - URI_ACTION_VIDEO, // launch in VIDEO player - URI_ACTION_ERROR -}; - -/** - * WS-1501 - No top-level window navigation outside the widget. Deafult browser - * should be used instead. Frames/iframes are allowed to navigate. - * This requirement can't be applied to tizen hosted app as in its - * case the whole widget is "outside". - * - * WS-1502 - When calling window.open() with scheme HTTP/HTTPS and target - * attribute set to "_blank" WRT should open default browser. At the - * moment we can't distinguish target attributes, therefore all new - * windows are opened in the browser regardless of the attribute (the - * value "_new" is also treated this way). Tizen won't satisfy this - * requirement. It should open new windows in WRT. - * - * Multiview - Not supported in WAC application. Therefore opening WIDGET scheme - * in new window will result in launching appssvc, which won't be able - * to handle it. The correct behaviour has to be defined. In case of - * Tizen, new window will be opened in WRT. - * - * Video - YOUTUBE and RSTP are handled by video player. - * - * File scheme - FILE scheme has to be handled by WRT with exception to new - * window in WAC application (no support for multiple views) - * - * WS-1510/20/30/40/50 - All remaining cases are always handled by appsvc - */ - -// TIZEN -const UriAction g_tizenActionMap[Scheme::COUNT][SchemeActionMap::COUNT] = { - -// TOP_LEVEL FRAME_LEVEL NEW_WINDOW - {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // FILE - {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // SMS - {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // MMSTO - {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // MAILTO - {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // DATA - {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // TEL - {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // HTTP - {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // HTTPS - {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // WIDGET - {URI_ACTION_VIDEO, URI_ACTION_VIDEO, URI_ACTION_VIDEO}, // YOUTUBE - {URI_ACTION_VIDEO, URI_ACTION_VIDEO, URI_ACTION_VIDEO} // RTSP -}; - -// WAC -const UriAction g_wacActionMap[Scheme::COUNT][SchemeActionMap::COUNT] = { - -// TOP_LEVEL FRAME_LEVEL NEW_WINDOW - {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_APPSVC}, // FILE - {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // SMS - {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // MMSTO - {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // MAILTO - {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // DATA - {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // TEL - {URI_ACTION_APPSVC, URI_ACTION_WRT, URI_ACTION_APPSVC}, // HTTP - {URI_ACTION_APPSVC, URI_ACTION_WRT, URI_ACTION_APPSVC}, // HTTPS - {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_APPSVC}, // WIDGET - {URI_ACTION_VIDEO, URI_ACTION_VIDEO, URI_ACTION_VIDEO}, // YOUTUBE - {URI_ACTION_VIDEO, URI_ACTION_VIDEO, URI_ACTION_VIDEO} // RTSP -}; - -} - -} \ No newline at end of file +/* + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed 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. + */ +/* + * @file scheme_action_map_data.h + * @author Tae-Jeong Lee (taejeong.lee@samsung.com) + * @version 1.0 + */ + +#include "scheme_action_map.h" +#include + +namespace ViewModule { + +namespace { + +enum UriAction { + URI_ACTION_WRT, // load in WRT + URI_ACTION_APPSVC, // launch in APPSVC + URI_ACTION_VIDEO, // launch in VIDEO player + URI_ACTION_ERROR +}; + +/** + * WS-1501 - No top-level window navigation outside the widget. Deafult browser + * should be used instead. Frames/iframes are allowed to navigate. + * This requirement can't be applied to tizen hosted app as in its + * case the whole widget is "outside". + * + * WS-1502 - When calling window.open() with scheme HTTP/HTTPS and target + * attribute set to "_blank" WRT should open default browser. At the + * moment we can't distinguish target attributes, therefore all new + * windows are opened in the browser regardless of the attribute (the + * value "_new" is also treated this way). Tizen won't satisfy this + * requirement. It should open new windows in WRT. + * + * Multiview - Not supported in WAC application. Therefore opening WIDGET scheme + * in new window will result in launching appssvc, which won't be able + * to handle it. The correct behaviour has to be defined. In case of + * Tizen, new window will be opened in WRT. + * + * Video - YOUTUBE and RSTP are handled by video player. + * + * File scheme - FILE scheme has to be handled by WRT with exception to new + * window in WAC application (no support for multiple views) + * + * WS-1510/20/30/40/50 - All remaining cases are always handled by appsvc + */ + +// TIZEN +const UriAction g_tizenActionMap[Scheme::COUNT][SchemeActionMap::COUNT] = { + +// TOP_LEVEL FRAME_LEVEL NEW_WINDOW + {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // FILE + {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // SMS + {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // MMSTO + {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // MAILTO + {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // DATA + {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // TEL + {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // HTTP + {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // HTTPS + {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // WIDGET + {URI_ACTION_VIDEO, URI_ACTION_VIDEO, URI_ACTION_VIDEO}, // YOUTUBE + {URI_ACTION_VIDEO, URI_ACTION_VIDEO, URI_ACTION_VIDEO} // RTSP +}; + +// WAC +const UriAction g_wacActionMap[Scheme::COUNT][SchemeActionMap::COUNT] = { + +// TOP_LEVEL FRAME_LEVEL NEW_WINDOW + {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_APPSVC}, // FILE + {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // SMS + {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // MMSTO + {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // MAILTO + {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT}, // DATA + {URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC}, // TEL + {URI_ACTION_APPSVC, URI_ACTION_WRT, URI_ACTION_APPSVC}, // HTTP + {URI_ACTION_APPSVC, URI_ACTION_WRT, URI_ACTION_APPSVC}, // HTTPS + {URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_APPSVC}, // WIDGET + {URI_ACTION_VIDEO, URI_ACTION_VIDEO, URI_ACTION_VIDEO}, // YOUTUBE + {URI_ACTION_VIDEO, URI_ACTION_VIDEO, URI_ACTION_VIDEO} // RTSP +}; + +} + +} diff --git a/src/wrt-launchpad-daemon/feature/preexec.h b/src/wrt-launchpad-daemon/feature/preexec.h index 863d330..2cf64d0 100644 --- a/src/wrt-launchpad-daemon/feature/preexec.h +++ b/src/wrt-launchpad-daemon/feature/preexec.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ #ifdef PREEXEC_ACTIVATE diff --git a/src/wrt-launchpad-daemon/include/app_signal.h b/src/wrt-launchpad-daemon/include/app_signal.h index 29d2e83..7987916 100644 --- a/src/wrt-launchpad-daemon/include/app_signal.h +++ b/src/wrt-launchpad-daemon/include/app_signal.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/include/app_sock.h b/src/wrt-launchpad-daemon/include/app_sock.h index 1361ed6..044ad8c 100644 --- a/src/wrt-launchpad-daemon/include/app_sock.h +++ b/src/wrt-launchpad-daemon/include/app_sock.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/include/aul_util.h b/src/wrt-launchpad-daemon/include/aul_util.h index d86a3f9..4c8ece2 100644 --- a/src/wrt-launchpad-daemon/include/aul_util.h +++ b/src/wrt-launchpad-daemon/include/aul_util.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/include/menu_db_util.h b/src/wrt-launchpad-daemon/include/menu_db_util.h index ab25548..8af4181 100644 --- a/src/wrt-launchpad-daemon/include/menu_db_util.h +++ b/src/wrt-launchpad-daemon/include/menu_db_util.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/include/perf.h b/src/wrt-launchpad-daemon/include/perf.h index fb2582f..35b0926 100644 --- a/src/wrt-launchpad-daemon/include/perf.h +++ b/src/wrt-launchpad-daemon/include/perf.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/include/simple_util.h b/src/wrt-launchpad-daemon/include/simple_util.h index 2079b20..92e75f4 100644 --- a/src/wrt-launchpad-daemon/include/simple_util.h +++ b/src/wrt-launchpad-daemon/include/simple_util.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/launchpad_src/access_control.h b/src/wrt-launchpad-daemon/launchpad_src/access_control.h index 6ba035c..3404ea4 100644 --- a/src/wrt-launchpad-daemon/launchpad_src/access_control.h +++ b/src/wrt-launchpad-daemon/launchpad_src/access_control.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/launchpad_src/config.h b/src/wrt-launchpad-daemon/launchpad_src/config.h index f5728cf..becd61d 100644 --- a/src/wrt-launchpad-daemon/launchpad_src/config.h +++ b/src/wrt-launchpad-daemon/launchpad_src/config.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/launchpad_src/gl.h b/src/wrt-launchpad-daemon/launchpad_src/gl.h index 4add496..98cf202 100644 --- a/src/wrt-launchpad-daemon/launchpad_src/gl.h +++ b/src/wrt-launchpad-daemon/launchpad_src/gl.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/launchpad_src/launchpad.c b/src/wrt-launchpad-daemon/launchpad_src/launchpad.c index b1b9a94..6785d09 100644 --- a/src/wrt-launchpad-daemon/launchpad_src/launchpad.c +++ b/src/wrt-launchpad-daemon/launchpad_src/launchpad.c @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/launchpad_src/sigchild.h b/src/wrt-launchpad-daemon/launchpad_src/sigchild.h index 2f56275..b9d35fb 100644 --- a/src/wrt-launchpad-daemon/launchpad_src/sigchild.h +++ b/src/wrt-launchpad-daemon/launchpad_src/sigchild.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/launchpad_src/util_x.c b/src/wrt-launchpad-daemon/launchpad_src/util_x.c index 4e7ecd8..b871dae 100644 --- a/src/wrt-launchpad-daemon/launchpad_src/util_x.c +++ b/src/wrt-launchpad-daemon/launchpad_src/util_x.c @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/launchpad_src/util_x.h b/src/wrt-launchpad-daemon/launchpad_src/util_x.h index 650bad5..21c27bc 100644 --- a/src/wrt-launchpad-daemon/launchpad_src/util_x.h +++ b/src/wrt-launchpad-daemon/launchpad_src/util_x.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/legacy/preload.h b/src/wrt-launchpad-daemon/legacy/preload.h index b04c14a..f0c91df 100644 --- a/src/wrt-launchpad-daemon/legacy/preload.h +++ b/src/wrt-launchpad-daemon/legacy/preload.h @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/src/app_sock.c b/src/wrt-launchpad-daemon/src/app_sock.c index b70fb38..cc2328e 100644 --- a/src/wrt-launchpad-daemon/src/app_sock.c +++ b/src/wrt-launchpad-daemon/src/app_sock.c @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/src/simple_util.c b/src/wrt-launchpad-daemon/src/simple_util.c index d5bbeda..c4cf4d8 100644 --- a/src/wrt-launchpad-daemon/src/simple_util.c +++ b/src/wrt-launchpad-daemon/src/simple_util.c @@ -1,22 +1,17 @@ /* - * aul + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Licensed 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 * - * Contact: Jayoun Lee , Sewook Park , Jaeho Lee - * - * Licensed 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. + * 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. */ diff --git a/src/wrt-launchpad-daemon/wrt_launchpad_run.sh b/src/wrt-launchpad-daemon/wrt_launchpad_run.sh index 1c35f19..ebe0936 100644 --- a/src/wrt-launchpad-daemon/wrt_launchpad_run.sh +++ b/src/wrt-launchpad-daemon/wrt_launchpad_run.sh @@ -1,3 +1,17 @@ #!/bin/sh +# Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved +# +# Licensed 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. +# /usr/bin/wrt_launchpad_daemon " " & -- 2.7.4