platform/core/api/webapi-plugins.git
7 years ago[Downlaod] to enable download on wearable target 06/71206/1 accepted/tizen/common/20160524.150821 accepted/tizen/ivi/20160525.003534 accepted/tizen/mobile/20160525.003647 accepted/tizen/tv/20160525.003523 accepted/tizen/wearable/20160525.003618 submit/tizen/20160524.113543
taekeun.kang [Tue, 24 May 2016 11:28:21 +0000 (20:28 +0900)]
[Downlaod] to enable download on wearable target
[version] 0.85

Change-Id: I6987274563f2847def9a57018b19f8e6b6dfea14
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
7 years ago[version] 0.84 51/71051/1 accepted/tizen/ivi/20160524.095358 accepted/tizen/mobile/20160524.095417 accepted/tizen/tv/20160524.095245 accepted/tizen/wearable/20160524.095435 submit/tizen/20160524.021316
Hyunjin Park [Tue, 24 May 2016 02:01:35 +0000 (11:01 +0900)]
[version] 0.84

Change-Id: I28849306d0445925fb0ceddae710c2850892034e

8 years agoMerge "[Filesystem] '.' and '..' paths are forbiden" into tizen
Hyunjin Park [Mon, 23 May 2016 10:01:31 +0000 (03:01 -0700)]
Merge "[Filesystem] '.' and '..' paths are forbiden" into tizen

8 years ago[Filesystem] '.' and '..' paths are forbiden 18/70918/2
Piotr Kosko [Wed, 18 Nov 2015 11:37:11 +0000 (12:37 +0100)]
[Filesystem] '.' and '..' paths are forbiden

[Verification] TCT passrate 100%.
  Checked in chrome console - resolving when path contain '/.' or '/..' directories causes error.

Change-Id: I025c8177693a11ac8422a0ec91bf769ad930edfc
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Signed-off-by: bg.chun <bg.chun@samsung.com>
8 years agoMerge "Fixed a bug in TZDate constructor" into tizen
Hyunjin Park [Mon, 23 May 2016 09:38:08 +0000 (02:38 -0700)]
Merge "Fixed a bug in TZDate constructor" into tizen

8 years ago[Filesystem] Fixed path-name issue 93/70893/2
Piotr Kosko [Tue, 3 Nov 2015 13:07:39 +0000 (14:07 +0100)]
[Filesystem] Fixed path-name issue

[Bug] Values of path and name in File object do not follow documentation when resolve paths with trailing '/' sign.

[Verification] TCT of filesystem, alarm, archive, exif and security 100% passrate.

Scenarios below are correct as in comments:
tizen.filesystem.resolve('/', function(v){console.log("path \"" + v.path + "\" name \"" + v.name + "\"")},
   function(){}, 'r');
// return path "/" name ""

tizen.filesystem.resolve('/opt', function(v){console.log("path \"" + v.path + "\" name \"" + v.name + "\"")},
   function(){}, 'r');
// return path "/" name "opt"

tizen.filesystem.resolve('/opt/', function(v){console.log("path \"" + v.path + "\" name \"" + v.name + "\"")},
   function(){}, 'r');
// return path "/" name "opt/"

tizen.filesystem.resolve('documents', function(v){console.log("path \"" + v.path + "\" name \"" + v.name + "\"")},
   function(){}, 'r');
// return path "documents" name ""

tizen.filesystem.resolve('documents/', function(v){console.log("path \"" + v.path + "\" name \"" + v.name + "\"")},
   function(){}, 'r');
// return path "documents/" name ""

tizen.filesystem.resolve('documents/file.txt', function(v){console.log("path \"" + v.path + "\" name \"" + v.name + "\"")},
   function(){}, 'r');
// return path "documents/" name "file.txt"

Change-Id: I1090a9c40d3ec30953631f5ce9c40fe5acff5f72
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
8 years ago[FileSystem] Remove code for cutting last '/' 99/70899/1
SungHyun Min [Fri, 23 Oct 2015 01:32:09 +0000 (10:32 +0900)]
[FileSystem] Remove code for cutting last '/'

Change-Id: I43e404dea387026d9cfee2df7d56d78765baaeee
Signed-off-by: Sunghyun Min <shyun.min@samsung.com>
8 years ago[FileSystem] Fix issue about destination path in copyTo() method. 98/70898/1
Piotr Kosko [Thu, 27 Aug 2015 09:47:18 +0000 (18:47 +0900)]
[FileSystem] Fix issue about destination path in copyTo() method.

cherry-pick from tizen_2.4_tv_product_migration branch.

Issue : copyTo() method returns error, when the destination path is virtual path without '/'

Change-Id: Ibb87064acccada243bff85298401a6639c1b44c6
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
8 years ago[Filesystem] Fixed path-related issues 94/70894/1
Piotr Kosko [Thu, 15 Oct 2015 10:52:36 +0000 (12:52 +0200)]
[Filesystem] Fixed path-related issues

