Update change log and spec for wrt-plugins-tizen_0.4.32-1 tizen_2.1 accepted/tizen_2.1/20130520.093247 submit/tizen_2.1/20130516.133907
authorDongjin Choi <milkelf.choi@samsung.com>
Thu, 16 May 2013 09:17:20 +0000 (18:17 +0900)
committerDongjin Choi <milkelf.choi@samsung.com>
Thu, 16 May 2013 09:17:20 +0000 (18:17 +0900)
[model] REDWOOD
[binary_type] PDA
[customer] OPEN

[Issue#] N/A
[Problem] getAppSharedURI() API returns wrong path
[Cause] package is added twice to path
[Solution] remove one package from the path

[team] WebAPI
[request] N/A
[horizontal_expansion] N/A

packaging/wrt-plugins-tizen.spec
src/Application/ApplicationManager.cpp

index 87c8937..d9810b6 100755 (executable)
@@ -1,7 +1,7 @@
 Name:       wrt-plugins-tizen
 Summary:    JavaScript plugins for WebRuntime
 Version:    0.4.32
-Release:    0
+Release:    1
 Group:      Development/Libraries
 License:    Apache License, Version 2.0
 Source0:    %{name}-%{version}.tar.gz
index 41b0d65..98bb405 100644 (file)
@@ -1509,8 +1509,7 @@ void ApplicationManager::OnRequestReceived(const EventApplicationGetAppSharedURI
                return;
        }
 
-       std::string sharedURI = TIZENAPIS_APP_FILE_SCHEME + std::string(root_path) + TIZENAPIS_APP_SLASH + 
-                                       std::string(pkg_name) + TIZENAPIS_APP_SLASH + TIZENAPIS_APP_SHARED;
+       std::string sharedURI = TIZENAPIS_APP_FILE_SCHEME + std::string(root_path) + TIZENAPIS_APP_SLASH + TIZENAPIS_APP_SHARED;
        free(pkg_name);
 
        pkgmgrinfo_pkginfo_destroy_pkginfo(pkginfo_h);