Przemyslaw Ciezkowski [Fri, 24 Apr 2015 13:50:06 +0000 (15:50 +0200)]
[KeyManager] saveKey implementation
[Verification]
var myPubKey = new tizen.Key("pub1", null, true);
myPubKey.saveKey("MIIBIj...wIDAQAB", function() {
console.log("ok");
}, function(e) {
console.log("error: " + e.message);
});
Change-Id: I5f58737b0ce5d794c1b611100c0a760d26a441ed
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Przemyslaw Ciezkowski [Fri, 24 Apr 2015 10:42:22 +0000 (12:42 +0200)]
[KeyManager] getKeyAlias implementation
[Verification]
items = tizen.keymanager.getKeyAliasList();
console.log('length: ' + items.length);
console.log("isArray: " + Array.isArray(items));
Change-Id: I0c85704b8141e2d5d3c4063b1af4ee6aba278d27
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Przemyslaw Ciezkowski [Fri, 24 Apr 2015 09:09:03 +0000 (11:09 +0200)]
[KeyManager] Data methods
[Verification]
d = new tizen.Data("a", "b", true);
d.save("test", function() {}, function() {}, "pass");
d.remove("pass");
Change-Id: Id7ddae37aaac99d546fc5cf0272461d6b9677b52
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Przemyslaw Ciezkowski [Fri, 24 Apr 2015 08:24:24 +0000 (10:24 +0200)]
[KeyManager] Certificate JS methods
[Verification]
c = new tizen.Certificate("a", "b", true);
c.save("test", function() {}, function() {}, "pass");
c.loadFromFile("documents/cert.pem", function() {}, function() {}, "pass");
c.remove("pass");
Change-Id: Ib06eddfcef4a0b121f3a6c131e5d0793934c9966
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Przemyslaw Ciezkowski [Thu, 23 Apr 2015 15:01:18 +0000 (17:01 +0200)]
[KeyManager] Key save and remove JS methods
[Verification]
k = new tizen.Key("a", "b", true);
k.save("test", function() {});
k.remove("pass");
Change-Id: I7c114eeae0aaa9c0396233a82dda0dcfe56bfa57
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Przemyslaw Ciezkowski [Thu, 23 Apr 2015 13:20:30 +0000 (15:20 +0200)]
[KeyManager] Implement JS createSignature and verifySignature
[Verification]
tizen.keymanager.createSignature("message", "alias", "HASH_SHA1",
"PADDING_PKCS1", "password", function(s){console.log(s)}, function(){});
tizen.keymanager.verifySignature("signature", "message", "alias",
"HASH_SHA1", "PADDING_PKCS1", "password",
function(){}, function(){});
Change-Id: I3b5bf2a3f4e2a8c84fca51f0719aebc258a89f6d
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Przemyslaw Ciezkowski [Thu, 23 Apr 2015 12:31:22 +0000 (14:31 +0200)]
[KeyManager] Implement JS get* methods
[Verification]
New methods are available:
tizen.keymanager.getKey()
tizen.keymanager.getKeyAliasList()
tizen.keymanager.getCertificate()
tizen.keymanager.getCertificatesAliasList()
tizen.keymanager.getData()
tizen.keymanager.getDataAliasList()
Change-Id: I5d1d1b165fcb06b713a1080f2a0f5efc176c6e29
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Przemyslaw Ciezkowski [Thu, 23 Apr 2015 12:19:37 +0000 (14:19 +0200)]
[KeyManager] Implement JS loadFromPKCS12File
[Verification]
tizen.keymanager.loadFromPKCS12File("documents/test.pem",
"priv1", "cert", function() {}, function() {});
Change-Id: I984556e8f622ad6c16f9a3aaa54850104c9f8b26
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Lukasz Bardeli [Mon, 11 May 2015 08:58:57 +0000 (10:58 +0200)]
[BLE] add addConnectStateChangeListener and removeConnectStateChangeListener methods.
[Verification] Code compiles without errors
Change-Id: Ia054f9ee90b29939ef9ecfa3ea0c865e56d6f971
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Piotr Kosko [Mon, 11 May 2015 05:28:01 +0000 (07:28 +0200)]
[BluetoothLE] Implemented writeValue method
[Feature] Added implementation of writeValue method for both
BluetoothGATTCharacteristic and BluetoothGATTDescriptor objects.
[Verification] Code compiles without errors.
Change-Id: I5b534d23799d8d500d1ff73762bb30210b448afa
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Piotr Kosko [Fri, 8 May 2015 12:51:46 +0000 (14:51 +0200)]
[BluetoothLE] Added implementation of readData
[Feature] Added c++ implementation of method readData for objects
BluetoothGATTDescriptor and BluetoothGATTCharacteristic.
[Verification] Code compiles without errors.
Change-Id: I0d6ea6cc6f10e5890644540bb8dd13da99a38a80
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Pawel Andruszkiewicz [Thu, 7 May 2015 14:49:44 +0000 (16:49 +0200)]
[BluetoothLE] JS implementation of data structures.
Change-Id: I5e4d6c35276b6f2d10803c05fa6524ccce921c3e
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Piotr Kosko [Wed, 6 May 2015 05:39:30 +0000 (07:39 +0200)]
[BluetoothLE] Added code for gatt service object
[Feature] Added manager for BluetoothGATTService objects.
Implemented gathering services and characteristics.
[Verification] Code compiles without errors.
Change-Id: I8409d9ed4c8d8dd538a6d0e4b7a7cdbbf7331abc
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Przemyslaw Ciezkowski [Thu, 23 Apr 2015 12:06:45 +0000 (14:06 +0200)]
[KeyManager] Implement JS generateKeyPair
[Verification]
tizen.keymanager.generateKeyPair(new tizen.Key("a", "b", true),
new tizen.Key("c", "d", true), "RSA", "1024",
function() {}, function() {});
Change-Id: I07aaa0e21dd35634ecbc3eae08861ebc1dde70d4
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Przemyslaw Ciezkowski [Thu, 23 Apr 2015 10:46:30 +0000 (12:46 +0200)]
[KeyManager] Plugin stubs
[Verification]
New namespace:
tizen.keymanager
New constructors:
tizen.Key
tizen.Certificate
tizen.Data
Change-Id: I1390feda269f80107b87453cc4cd74dce2f4a7b2
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Lukasz Bardeli [Thu, 7 May 2015 11:39:32 +0000 (13:39 +0200)]
[BluetoothLE] Add method connect and disconnect to BluetoothLEDevice
[Verification] Code compiles without error.
Change-Id: I6f051d4baf9daf66ece638d5477c602418d437d1
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Pawel Andruszkiewicz [Thu, 7 May 2015 08:54:00 +0000 (10:54 +0200)]
[BluetoothLE] Listeners for scan and advertise merged into one.
Change-Id: Ie9d66fbfad96f029322410bcd49254aa66093301
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Tue, 5 May 2015 12:23:25 +0000 (14:23 +0200)]
[BluetoothLE] Advertising in bluetooth LE adapter implemented.
Change-Id: Iae24a17f840a26cd898a43140d7c25c73d5785f8
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Lukasz Bardeli [Wed, 6 May 2015 10:02:54 +0000 (12:02 +0200)]
[BluetoothLE] Implementation of Bluetooth LE Device
ToJson method
[Verification] Code compiles without errors.
Change-Id: I1a29d6284e35debefe405dc6fcdf1e704c152bc4
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Pawel Andruszkiewicz [Mon, 4 May 2015 14:13:27 +0000 (16:13 +0200)]
[BluetoothLE] Implementation of Bluetooth LE adapter.
Class, startScan(), stopScan().
Change-Id: Ib1b701f6c6208cd767d459a1d322d2462d2674a7
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Hyunjin Park [Fri, 8 May 2015 06:51:05 +0000 (15:51 +0900)]
Merge "Modify feature on wearable profile 1. disable feature - nbs 2. add feature - HAM, Datasync" into tizen_2.4
Hyunjin Park [Fri, 8 May 2015 06:50:00 +0000 (15:50 +0900)]
Modify feature on wearable profile
1. disable feature - nbs
2. add feature - HAM, Datasync
Change-Id: I9cb21dccf92c1453bb2e3e41323e6d0e8af64972
Piotr Kosko [Wed, 6 May 2015 12:29:30 +0000 (14:29 +0200)]
[Systeminfo] Removed reporting error in DeviceOrientation
[Feature] Default rotation is returned in case of errors.
[Verification] Code compiles without errors.
Change-Id: I4b90d1b87c7cef4c529e11ae231c449edf102996
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Hyunjin Park [Thu, 7 May 2015 06:28:27 +0000 (15:28 +0900)]
API move to internel.h - AppFW
Change-Id: I1f789e91c0891c1cd84eacd06611389fe8bc9a91
Hyunjin Park [Thu, 7 May 2015 05:07:32 +0000 (14:07 +0900)]
modify spec of wearable - add application, FS, sysinfo, syssetting, time
Change-Id: Ib60a6bd0db09abb23762adeb70f433b73a382299
Piotr Kosko [Wed, 6 May 2015 11:49:50 +0000 (13:49 +0200)]
[Callhistory][Contact] added include for changed internal contact API
[Feature]
contacts_db_add_changed_cb_with_info
contacts_db_remove_changed_cb_with_info
moved from contacts_db.h to contacts_db_extension.h, so include was needed.
[Verification] Code compiles without errors after manually added changed rpms to GBS-ROOT.
Change-Id: Ie9ef7096c0a13e5c15356507a24a812cd6f4f774
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Pawel Andruszkiewicz [Mon, 4 May 2015 08:52:35 +0000 (10:52 +0200)]
[MediaController] Privilege checks moved to JS.
Privileges need to be checked before validation of arguments.
Change-Id: I82d84186e526f401231f8d84bf9b657df4b54eae
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Mon, 4 May 2015 08:36:00 +0000 (10:36 +0200)]
[Sensor] Removed unnecessary constant for privilege.
Change-Id: I7893035388890d803ad6cb7b5504744c7022dd39
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Piotr Kosko [Mon, 4 May 2015 12:26:00 +0000 (14:26 +0200)]
[BluetoothLE] Stubs for BluetoothLE features
[Feature] Added stubs for methods and objects related to
Bluetooth Low Energy.
[Verification] tizen.bluetooth.getLEAdapter() is visible in console.
Change-Id: Ia25cddfe75d19c3f53d27383f3668ca7b962d0c4
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Piotr Kosko [Mon, 4 May 2015 08:37:55 +0000 (10:37 +0200)]
[Systeminfo] changed physical screen size fetching is SystemInfoDisplay
[Feature] Physical size is now calculated with screen resolution and dots per inch property.
[Verficiation] TCTs related to physical screen size now pass.
Change-Id: I63d4bb8ff0c08981fcf7506b9040e9719278b3a0
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Andrzej Popowski [Mon, 4 May 2015 09:40:01 +0000 (11:40 +0200)]
[systeminfo] - Added codes to check if m_tapi_handles is null
Change-Id: I79f7f42880ab271074b61893a59ab1623b01aadc
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Lukasz Bardeli [Mon, 4 May 2015 09:35:41 +0000 (11:35 +0200)]
[Push] fix TCT capability issue. b2 target is not support push API.
[Verification] Code compiles without error.
Change-Id: I8ea1fbf71ba33db63afca80ccc3a8864f8e67747
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Pawel Kaczmarek [Mon, 4 May 2015 09:29:59 +0000 (11:29 +0200)]
[Utils][Content] Fix for TCT
[Verification]
TCT content result:
before: 60.87%
after: 94.35%
Change-Id: Idd319bb9a86dd41c34e87fb454421bf645848c35
Signed-off-by: Pawel Kaczmarek <p.kaczmarek3@samsung.com>
Andrzej Popowski [Mon, 4 May 2015 08:45:50 +0000 (10:45 +0200)]
[exif] - Updated the codes fixing a prevent issue for error handling from slp
Change-Id: I4181d0af91035ed358c8eb2335c1acb099d2fcfa
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Lukasz Bardeli [Thu, 30 Apr 2015 12:04:19 +0000 (14:04 +0200)]
[Messaging] Fix in toTimeT method
[Verification] Code compiles without error.
Passrate 100% (184/184/0/0/0)
Change-Id: I43c6040ccb21f36bf56985d003103df69e046c86
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 13:56:22 +0000 (15:56 +0200)]
[NFC] Privilege checks moved to JS.
Privileges need to be checked before validation of arguments.
Change-Id: If41026035363a1f9d1a8e2d467ca4cd03bdbdcc6
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 13:28:01 +0000 (15:28 +0200)]
[NBS] Privilege checks moved to JS.
Privileges need to be checked before validation of arguments.
Change-Id: I35b774057f75fa68082093445d3f5b52abea6666
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 13:22:25 +0000 (15:22 +0200)]
[Messaging] Privilege checks moved to JS.
Privileges need to be checked before validation of arguments.
Change-Id: I8a05bbe64c84a578998e40b3aba7f3aca776def3
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 13:07:49 +0000 (15:07 +0200)]
[Filesystem] Privilege checks moved to JS.
Privileges need to be checked before validation of arguments.
Change-Id: I998fa1f8c6e8a1ce560bfc05c703c3b32958ee98
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 13:00:07 +0000 (15:00 +0200)]
[Download] Privilege checks moved to JS.
Privileges need to be checked before validation of arguments.
Change-Id: I4d137667f531a4ca8f4899ac3ef1d240c63eb9cb
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 12:52:30 +0000 (14:52 +0200)]
[DataControl] Privilege checks moved to JS.
Privileges need to be checked before validation of arguments.
Change-Id: I2539852ecddeb45d3c203de4a1dfbd1beb9d721a
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 12:41:27 +0000 (14:41 +0200)]
[Contact] Privilege checks moved to JS.
Privileges need to be checked before validation of arguments.
Change-Id: I54e968c6cfe0a7fc463585c649dfc401b09ee6f9
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 12:22:44 +0000 (14:22 +0200)]
[CallHistory] Privilege checks moved to JS.
Privileges need to be checked before validation of arguments.
Change-Id: Idd7add88ebd1ff2a4e99d5d8500cc60d33c3d08a
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 12:14:51 +0000 (14:14 +0200)]
[Calendar] Privilege checks moved to JS.
Privileges need to be check before validation of arguments.
Change-Id: Ib6f702144b9cbe508699731fe9852d792b8148f2
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 11:49:35 +0000 (13:49 +0200)]
[Badge] Privilege checks moved to JS.
Privileges need to be check before validation of arguments.
Change-Id: Ib3d7d5fa7ae6c4af3275b58cbaefd5c670cdc7c3
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 11:35:15 +0000 (13:35 +0200)]
[Archive] Privilege checks moved to JS.
Privileges need to be check before validation of arguments.
Change-Id: I1f58e9b6648e2ad2bdc91c44104d3f04e767e3f0
Pawel Andruszkiewicz [Thu, 30 Apr 2015 10:46:21 +0000 (12:46 +0200)]
[Account] Privilege checks moved to JS.
Privileges need to be check before validation of arguments.
Change-Id: I145568782afcce0e25e6abd4227821be66f1a51f
Andrzej Popowski [Mon, 4 May 2015 07:09:52 +0000 (09:09 +0200)]
[package] - checking privileges moved to JS layer
Change-Id: Iddc225bc1824e118e586a5847356b6c9dfc92b30
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Piotr Kosko [Mon, 4 May 2015 07:10:50 +0000 (09:10 +0200)]
[Push] Privilege checks moved to JS layer
Change-Id: I893855bb255593d55134e9b96ea499c5e3182781
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Tomasz Marciniak [Mon, 4 May 2015 05:35:39 +0000 (07:35 +0200)]
[Content] Moved checking privileges to JS layer.
[Verification] Code compiles without errors.
Change-Id: Ib3a0dd3300023c44a71bf217abb7dd38c06d32cd
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Tomasz Marciniak [Mon, 4 May 2015 07:01:11 +0000 (09:01 +0200)]
[Notification] Moved checking privileges to JS layer.
[Verification] Code compiles without errors.
Change-Id: If73090dced65523ce1f4391f0d71ca364bccf629
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Andrzej Popowski [Thu, 30 Apr 2015 11:52:44 +0000 (13:52 +0200)]
[systeminfo] - Checking privileges moved to JS layer
Change-Id: Iebb0fec92ece10b28a82b520b4664f45acbca151
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Andrzej Popowski [Mon, 4 May 2015 06:45:59 +0000 (08:45 +0200)]
[power] - checking privileges moved to JS layer
Change-Id: I7eae2d95ca7d218f42db5167253fa8f52056beae
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Andrzej Popowski [Thu, 30 Apr 2015 13:43:45 +0000 (15:43 +0200)]
[secureelement] - Checking privileges moved to JS layer
Change-Id: I90da69a37e35c91f54fafc5951342ad68155b41f
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Andrzej Popowski [Thu, 30 Apr 2015 12:35:34 +0000 (14:35 +0200)]
[systemsetting] - Checking privileges moved to JS layer
Change-Id: I6abba4cf96b528bd0c46b65619231f9f6d8c4f4d
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Tomasz Marciniak [Thu, 30 Apr 2015 11:52:17 +0000 (13:52 +0200)]
[Application] Moved checking privileges to JS layer.
[Verification] Code compiles without errors.
Change-Id: Ie60ccefced4aa43480c808b7e6117a34aa888026
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Andrzej Popowski [Thu, 30 Apr 2015 12:46:54 +0000 (14:46 +0200)]
[sound] - Checking privileges moved to JS layer
Change-Id: I34297aa480a1feb267efff17b9a9cde122c17f28
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Tomasz Marciniak [Thu, 30 Apr 2015 09:11:30 +0000 (11:11 +0200)]
[Bookmark] Moved checking privileges to JS layer.
[Verification] Code compiles without errors.
TCT tests for Bookmark privileges passes.
Change-Id: I960f4e08e9ca058b42a6b23856703af14650dec7
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Tomasz Marciniak [Thu, 30 Apr 2015 12:21:42 +0000 (14:21 +0200)]
[Bluetooth] Moved checking privileges to JS layer.
[Verification] Code compiles without errors.
Change-Id: I13cb9c82ee862e869cd079ba85eef23fd1ecda44
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Tomasz Marciniak [Thu, 30 Apr 2015 10:19:13 +0000 (12:19 +0200)]
[Alarm] Moved checking privileges to JS layer.
[Verification] Code compiles without errors.
Change-Id: Ie4b430b96a1d19a62e1267bbb0ec82c74fbbcf9d
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 10:00:36 +0000 (12:00 +0200)]
[Utils] Added list of privileges.
Change-Id: I8abbe329c5972b7397a68b8112285bdb0413261f
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Andrzej Popowski [Thu, 30 Apr 2015 09:42:08 +0000 (11:42 +0200)]
[push] - handling errors of push_register core function
Change-Id: Iaa78d5e00bdf744166441f9a9d1031d314a04cf9
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
HyunJin Park [Thu, 30 Apr 2015 09:34:15 +0000 (18:34 +0900)]
Merge "[Application] ApplicationControl launchMode fix" into tizen_2.4
Rafal Galka [Thu, 30 Apr 2015 09:02:20 +0000 (11:02 +0200)]
[Application] ApplicationControl launchMode fix
Change-Id: I30e12d3cbbb20d43122e20eb7c24d215de0cc2ed
Lukasz Bardeli [Wed, 29 Apr 2015 12:59:01 +0000 (14:59 +0200)]
[Messaging] Fix for TCT tests
[Verification] Code compiles without errors.
Change-Id: I302c4619b1a6b51fdeccc7d9f4b7372c92c588fe
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Pawel Andruszkiewicz [Thu, 30 Apr 2015 07:40:04 +0000 (09:40 +0200)]
[Contact] Added initialization of a variable.
Change-Id: I57562e2d1198f45157ecef78bd64fd6d07c870dc
Pawel Andruszkiewicz [Wed, 29 Apr 2015 07:58:32 +0000 (09:58 +0200)]
[WebSetting] Implementation changed to use sendRuntimeAsyncMessage().
Change-Id: I39b96c68c374c07192f45087cc51f32fad1f340b
Pawel Andruszkiewicz [Wed, 29 Apr 2015 07:34:12 +0000 (09:34 +0200)]
[Utils] Added support for sendRuntimeMessage().
Change-Id: I48303bd890e58cf0a230aae93f12dbfbb03ce46b
Hyunjin Park [Thu, 30 Apr 2015 07:30:12 +0000 (16:30 +0900)]
[mediacontroller] build error fix - too many argument
Change-Id: I82f5a11cf5d110dfa8cf82a9297c224ef6e860e3
Hyunjin Park [Wed, 29 Apr 2015 08:50:22 +0000 (17:50 +0900)]
Merge "modify spec - add buildrequire packages to prevent build error" into tizen_2.4
Hyunjin Park [Wed, 29 Apr 2015 08:50:50 +0000 (17:50 +0900)]
modify spec - add buildrequire packages to prevent build error
Change-Id: I62157a2efb0c9c87e88d60b1323a3ed11fc808ef
Rafal Galka [Wed, 29 Apr 2015 07:54:36 +0000 (09:54 +0200)]
[MediaController] Added privileges check + cleanup
Change-Id: Ib8bcab1d18a5cbf5426a7bfdc6fe0ed497a76fa0
Rafal Galka [Wed, 29 Apr 2015 07:58:54 +0000 (09:58 +0200)]
[MediaController] Implementation of:
- sendPlaybackPosition
- sendShuffleMode
- sendRepeatMode
with corresponding server change listeners.
[Remark] CAPI have no dedicated methods.
Implementation is based on custom commands.
It should be updated when new version of CAPI will be available.
Change-Id: Ic7361e6a85cbeff98019aec61d56625d8bf7f1ba
Signed-off-by: Rafal Galka <r.galka@samsung.com>
Tomasz Marciniak [Tue, 28 Apr 2015 13:08:02 +0000 (15:08 +0200)]
[Bluetooth] Initialize user_request_list_ with 0 values.
[Verification] Code compiles without errors.
TCT automated passrate 100% 212/212
Change-Id: I8ead20b0a1e3ef1fda1c4b5d1f2c76b5ce6748aa
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Lukasz Bardeli [Tue, 28 Apr 2015 10:54:54 +0000 (12:54 +0200)]
[Power] fixes for TCT tests.
[Verification] Code compiles without error.
Change-Id: I0f54415ab2bccd0da31bbe49c400b9801d13ea37
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Andrzej Popowski [Mon, 27 Apr 2015 11:45:46 +0000 (13:45 +0200)]
[systeminfo] - Change systemmanager privilege to telephony privilege
Change-Id: Id7e01460bfbb359cc830208f39e34d61f2ad0fc7
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Rafal Galka [Tue, 28 Apr 2015 10:31:07 +0000 (12:31 +0200)]
[MediaController] Custom commands native implementation.
- MediaControllerServerInfo.sendCommand()
- MediaControllerServer.addCommandListener()
Change-Id: I76741c1f551ba134da89c12caa24dd775a913ffd
Signed-off-by: Rafal Galka <r.galka@samsung.com>
Signed-off-by: Pawel Kaczmarek <p.kaczmarek3@samsung.com>
Rafal Galka [Thu, 23 Apr 2015 08:56:46 +0000 (10:56 +0200)]
[MediaController] Server status listener
Change-Id: Ic5b89245c0242c2a5310b0de34771678780b0320
Signed-off-by: Rafal Galka <r.galka@samsung.com>
Rafal Galka [Wed, 22 Apr 2015 07:06:44 +0000 (09:06 +0200)]
[MediaController] Playback state implementation
- (client) send playback state
- (server) onplaybackstaterequest listener
Change-Id: I2c9110d3ec23932b494e0f186c8ccc0e8cab0946
Signed-off-by: Rafal Galka <r.galka@samsung.com>
Rafal Galka [Tue, 28 Apr 2015 10:22:32 +0000 (12:22 +0200)]
[MediaController] Client playback info change listener
Change-Id: Ia81805e2bf709f15b996baf7b1bcda0c9eb02ff4
Signed-off-by: Rafal Galka <r.galka@samsung.com>
Pawel Andruszkiewicz [Mon, 27 Apr 2015 13:11:37 +0000 (15:11 +0200)]
[WebSetting] Fixed error handling, code cleanup.
Change-Id: I6bf70e9c508d8ba643dd99dfd6d20898fa8cd737
Pawel Andruszkiewicz [Mon, 27 Apr 2015 10:07:28 +0000 (12:07 +0200)]
[Sound] Unregister volume change listener in destructor.
Change-Id: If4d5765cf7afbfac0c32f9b1a9417103b084b550
Pawel Andruszkiewicz [Mon, 27 Apr 2015 08:56:51 +0000 (10:56 +0200)]
[SecureElement] Added missing reference to utility object.
Change-Id: I4b61530009fcbd44264fa80427b910dab1cf5cec
Pawel Andruszkiewicz [Mon, 27 Apr 2015 08:20:32 +0000 (10:20 +0200)]
[SecureElement] Improvement of initialization and error handling.
Change-Id: Iad0b767e85d87ab8ec07bfd3b3ce332fa6b62bde
Rafal Galka [Tue, 14 Apr 2015 07:26:00 +0000 (09:26 +0200)]
[MediaController] Server native implementation
[Verification] Code compiles.
Change-Id: Ib76c47dfc1729b1741708046491c4023ccbaae0c
Rafal Galka [Tue, 28 Apr 2015 08:35:16 +0000 (10:35 +0200)]
[MediaController] Client.GetPlaybackInfo native implementation
Change-Id: I2a4ea6204c5e8b2e41cb6afb530424aff9f39c77
Rafal Galka [Tue, 14 Apr 2015 07:57:48 +0000 (09:57 +0200)]
[MediaController] Client native implementation of:
- findServers
- getLatestServerInfo
[Verification] Code compiles.
Change-Id: Ib9aae61b9e5cc5106483b0e8994438fb9f0fbbc5
Pawel Andruszkiewicz [Tue, 21 Apr 2015 11:09:21 +0000 (13:09 +0200)]
[Privilege] Fixes for TCT tests.
Change-Id: Ia86d0a28f48ab53fd17bdf5159a32dd7dea81a96
Wojciech Kosowicz [Wed, 25 Mar 2015 10:31:58 +0000 (11:31 +0100)]
[SystemInfo] Added callback for camera flash change
Unable to test it out as the callback does not come back
from the platform.
[Verification] Tct without changes
Change-Id: I76155c46d7f966a49a11c454a8bcf1c3a3c2cae0
Signed-off-by: Wojciech Kosowicz <w.kosowicz@samsung.com>
Pawel Andruszkiewicz [Tue, 21 Apr 2015 15:06:32 +0000 (17:06 +0200)]
[Filesystem] Refactoring of commonFS.
Internal implementation hidden, just needed methods are exposed.
Change-Id: I6a92b01c210f98c9496a98d5709697cdf3793bdb
Tomasz Marciniak [Fri, 24 Apr 2015 10:11:29 +0000 (12:11 +0200)]
[Application] Ported implementation.
[Verification] Code compiles without errors.
TCT passrate 100% 159(159/0/0/0)
Change-Id: Ic455f8db44f343e3887510b088f1024f6c9dae05
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Tomasz Marciniak [Mon, 20 Apr 2015 10:44:12 +0000 (12:44 +0200)]
[Download] Check if instance is not deleted.
[Feature] Added checking if instance is not deleted
before calling postMessage().
[Verification] Code compiles without errors.
Change-Id: Ib8a5ea3f2c55b17569335fe0f4bc6860d05214b3
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Andrzej Popowski [Tue, 21 Apr 2015 13:11:32 +0000 (15:11 +0200)]
[NetworkBearerSelection] - securing pointers of each instances with a mutex
Change-Id: Id3dc9df14f4505784afe0fed9e72bcf29506c66a
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Hyunjin Park [Thu, 23 Apr 2015 06:56:29 +0000 (15:56 +0900)]
[spec] disable callhistory feature on wearable profile
Change-Id: I9775859c02dbf4824da1a52014204fb81a897c8b
pius lee [Thu, 23 Apr 2015 06:23:54 +0000 (15:23 +0900)]
Merge "modify spec for wearable/mobile" into tizen_2.4
Rafal Galka [Fri, 17 Apr 2015 11:07:51 +0000 (13:07 +0200)]
[MediaController] ListenerManager improved, ReplyCommandListener added
Change-Id: Iffd2c705037e7303a1db5696549f3039d523a673
Signed-off-by: Pawel Kaczmarek <p.kaczmarek3@samsung.com>
Pawel Andruszkiewicz [Tue, 21 Apr 2015 14:46:51 +0000 (16:46 +0200)]
[Filesystem] Store only storages provided by platform.
Change-Id: Ie609619f03f98ae1833705e9cd82fa2d85918ac3
Pawel Andruszkiewicz [Fri, 27 Mar 2015 09:07:18 +0000 (10:07 +0100)]
[Filesystem] Implementation modified to use common virtual FS.
[Verification] TCT pass rate did not change.
Change-Id: If00593df3034dd5929128bce080ee72e38b8feaf
Piotr Kosko [Mon, 20 Apr 2015 12:26:18 +0000 (14:26 +0200)]
[Systeminfo] Refactored getCapability method
Change-Id: I6806cb61b6d90dbe0e015d4fae400cce1c0170ca
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Lukasz Bardeli [Mon, 20 Apr 2015 11:46:23 +0000 (13:46 +0200)]
[Common] fix in WebAPIException
[Feature] Adaptation to documentation.
readonly unsigned short code
16-bit error code.
For the possible values of this attribute, see DOMException.
DOMException - http://www.w3.org/TR/dom/#domexception
The code exception field must return the value it was initialized to.
To throw a name exception run these steps:
1. Let code be zero.
2. If name is in the first column of the error names table and has a corresponding legacy code exception field value in the third column, set code to that value.
3. Throw a new DOMException exception, whose message is a user agent-defined value, name is name, and whose code exception field is code.
Change-Id: Ic14e6855220da2c66d38c50bb6f3439f26d05f0e
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>