[Features] Fixed issues:
  1. resolve "documents/" works as resolving "documents"
  2. multiple "/" is filepaths are merged to single one

[Verification] Code compiles without errors.
  TCTs of Filesystem, Calendar, Alarm, Archive and Exif return 100% passrate.

  Scenarios with results below:
  1.
  tizen.filesystem.resolve(
   'images/',
   function(dir) {
     var a = dir.createDirectory('testt');
     console.log("path: " + a.path + " fullPath: " + a.fullPath);
   }, function(e) {
     console.log("Error: " + e.message);
   }, "rw"
  );
  ---------
  path: images/ fullPath: images/testt

  2.
  tizen.filesystem.resolve(
   'images/testt/',
   function(dir) {
     console.log("Mount point Name is " +  dir.path);
     console.log("path: " + dir.path + " fullPath: " + dir.fullPath);
   }, function(e) {
     console.log("Error: " + e.message);
   }, "rw"
  );
  ---------
  path: images/ fullPath: images/testt

  3.
  tizen.filesystem.resolve(
   'images//////testt/',
   function(dir) {
     console.log("Mount point Name is " +  dir.path);
     console.log("path: " + dir.path + " fullPath: " + dir.fullPath);
   }, function(e) {
     console.log("Error: " + e.message);
   }, "rw"
  );
  ---------
  path: images/ fullPath: images/testt

Change-Id: I66ce92a5207148dfa82109e187b8e4f58727aead
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
8 years agoFixed a bug in TZDate constructor 47/70747/1
Piotr Kosko [Fri, 20 May 2016 09:42:25 +0000 (11:42 +0200)]
Fixed a bug in TZDate constructor

[Bug] With following conditions:
  1. Device local timezone uses DST.
  2. current date has +1 hour according to DST.
  3. Creating new tizen date with local timezone, on which date there would not be +1 hour DST
  created date would have incorrect time.

  Example:
  1. using timezone 'Europe/Warsaw'
  2. current date 20.05.2016 (+2 hour from UTC = 1 (for timezone) + 1 (for DST))
  3. line below returned 13, which was incorrect:
     var d = new tizen.TZDate(new Date(2016,01,20,13)); d.getHours();

[Verification] TCT passrate time - 100%.
  Verified in console - above example returned '13' which was correct value.

Change-Id: Iffff14814d2c5011561158cc7bd1db215659953a
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
8 years ago[iotcon]change native api follow to Native ACR-620 35/70635/1 accepted/tizen/common/20160520.171112 accepted/tizen/ivi/20160520.081319 accepted/tizen/mobile/20160520.081257 accepted/tizen/tv/20160520.081240 accepted/tizen/wearable/20160520.081211 submit/tizen/20160520.020059
jk.pu [Fri, 20 May 2016 02:24:41 +0000 (11:24 +0900)]
[iotcon]change native api follow to Native ACR-620

Change-Id: Icdd4115315606f3e1e2de8a950fe6128432cc4e0
Signed-off-by: jk.pu <jk.pu@samsung.com>
8 years ago[version] 0.83 24/70524/1 accepted/tizen/common/20160519.191649 accepted/tizen/ivi/20160520.003408 accepted/tizen/mobile/20160520.003922 accepted/tizen/tv/20160520.003309 accepted/tizen/wearable/20160520.003431 submit/tizen/20160519.093420
Hyunjin Park [Thu, 19 May 2016 09:25:06 +0000 (18:25 +0900)]
[version] 0.83

Change-Id: I14c7337930ef31a48ddb90cb374f31388bb8042d

8 years ago[HAM] remove build warning 17/70517/1
Hyunjin Park [Thu, 19 May 2016 09:14:30 +0000 (18:14 +0900)]
[HAM] remove build warning
humanactivitymonitor_manager.cc:562:9: warning: variable 'ret' set but not used [-Wunused-but-set-variable]

Change-Id: I292f3986556f95a55b33175a8fd9b9d8233befe0

8 years agoMerge "[Common] Added CHECK_PRIVILEGE macro." into tizen
Hyunjin Park [Thu, 19 May 2016 07:08:52 +0000 (00:08 -0700)]
Merge "[Common] Added CHECK_PRIVILEGE macro." into tizen

8 years ago[version] 0.82 23/70223/1 accepted/tizen/common/20160519.191401 accepted/tizen/ivi/20160519.085256 accepted/tizen/mobile/20160519.085311 accepted/tizen/tv/20160519.085236 accepted/tizen/wearable/20160519.085239 submit/tizen/20160519.014847
Hyunjin Park [Thu, 19 May 2016 01:35:49 +0000 (10:35 +0900)]
[version] 0.82

Change-Id: If8cece950d4d1001e4512dc37a5e668439b5e985

