Boilerplates fixed
authorKrzysztof Jackiewicz <k.jackiewicz@samsung.com>
Wed, 12 Dec 2012 16:53:28 +0000 (17:53 +0100)
committerGerrit Code Review <gerrit2@kim11>
Fri, 14 Dec 2012 09:26:03 +0000 (18:26 +0900)
[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

19 files changed:
src/view/common/scheme_action_map_data.h
src/wrt-launchpad-daemon/feature/preexec.h
src/wrt-launchpad-daemon/include/app_signal.h
src/wrt-launchpad-daemon/include/app_sock.h
src/wrt-launchpad-daemon/include/aul_util.h
src/wrt-launchpad-daemon/include/menu_db_util.h
src/wrt-launchpad-daemon/include/perf.h
src/wrt-launchpad-daemon/include/simple_util.h
src/wrt-launchpad-daemon/launchpad_src/access_control.h
src/wrt-launchpad-daemon/launchpad_src/config.h
src/wrt-launchpad-daemon/launchpad_src/gl.h
src/wrt-launchpad-daemon/launchpad_src/launchpad.c
src/wrt-launchpad-daemon/launchpad_src/sigchild.h
src/wrt-launchpad-daemon/launchpad_src/util_x.c
src/wrt-launchpad-daemon/launchpad_src/util_x.h
src/wrt-launchpad-daemon/legacy/preload.h
src/wrt-launchpad-daemon/src/app_sock.c
src/wrt-launchpad-daemon/src/simple_util.c
src/wrt-launchpad-daemon/wrt_launchpad_run.sh

index 9224e3d..6710222 100644 (file)
@@ -1,98 +1,98 @@
-/*\r
- * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved\r
- *\r
- *    Licensed under the Apache License, Version 2.0 (the "License");\r
- *    you may not use this file except in compliance with the License.\r
- *    You may obtain a copy of the License at\r
- *\r
- *        http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- *    Unless required by applicable law or agreed to in writing, software\r
- *    distributed under the License is distributed on an "AS IS" BASIS,\r
- *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- *    See the License for the specific language governing permissions and\r
- *    limitations under the License.\r
- */\r
-/*\r
- * @file       scheme_action_map_data.h\r
- * @author     Tae-Jeong Lee (taejeong.lee@samsung.com)\r
- * @version    1.0\r
- */\r
-\r
-#include "scheme_action_map.h"\r
-#include <scheme.h>\r
-\r
-namespace ViewModule {\r
-\r
-namespace {\r
-\r
-enum UriAction {\r
-    URI_ACTION_WRT,       // load in WRT\r
-    URI_ACTION_APPSVC,    // launch in APPSVC\r
-    URI_ACTION_VIDEO,     // launch in VIDEO player\r
-    URI_ACTION_ERROR\r
-};\r
-\r
-/**\r
- * WS-1501 - No top-level window navigation outside the widget. Deafult browser\r
- *           should be used instead. Frames/iframes are allowed to navigate.\r
- *           This requirement can't be applied to tizen hosted app as in its\r
- *           case the whole widget is "outside".\r
- *\r
- * WS-1502 - When calling window.open() with scheme HTTP/HTTPS and target\r
- *           attribute set to "_blank" WRT should open default browser. At the\r
- *           moment we can't distinguish target attributes, therefore all new\r
- *           windows are opened in the browser regardless of the attribute (the\r
- *           value "_new" is also treated this way). Tizen won't satisfy this\r
- *           requirement. It should open new windows in WRT.\r
- *\r
- * Multiview - Not supported in WAC application. Therefore opening WIDGET scheme\r
- *           in new window will result in launching appssvc, which won't be able\r
- *           to handle it. The correct behaviour has to be defined. In case of\r
- *           Tizen, new window will be opened in WRT.\r
- *\r
- * Video - YOUTUBE and RSTP are handled by video player.\r
- *\r
- * File scheme - FILE scheme has to be handled by WRT with exception to new\r
- *           window in WAC application (no support for multiple views)\r
- *\r
- * WS-1510/20/30/40/50 - All remaining cases are always handled by appsvc\r
- */\r
-\r
-// TIZEN\r
-const UriAction g_tizenActionMap[Scheme::COUNT][SchemeActionMap::COUNT] = {\r
-\r
-//  TOP_LEVEL           FRAME_LEVEL         NEW_WINDOW\r
-    {URI_ACTION_WRT,    URI_ACTION_WRT,     URI_ACTION_WRT},      // FILE\r
-    {URI_ACTION_APPSVC, URI_ACTION_APPSVC,  URI_ACTION_APPSVC},   // SMS\r
-    {URI_ACTION_APPSVC, URI_ACTION_APPSVC,  URI_ACTION_APPSVC},   // MMSTO\r
-    {URI_ACTION_APPSVC, URI_ACTION_APPSVC,  URI_ACTION_APPSVC},   // MAILTO\r
-    {URI_ACTION_WRT,    URI_ACTION_WRT,     URI_ACTION_WRT},   // DATA\r
-    {URI_ACTION_APPSVC, URI_ACTION_APPSVC,  URI_ACTION_APPSVC},   // TEL\r
-    {URI_ACTION_WRT,    URI_ACTION_WRT,     URI_ACTION_WRT},      // HTTP\r
-    {URI_ACTION_WRT,    URI_ACTION_WRT,     URI_ACTION_WRT},      // HTTPS\r
-    {URI_ACTION_WRT,    URI_ACTION_WRT,     URI_ACTION_WRT},      // WIDGET\r
-    {URI_ACTION_VIDEO,  URI_ACTION_VIDEO,   URI_ACTION_VIDEO},    // YOUTUBE\r
-    {URI_ACTION_VIDEO,  URI_ACTION_VIDEO,   URI_ACTION_VIDEO}     // RTSP\r
-};\r
-\r
-// WAC\r
-const UriAction g_wacActionMap[Scheme::COUNT][SchemeActionMap::COUNT] = {\r
-\r
-//  TOP_LEVEL           FRAME_LEVEL         NEW_WINDOW\r
-    {URI_ACTION_WRT,    URI_ACTION_WRT,     URI_ACTION_APPSVC},   // FILE\r
-    {URI_ACTION_APPSVC, URI_ACTION_APPSVC,  URI_ACTION_APPSVC},   // SMS\r
-    {URI_ACTION_APPSVC, URI_ACTION_APPSVC,  URI_ACTION_APPSVC},   // MMSTO\r
-    {URI_ACTION_APPSVC, URI_ACTION_APPSVC,  URI_ACTION_APPSVC},   // MAILTO\r
-    {URI_ACTION_WRT,    URI_ACTION_WRT,     URI_ACTION_WRT},   // DATA\r
-    {URI_ACTION_APPSVC, URI_ACTION_APPSVC,  URI_ACTION_APPSVC},   // TEL\r
-    {URI_ACTION_APPSVC, URI_ACTION_WRT,     URI_ACTION_APPSVC},   // HTTP\r
-    {URI_ACTION_APPSVC, URI_ACTION_WRT,     URI_ACTION_APPSVC},   // HTTPS\r
-    {URI_ACTION_WRT,    URI_ACTION_WRT,     URI_ACTION_APPSVC},   // WIDGET\r
-    {URI_ACTION_VIDEO,  URI_ACTION_VIDEO,   URI_ACTION_VIDEO},    // YOUTUBE\r
-    {URI_ACTION_VIDEO,  URI_ACTION_VIDEO,   URI_ACTION_VIDEO}     // RTSP\r
-};\r
-\r
-}\r
-\r
-}
\ 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 <scheme.h>
+
+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
+};
+
+}
+
+}
index 863d330..2cf64d0 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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
index 29d2e83..7987916 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index 1361ed6..044ad8c 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index d86a3f9..4c8ece2 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index ab25548..8af4181 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index fb2582f..35b0926 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index 2079b20..92e75f4 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index 6ba035c..3404ea4 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index f5728cf..becd61d 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index 4add496..98cf202 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index b1b9a94..6785d09 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index 2f56275..b9d35fb 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index 4e7ecd8..b871dae 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index 650bad5..21c27bc 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index b04c14a..f0c91df 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index b70fb38..cc2328e 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index d5bbeda..c4cf4d8 100644 (file)
@@ -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 <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
- *
- * 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.
  */
 
 
index 1c35f19..ebe0936 100644 (file)
@@ -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 "                                                                                                                                                                                                         " &