[Release] wrt_0.8.183
authorTaejeong Lee <taejeong.lee@samsung.com>
Tue, 16 Apr 2013 03:10:03 +0000 (12:10 +0900)
committerTaejeong Lee <taejeong.lee@samsung.com>
Tue, 16 Apr 2013 03:10:03 +0000 (12:10 +0900)
Change-Id: Ia3df67c6d12f999f2c65cd2f480441ecdeff9fb3

packaging/wrt.spec
src/api_new/ewk_context_manager.cpp [changed mode: 0644->0755]
wrt_launchpad_daemon.rule

index fb3cf20..7e202df 100644 (file)
@@ -1,7 +1,7 @@
-#git:framework/web/wrt wrt_0.8.182
+#git:framework/web/wrt wrt_0.8.183
 Name:       wrt
 Summary:    web runtime
-Version:    0.8.182
+Version:    0.8.183
 Release:    1
 Group:      Development/Libraries
 License:    Apache License, Version 2.0
old mode 100644 (file)
new mode 100755 (executable)
index c9476dc..7a9dcb3
@@ -39,6 +39,12 @@ namespace WRT {
 static const std::string bundlePath("/usr/lib/wrt-wk2-bundles/libwrt-wk2-bundle.so");
 static const std::string caCertPath("/opt/usr/share/certs/ca-certificate.crt");
 
+#ifdef __arm__
+const std::string plugins_arch = "plugins/arm";
+#else
+const std::string plugins_arch = "plugins/x86";
+#endif
+
 EwkContextManager::EwkContextManager(
         const std::string& tizenAppId,
         Ewk_Context* ewkContext,
@@ -133,6 +139,13 @@ bool EwkContextManager::initialize()
     // ewk storage_path set
     ewk_context_storage_path_reset(m_ewkContext);
 
+    // npruntime plugins path set
+    std::ostringstream plugins_path;
+    plugins_path << dao.getPath() << plugins_arch;
+    LogInfo("ewk_context_additional_plugin_path_set() : " << plugins_path.str());
+
+    ewk_context_additional_plugin_path_set(m_ewkContext, plugins_path.str().c_str());
+
     m_initialized = true;
 
     return true;
index b658e65..f7a306e 100644 (file)
@@ -1,2 +1,5 @@
 wrt_launchpad_daemon system::share rwx
 wrt_launchpad_daemon system::homedir rwx
+wrt_launchpad_daemon device::app_logging w
+wrt_launchpad_daemon xorg w
+wrt_launchpad_daemon webkit2-efl rwxa