8 years ago[Common] Added CHECK_PRIVILEGE macro. 25/70125/1
Tomasz Marciniak [Wed, 18 May 2016 07:21:11 +0000 (09:21 +0200)]
[Common] Added CHECK_PRIVILEGE macro.

[Feature] This macro is used by new modules which
return TizenPlatform object to JS layer.

[Verification] Code compiles.

Change-Id: Id471face94ea52896092221f3ad03052d18007ac
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
8 years ago[Feedback] small fixes 68/69968/1
Lukasz Bardeli [Tue, 17 May 2016 11:50:05 +0000 (13:50 +0200)]
[Feedback] small fixes

Change-Id: Ie1e2515de414cfb95d63116eb12954f2552fa63e
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
8 years ago[version] 0.81 43/69943/1 accepted/tizen/common/20160517.174408 accepted/tizen/ivi/20160518.004404 accepted/tizen/mobile/20160518.004508 accepted/tizen/tv/20160518.004410 accepted/tizen/wearable/20160518.004359 submit/tizen/20160517.094633
Hyunjin Park [Tue, 17 May 2016 09:37:17 +0000 (18:37 +0900)]
[version] 0.81

Change-Id: Ib4a8b79a2c243af4cf1b2a23f415a26bce020978

8 years ago[Push] Return null in case there is no data received. 52/69752/1
Tomasz Marciniak [Mon, 16 May 2016 12:20:59 +0000 (14:20 +0200)]
[Push] Return null in case there is no data received.

[Feature] If native api return PUSH_SERVICE_ERROR_NO_DATA
in JS layer null object should be returned.

[Verification] Code compiles.

Change-Id: Id34aaacf5494208ae022ef4403cdbf9dac212860
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
8 years ago[version] 0.80 52/69552/1 accepted/tizen/common/20160516.143243 accepted/tizen/ivi/20160516.091539 accepted/tizen/mobile/20160516.091537 accepted/tizen/tv/20160516.091515 accepted/tizen/wearable/20160516.091553 submit/tizen/20160516.012754
Hyunjin Park [Mon, 16 May 2016 01:23:45 +0000 (10:23 +0900)]
[version] 0.80

Change-Id: Ie0313fb209f384d364ab9ccd83ef4f8a304f1cce

8 years agoMerge "[Common][Systeminfo] deviced used for mobile profile" into tizen
Hyunjin Park [Mon, 16 May 2016 01:23:12 +0000 (18:23 -0700)]
Merge "[Common][Systeminfo] deviced used for mobile profile" into tizen

8 years agoMerge "[SecureElement] remove space" into tizen
Hyunjin Park [Mon, 16 May 2016 01:11:51 +0000 (18:11 -0700)]
Merge "[SecureElement] remove space" into tizen

8 years ago[Common][Systeminfo] deviced used for mobile profile 64/69464/1
Piotr Kosko [Wed, 11 May 2016 13:08:40 +0000 (15:08 +0200)]
[Common][Systeminfo] deviced used for mobile profile

[Feature] Deviced is used to handle sdcard on mobile now

[Verification] Code compiles without errors.
  TCT passrate of filesystem(auto and manual) - 100%
  TCT passrate of systeminfo - 100%

  Verification was done on binary 0511.1 with installed latest deviced package.

Change-Id: I282334ab55a996db79f502d606ced56fd6107665
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
8 years ago[SecureElement] remove space 49/69249/1
Lukasz Bardeli [Thu, 12 May 2016 09:08:21 +0000 (11:08 +0200)]
[SecureElement] remove space

Change-Id: Ibb3c6dc7eb5ecf4229181681ca36ceb711295dd9
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
8 years ago[version] 0.79 51/69151/1 accepted/tizen/common/20160512.144010 accepted/tizen/ivi/20160512.051152 accepted/tizen/mobile/20160512.051235 accepted/tizen/tv/20160512.051128 accepted/tizen/wearable/20160512.051204 submit/tizen/20160512.042602
Hyunjin Park [Thu, 12 May 2016 04:24:14 +0000 (13:24 +0900)]
[version] 0.79

Change-Id: I8cf1a859bfe6a65a574d8b7b47f2521776d3b6f3

8 years agoFixed method name in JS layer 95/69095/1
Piotr Kosko [Wed, 11 May 2016 12:30:42 +0000 (14:30 +0200)]
Fixed method name in JS layer

[Bug] name of method was incorrect

Change-Id: I05c9ee1b389b1a31d1d702992580275f771493c8
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
8 years agoMerge "[Contact] - Improving performance of the functions find" into tizen
Hyunjin Park [Wed, 11 May 2016 06:23:23 +0000 (23:23 -0700)]
Merge "[Contact] - Improving performance of the functions find" into tizen

8 years ago[PackageManager] add code to check if each property in progressCallback is available 03/69003/1
taekeun.kang [Wed, 11 May 2016 02:18:51 +0000 (11:18 +0900)]
[PackageManager] add code to check if each property in progressCallback is available

Change-Id: I83300fbd159d603886dfb9425898db60f18c510c
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
8 years ago[Contact] - Improving performance of the functions find 38/68938/1
Andrzej Popowski [Tue, 10 May 2016 11:55:22 +0000 (13:55 +0200)]
[Contact] - Improving performance of the functions find

[Verification] - TCT results 100% (459/459/0/0/0)

Change-Id: I7de61960bb809ac56b65a807d0e1bfb0cd11f66d
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
8 years agoMerge "[Common] deviced dbus used interface changed" into tizen accepted/tizen/ivi/20160511.080401 accepted/tizen/mobile/20160511.080304 accepted/tizen/tv/20160511.080319 accepted/tizen/wearable/20160511.080344 submit/tizen/20160510.075001
Hyunjin Park [Tue, 10 May 2016 07:52:23 +0000 (00:52 -0700)]
Merge "[Common] deviced dbus used interface changed" into tizen

8 years ago[widget service] add conditional feature on widget service 17/68817/1
Hyunjin Park [Tue, 10 May 2016 02:43:50 +0000 (11:43 +0900)]
[widget service] add conditional feature on widget service
due to TV profile's build error

Change-Id: Ic52961d40e16d16627cebaaafbe474135aaf2f11

8 years ago[Common] deviced dbus used interface changed 61/68361/2
Hyunjin Park [Wed, 4 May 2016 00:57:22 +0000 (09:57 +0900)]
[Common] deviced dbus used interface changed

[Feature] Deviced block module interface was changed. Expected data format is
  (issssssisibii) - two additional ints were added.

[Verification] Filesystem and Systeminfo TCTs 100% passrate on mobiles

Change-Id: If7697493f0ec51024242c5e1524efc5098901a7d

8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/common/20160509.134817 accepted/tizen/ivi/20160509.062147 accepted/tizen/mobile/20160509.062051 accepted/tizen/tv/20160509.062110 accepted/tizen/wearable/20160509.062127 submit/tizen/20160509.020631
Hyunjin Park [Mon, 9 May 2016 01:54:00 +0000 (10:54 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.77
Hyunjin Park [Mon, 9 May 2016 01:52:40 +0000 (10:52 +0900)]
[version] 0.77

Change-Id: Ib5d188f07e1a16c678a959107a52e44dd3374d0c

8 years agoMerge "[Contact] - fixing bug when getting data of a person" into tizen_3.0
HyunJin Park [Mon, 9 May 2016 01:51:20 +0000 (10:51 +0900)]
Merge "[Contact] - fixing bug when getting data of a person" into tizen_3.0

8 years agoMerge "[Push] Added new functionalites, code uses push-service.h" into tizen_3.0
HyunJin Park [Mon, 9 May 2016 01:48:00 +0000 (10:48 +0900)]
Merge "[Push] Added new functionalites, code uses push-service.h" into tizen_3.0

8 years ago[SystemInfo] Wait for all existing asynchronous operations.
Pawel Andruszkiewicz [Fri, 1 Apr 2016 12:05:22 +0000 (14:05 +0200)]
[SystemInfo] Wait for all existing asynchronous operations.

Running cordova test with WiFi disabled and mobile data enabled caused segmentation fault.
This commit fixed that issue.

[Verification] TCT pass rate: 100% (297/297/0/0/0)

Change-Id: Ibdc42f439f878605c7edc0e5a9c2084d8528226d
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
8 years ago[Contact] - fixing bug when getting data of a person
Andrzej Popowski [Fri, 6 May 2016 13:59:06 +0000 (15:59 +0200)]
[Contact] - fixing bug when getting data of a person

Change-Id: I7db8525d713ca6f7029513f4fbdcf62bf0936bb4
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/common/20160504.131035 accepted/tizen/ivi/20160504.115340 accepted/tizen/mobile/20160504.115259 accepted/tizen/tv/20160504.115143 accepted/tizen/wearable/20160504.115306 submit/tizen/20160504.100625
Hyunjin Park [Wed, 4 May 2016 09:39:21 +0000 (18:39 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.76
Hyunjin Park [Wed, 4 May 2016 09:38:45 +0000 (18:38 +0900)]
[version] 0.76

Change-Id: I6411fa2614e7207b73197f860644bf0307ee7b9c

8 years agoMerge "[systeminfo] add kPlatformTv, kProfileTv for tv profile [Verification] sysinfo...
HyunJin Park [Wed, 4 May 2016 09:33:31 +0000 (18:33 +0900)]
Merge "[systeminfo] add kPlatformTv, kProfileTv for tv profile [Verification] sysinfo TCT 100% pass 248/248/0/0/0" into tizen_3.0

8 years ago[systeminfo] add kPlatformTv, kProfileTv for tv profile
bg.chun [Wed, 4 May 2016 08:05:59 +0000 (17:05 +0900)]
[systeminfo] add kPlatformTv, kProfileTv for tv profile
[Verification] sysinfo TCT 100% pass 248/248/0/0/0

Change-Id: I3608f46a58d7448a4e57bb106e6dcf29d69b2b7c
Signed-off-by: bg.chun <bg.chun@samsung.com>
8 years ago[HAM]add unknown at PedometerStepStatus(TWDAPI-103)
jk.pu [Wed, 4 May 2016 06:54:08 +0000 (15:54 +0900)]
[HAM]add unknown at PedometerStepStatus(TWDAPI-103)

Change-Id: I8756f96e1ae503de142e124073b3eaf32ab6a16e
Signed-off-by: jk.pu <jk.pu@samsung.com>
8 years ago[doc] add tizen.widl description
Hyunjin Park [Wed, 4 May 2016 05:34:39 +0000 (14:34 +0900)]
[doc] add tizen.widl description

Change-Id: I9973bc5a655d118f739a841c00a646013bc5ed0f

8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/ivi/20160504.012854 accepted/tizen/mobile/20160504.012802 accepted/tizen/tv/20160504.012817 accepted/tizen/wearable/20160504.012835 submit/tizen/20160503.235142
Hyunjin Park [Tue, 3 May 2016 23:31:31 +0000 (08:31 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.75
Hyunjin Park [Tue, 3 May 2016 23:30:40 +0000 (08:30 +0900)]
[version] 0.75

Change-Id: Iea3c857ecc14e3943ef6338d310176c8486a75d6

8 years agoMerge "[Messaging] fix for memory leak" into tizen_3.0
HyunJin Park [Tue, 3 May 2016 23:28:45 +0000 (08:28 +0900)]
Merge "[Messaging] fix for memory leak" into tizen_3.0

8 years ago[HAM] fix implementation for calling GPS listener
taekeun.kang [Tue, 3 May 2016 06:05:28 +0000 (15:05 +0900)]
[HAM] fix implementation for calling GPS listener

Change-Id: I7b7b389e9ee895ab9dcde4a021cef70af9cb8ec8
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
8 years ago[Messaging] fix for memory leak
Lukasz Bardeli [Mon, 2 May 2016 13:02:40 +0000 (15:02 +0200)]
[Messaging] fix for memory leak

Change-Id: Id05e8dda11d5840bf5470f1711fca96183e27f23
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/common/20160502.183526 accepted/tizen/ivi/20160502.113643 accepted/tizen/mobile/20160502.113553 accepted/tizen/tv/20160502.113604 accepted/tizen/wearable/20160502.113628 submit/tizen/20160502.015917
Hyunjin Park [Mon, 2 May 2016 01:57:31 +0000 (10:57 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.74
Hyunjin Park [Mon, 2 May 2016 01:56:30 +0000 (10:56 +0900)]
[version] 0.74

Change-Id: I54fa7aa4727a3bb1cd8907a8e26a89103c64a9ec

8 years ago[Push] Added new functionalites, code uses push-service.h
Tomasz Marciniak [Tue, 9 Feb 2016 14:27:02 +0000 (15:27 +0100)]
[Push] Added new functionalites, code uses push-service.h

[Verification] Code compiles, TCT pass rate: 100% (41/41/0/0/0)

Change-Id: Ia5bfdd92c450877aa83fa9e306bf8bbf1733c4c7
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
8 years ago[NFC][Wearable] NFC disabled for wearable profile as it is in model-config.xml
Piotr Kosko [Fri, 29 Apr 2016 09:32:53 +0000 (11:32 +0200)]
[NFC][Wearable] NFC disabled for wearable profile as it is in  model-config.xml

[Feature]on wearable emulator: 20160421.3, model-config.xml file:
<key name="tizen.org/feature/network.nfc" type="bool">false</key>
<key name="tizen.org/feature/network.nfc.tag" type="bool">false</key>
<key name="tizen.org/feature/network.nfc.p2p" type="bool">false</key>
<key name="tizen.org/feature/network.nfc.card_emulation" type="bool">false</key>
<key name="tizen.org/feature/network.nfc.card_emulation.hce" type="bool">false</key>
<key name="tizen.org/feature/network.nfc.reserved_push" type="bool">false</key>
build configuration should follow above settings to satisfy TCT tests.

[Verification] TCT of capability passrate 100% on wearable.

Change-Id: I8fccc4803a1b3c2edfeed5bc7b2fb058af81b3fd
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
8 years ago[Contact] - Reset usage count
Andrzej Popowski [Thu, 10 Mar 2016 07:18:01 +0000 (08:18 +0100)]
[Contact] - Reset usage count

Change-Id: Icea3f60a102f6210770e40997d5098f72ccd8130
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
8 years agoMerge "[Contact] Added method for finding by usageCount" into tizen_3.0
HyunJin Park [Fri, 29 Apr 2016 06:04:32 +0000 (15:04 +0900)]
Merge "[Contact] Added method for finding by usageCount" into tizen_3.0

8 years agoMerge "[Contact] - Implementing getUsageCount() function" into tizen_3.0
HyunJin Park [Fri, 29 Apr 2016 06:04:22 +0000 (15:04 +0900)]
Merge "[Contact] - Implementing getUsageCount() function" into tizen_3.0

8 years ago[IOTCON] apply changed api name and revise options behavior (readonly -> writable)
taekeun.kang [Thu, 28 Apr 2016 23:31:56 +0000 (08:31 +0900)]
[IOTCON] apply changed api name and revise options behavior (readonly -> writable)
[version] 0.73

Change-Id: I6994856ae5dd9c88549aa9f320a943d817504faf
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/common/20160429.170607 accepted/tizen/ivi/20160429.074345 accepted/tizen/mobile/20160429.074254 accepted/tizen/tv/20160429.074310 accepted/tizen/wearable/20160429.074326 submit/tizen/20160429.054728
Hyunjin Park [Fri, 29 Apr 2016 05:24:40 +0000 (14:24 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[HAM] add NFC module on mobile emulator and fix build error of emulator
Hyunjin Park [Fri, 29 Apr 2016 05:16:00 +0000 (14:16 +0900)]
[HAM] add NFC module on mobile emulator and fix build error of emulator
- fix build error of emulator due to picojson
- add NFC module on mobile emulator

Change-Id: I678a886f9c5711f75485e2a75b88c12710c2ae2e

8 years agoMerge branch 'tizen_3.0' into tizen submit/tizen/20160429.041112
Hyunjin Park [Fri, 29 Apr 2016 03:02:52 +0000 (12:02 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.71
Hyunjin Park [Fri, 29 Apr 2016 03:02:05 +0000 (12:02 +0900)]
[version] 0.71

Change-Id: I02124814ea27b46ea1c4a3adf50658aa1167f103

8 years agoMerge "[sensor] add getHardwareInfo()" into tizen_3.0
HyunJin Park [Fri, 29 Apr 2016 03:00:17 +0000 (12:00 +0900)]
Merge "[sensor] add getHardwareInfo()" into tizen_3.0

8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/common/20160427.054059 submit/tizen/20160427.040804
Hyunjin Park [Wed, 27 Apr 2016 02:51:27 +0000 (11:51 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.70
Hyunjin Park [Wed, 27 Apr 2016 02:49:17 +0000 (11:49 +0900)]
[version] 0.70

Change-Id: I7baab6d829af27d78a811889ade0b533434a0974

8 years agoMerge "[Feedback] Added privilege checking" into tizen_3.0
HyunJin Park [Wed, 27 Apr 2016 02:34:40 +0000 (11:34 +0900)]
Merge "[Feedback] Added privilege checking" into tizen_3.0

8 years agoMerge "[Common] Changed way of handling privileges for API versions" into tizen_3.0
HyunJin Park [Wed, 27 Apr 2016 02:31:03 +0000 (11:31 +0900)]
Merge "[Common] Changed way of handling privileges for API versions" into tizen_3.0

8 years ago[HAM] fix some implementation error.
jk.pu [Tue, 26 Apr 2016 12:37:59 +0000 (21:37 +0900)]
[HAM] fix some implementation error.

- gps error range return 0 issue.
- sleep monitor timestamp return monotonic time.
- missing location_manager_unset_setting_changed_cb() at stop()

Change-Id: Id36a65a3e4ba78b4d24a8497e586e77e3eef99af
Signed-off-by: jk.pu <jk.pu@samsung.com>
8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/common/20160426.143418 accepted/tizen/ivi/20160426.103031 accepted/tizen/mobile/20160426.102934 accepted/tizen/tv/20160426.102759 accepted/tizen/wearable/20160426.103052 submit/tizen/20160426.030601
jk.pu [Tue, 26 Apr 2016 02:18:11 +0000 (11:18 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.69
jk.pu [Tue, 26 Apr 2016 02:12:13 +0000 (11:12 +0900)]
[version] 0.69

Change-Id: I4de75545c03170988534e968e11299fc4afac8d8
Signed-off-by: jk.pu <jk.pu@samsung.com>
8 years agoMerge "[HAM] move the function for gps setting change after location_manager_create...
JeongKyun Pu [Tue, 26 Apr 2016 01:39:26 +0000 (10:39 +0900)]
Merge "[HAM] move the function for gps setting change after location_manager_create()" into tizen_3.0

8 years agoMerge "[Sensor] - Fixing bug when comparing events" into tizen_3.0
JeongKyun Pu [Tue, 26 Apr 2016 01:26:42 +0000 (10:26 +0900)]
Merge "[Sensor] - Fixing bug when comparing events" into tizen_3.0

8 years ago[HAM] move the function for gps setting change after location_manager_create()
taekeun.kang [Tue, 26 Apr 2016 00:00:01 +0000 (09:00 +0900)]
[HAM] move the function for gps setting change after location_manager_create()

Change-Id: I46507b553887a094cc02aaf1a411cc61f72e5765
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
8 years ago[Sensor] - Fixing bug when comparing events
Andrzej Popowski [Mon, 25 Apr 2016 11:29:02 +0000 (13:29 +0200)]
[Sensor] - Fixing bug when comparing events

Change-Id: Ife8b40eb4bab51f7e58b8d2dfb2e59761c482af1
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
8 years ago[Feedback] Added privilege checking
Lukasz Bardeli [Mon, 25 Apr 2016 12:58:55 +0000 (14:58 +0200)]
[Feedback] Added privilege checking

Change-Id: I941fb2d530473819b18e97d0c7ae1cdbd52189b2
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
8 years ago[Common] Changed way of handling privileges for API versions
Piotr Kosko [Thu, 21 Apr 2016 07:30:54 +0000 (09:30 +0200)]
[Common] Changed way of handling privileges for API versions

[Feature] privilege_manager_get_mapped_privilege_list function is used to get
  proper mapping of privileges for application version and current platform.
  Such solution replaces hardcoded mapping for 3.0 in utils_api.js file.

[Verification] auto TCT's passrate didn't change.

Change-Id: If39de763d92a4489e56a824bd035ee5db1548df9
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
8 years agoMerge "[HAM] change implementation for GPS interval" into tizen_3.0
JeongKyun Pu [Mon, 25 Apr 2016 11:54:19 +0000 (20:54 +0900)]
Merge "[HAM] change implementation for GPS interval" into tizen_3.0

8 years ago[HAM] change implementation for GPS interval
taekeun.kang [Mon, 25 Apr 2016 11:41:58 +0000 (20:41 +0900)]
[HAM] change implementation for GPS interval

Change-Id: I438208215fdf8c4826bd617626e555f5739f25ee
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
8 years agoMerge "[Feedback] Implement new module plugin" into tizen_3.0
JeongKyun Pu [Mon, 25 Apr 2016 11:47:01 +0000 (20:47 +0900)]
Merge "[Feedback] Implement new module plugin" into tizen_3.0

8 years ago[Feedback] Implement new module plugin
Jakub Skowron [Mon, 25 Apr 2016 11:36:43 +0000 (13:36 +0200)]
[Feedback] Implement new module plugin

Note:
It wasn't tested sufficiently. 'feedback_is_supported_pattern' Native function
returns 'false' status for all system pre-defined patterns and types.

Tested on:
[Version]
Model=Tizen3/Mobile;
Build=tizen-mobile_20160121.1;

Change-Id: I405eefa24892f6bdfbebbb55af9c3ec1a5f36af0
Signed-off-by: Piotr Czaja <p.czaja@samsung.com>
Signed-off-by: Jakub Skowron <j.skowron@samsung.com>
8 years ago[HAM] Changed LOGGER() into LoggerE.
Tomasz Marciniak [Mon, 25 Apr 2016 08:54:14 +0000 (10:54 +0200)]
[HAM] Changed LOGGER() into LoggerE.

[Verification] Code compiles.

Change-Id: Idc39f6a93b377443999cd52d5387fe41a37ac79f
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
8 years ago[HAM] Added error callback to start() function.
Tomasz Marciniak [Mon, 25 Apr 2016 08:04:52 +0000 (10:04 +0200)]
[HAM] Added error callback to start() function.

[Verification] Code compiles. Tested on emulator.
When location is off error callback is called.

Change-Id: Icd7fc9fe39fe45feb98eec48ec1c7c0c40b10d2a
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
8 years ago[HAM] - timestamp in pedometer limited to seconds
Andrzej Popowski [Thu, 21 Apr 2016 10:12:34 +0000 (12:12 +0200)]
[HAM] - timestamp in pedometer limited to seconds

Change-Id: I19e036ff4ddd4f8da8a3aa7d40641195aa0c7774
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/common/20160422.171751 accepted/tizen/ivi/20160423.060535 accepted/tizen/mobile/20160423.055557 accepted/tizen/tv/20160423.060008 accepted/tizen/wearable/20160423.060259 submit/tizen/20160421.063352 submit/tizen/20160425.022839
jk.pu [Thu, 21 Apr 2016 06:31:05 +0000 (15:31 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.68
jk.pu [Thu, 21 Apr 2016 06:24:00 +0000 (15:24 +0900)]
[version] 0.68

Change-Id: Ic6bb89437c6ada2f80c4f8349cf0926ae90ab338
Signed-off-by: jk.pu <jk.pu@samsung.com>
8 years agoMerge "[IOTCON] update implementation for applying the change of native APIs" into...
JeongKyun Pu [Thu, 21 Apr 2016 02:34:06 +0000 (11:34 +0900)]
Merge "[IOTCON] update implementation for applying the change of native APIs" into tizen_3.0

8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/ivi/20160422.065457 accepted/tizen/mobile/20160422.065523 accepted/tizen/tv/20160422.065454 accepted/tizen/wearable/20160422.065439 submit/tizen/20160421.024541
Hyunjin Park [Thu, 21 Apr 2016 02:23:14 +0000 (11:23 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.67
Hyunjin Park [Thu, 21 Apr 2016 02:22:25 +0000 (11:22 +0900)]
[version] 0.67

Change-Id: Ida77cc5696eed7f1c4f683d396671f2d4171682b

8 years ago[IOTCON] update implementation for applying the change of native APIs
taekeun.kang [Wed, 20 Apr 2016 12:23:53 +0000 (21:23 +0900)]
[IOTCON] update implementation for applying the change of native APIs

Change-Id: I98b82bb8f4504814948d447fb6bc83761d6d960f
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
8 years ago[sensor] add getHardwareInfo()
bg.chun [Fri, 15 Apr 2016 07:42:34 +0000 (16:42 +0900)]
[sensor] add getHardwareInfo()

Change-Id: Ibfc8662cf26f5077133ddd3d63cc9745d25bc00c
Signed-off-by: bg.chun <bg.chun@samsung.com>
8 years ago[Common] apply new privileges
Lukasz Bardeli [Wed, 20 Apr 2016 11:28:19 +0000 (13:28 +0200)]
[Common] apply new privileges

Change-Id: I185dcb124f6b32835b6619e3ae972eb21a9808c3
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/common/20160421.161458 accepted/tizen/ivi/20160421.011301 accepted/tizen/mobile/20160421.011436 accepted/tizen/tv/20160421.011322 accepted/tizen/wearable/20160421.011328 submit/tizen/20160420.102539
Hyunjin Park [Wed, 20 Apr 2016 10:13:48 +0000 (19:13 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years agoadd pkgmgr-installer due to dependency
Hyunjin Park [Wed, 20 Apr 2016 10:09:34 +0000 (19:09 +0900)]
add pkgmgr-installer due to dependency

Change-Id: Ibcbff92012572a9d31e0b05fb49e72c28945d082

8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/common/20160420.141546 accepted/tizen/ivi/20160421.010516 accepted/tizen/mobile/20160421.010534 accepted/tizen/tv/20160421.010528 accepted/tizen/wearable/20160421.010525 submit/tizen/20160420.043235
Hyunjin Park [Wed, 20 Apr 2016 04:20:05 +0000 (13:20 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.65
Hyunjin Park [Wed, 20 Apr 2016 04:16:17 +0000 (13:16 +0900)]
[version] 0.65

Change-Id: I5d4b0fbadeea59ad74af5807dd850ef9bee76630

8 years ago[Common] Change mapping bluetooth privileges
Lukasz Bardeli [Tue, 19 Apr 2016 11:28:13 +0000 (13:28 +0200)]
[Common] Change mapping bluetooth privileges

Change-Id: Ida07768a636f96a292932aad2e556192f0885756
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
8 years agoMerge branch 'tizen_3.0' into tizen accepted/tizen/common/20160418.142035 accepted/tizen/ivi/20160418.124549 accepted/tizen/mobile/20160418.124330 accepted/tizen/tv/20160418.124336 accepted/tizen/wearable/20160418.124515 submit/tizen/20160418.070226 submit/tizen/20160418.100808
Hyunjin Park [Mon, 18 Apr 2016 06:14:24 +0000 (15:14 +0900)]
Merge branch 'tizen_3.0' into tizen

8 years ago[version] 0.64
Hyunjin Park [Mon, 18 Apr 2016 06:13:14 +0000 (15:13 +0900)]
[version] 0.64

Change-Id: I925600e526eae34409d84d20cf2e28a94f4b1659

8 years agoMerge "[Preference] - getAll function implemented" into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 06:10:34 +0000 (15:10 +0900)]
Merge "[Preference] - getAll function implemented" into tizen_3.0

8 years agoMerge "[WidgetService] Changed Widget into WidgetService." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 06:03:19 +0000 (15:03 +0900)]
Merge "[WidgetService] Changed Widget into WidgetService." into tizen_3.0

8 years agoMerge "[Widget] Added add/removeChangeListener implementation." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 05:40:39 +0000 (14:40 +0900)]
Merge "[Widget] Added add/removeChangeListener implementation." into tizen_3.0