platform/core/api/webapi-plugins.git
9 years ago[KeyManager] loadCertificateFromFile implementation
Przemyslaw Ciezkowski [Wed, 29 Apr 2015 11:30:24 +0000 (13:30 +0200)]
[KeyManager] loadCertificateFromFile implementation

[Verification]
var cert = new tizen.Certificate("cert_file1", null, true);
cert.loadFromFile("/opt/usr/media/Others/cert.cer",
    function() {
        console.log('ok');
    },
    function(e) {
        console.log(e.code);
        console.log(e.message);
    }
);

Change-Id: I81380b69a835ef0e3128c92b8c541bec3538f7ee
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
9 years ago[KeyManager] getCertificate and saveCertificate
Przemyslaw Ciezkowski [Tue, 28 Apr 2015 10:18:14 +0000 (12:18 +0200)]
[KeyManager] getCertificate and saveCertificate

[Verification]
var cert = new tizen.Certificate("cert3", null, true);
cert.save("MIIDGDC...DVC8w==",
    function() {
        console.log('ok');
        var c = tizen.keymanager.getCertificate("cert3");
        console.log(c.name);
        console.log(c.password);
        console.log(c.extractable);
        console.log(c.rawCert);
    },
    function(e) {
        console.log(e.code);
        console.log(e.message);
    }
);

Change-Id: I44ff150d6e83a9715d86e0bc1ca659047bc40a9c
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
9 years ago[KeyManager] getCertificateAliasList and getDataAliasList
Przemyslaw Ciezkowski [Tue, 28 Apr 2015 09:47:52 +0000 (11:47 +0200)]
[KeyManager] getCertificateAliasList and getDataAliasList

[Verification]
console.log("key list size: " + tizen.keymanager.getKeyAliasList().length);
console.log("cert list size: " + tizen.keymanager.getCertificatesAliasList().length);
console.log("data list size: " + tizen.keymanager.getDataAliasList().length);

Change-Id: Ieeda0feaa7bbc09a20851e4bf2b9ed6533fcc75b
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
9 years ago[KeyManager] getKey implementation
Przemyslaw Ciezkowski [Mon, 27 Apr 2015 14:26:53 +0000 (16:26 +0200)]
[KeyManager] getKey implementation

[Verification]
k = tizen.keymanager.getKey("pub2");
console.log(k.name);
console.log(k.password);
console.log(k.extractable);
console.log(k.keyType);
console.log(k.rawKey);

Change-Id: Ib1a83c8bac455b6a848079e7fe9d06a4a4b24fd2
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
9 years ago[KeyManager] generateKeyPair implementation
Przemyslaw Ciezkowski [Mon, 27 Apr 2015 13:17:35 +0000 (15:17 +0200)]
[KeyManager] generateKeyPair implementation

[Verification]
var myPrivKey = new tizen.Key("priv3", "priv_password", false);
var myPubKey = new tizen.Key("pub3", null, true);

tizen.keymanager.generateKeyPair(myPrivKey, myPubKey, "RSA", "2048", function() {
    console.log('ok');
  }, function(e) {
    console.log(e.code);
    console.log(e.message);
});

Change-Id: I6d59104f2d8d0f0022ed64b83a6036e10dd9f306
Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
9 years ago[KeyManager] removeKey implementation
Przemyslaw Ciezkowski [Mon, 27 Apr 2015 12:00:38 +0000 (14:00 +0200)]
[KeyManager] removeKey implementation

[Verification]
var myPubKey = new tizen.Key("pub1", null, true);
myPubKey.save("rawData", function() {
    myPubKey.remove();
}, function(e) {
    console.log("error: " + e.message);
});

Signed-off-by: Przemyslaw Ciezkowski <p.ciezkowski@samsung.com>
Change-Id: I396c756024d1d9123ad34c01324806e2dee2733c

9 years ago[KeyManager] saveKey implementation
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>
9 years ago[KeyManager] getKeyAlias implementation
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>
9 years ago[KeyManager] Data methods
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>
9 years ago[KeyManager] Certificate JS methods
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>
9 years ago[KeyManager] Key save and remove JS methods
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>
9 years ago[KeyManager] Implement JS createSignature and verifySignature
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>
9 years ago[KeyManager] Implement JS get* methods
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>
9 years ago[KeyManager] Implement JS loadFromPKCS12File
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>
9 years ago[BLE] add addConnectStateChangeListener and removeConnectStateChangeListener methods.
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>
9 years ago[BluetoothLE] Implemented writeValue method
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>
9 years ago[BluetoothLE] Added implementation of readData
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>
9 years ago[BluetoothLE] JS implementation of data structures.
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>
9 years ago[BluetoothLE] Added code for gatt service object
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>
9 years ago[KeyManager] Implement JS generateKeyPair
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>
9 years ago[KeyManager] Plugin stubs
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>
9 years ago[BluetoothLE] Add method connect and disconnect to BluetoothLEDevice
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>
9 years ago[BluetoothLE] Listeners for scan and advertise merged into one.
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>
9 years ago[BluetoothLE] Advertising in bluetooth LE adapter implemented.
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>
9 years ago[BluetoothLE] Implementation of Bluetooth LE Device
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>
9 years ago[BluetoothLE] Implementation of Bluetooth LE adapter.
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>
9 years agoMerge "Modify feature on wearable profile 1. disable feature - nbs 2. add feature...
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

9 years agoModify feature on wearable profile
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

9 years ago[Systeminfo] Removed reporting error in DeviceOrientation
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>
9 years agoAPI move to internel.h - AppFW
Hyunjin Park [Thu, 7 May 2015 06:28:27 +0000 (15:28 +0900)]
API move to internel.h - AppFW

Change-Id: I1f789e91c0891c1cd84eacd06611389fe8bc9a91

9 years agomodify spec of wearable - add application, FS, sysinfo, syssetting, time
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

9 years ago[Callhistory][Contact] added include for changed internal contact API
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>
9 years ago[MediaController] Privilege checks moved to JS.
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>
9 years ago[Sensor] Removed unnecessary constant for privilege.
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>
9 years ago[BluetoothLE] Stubs for BluetoothLE features
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>
9 years ago[Systeminfo] changed physical screen size fetching is SystemInfoDisplay
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>
9 years ago[systeminfo] - Added codes to check if m_tapi_handles is null
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>
9 years ago[Push] fix TCT capability issue. b2 target is not support push API.
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>
9 years ago[Utils][Content] Fix for TCT
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>
9 years ago[exif] - Updated the codes fixing a prevent issue for error handling from slp
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>
9 years ago[Messaging] Fix in toTimeT method
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>
9 years ago[NFC] Privilege checks moved to JS.
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>
9 years ago[NBS] Privilege checks moved to JS.
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>
9 years ago[Messaging] Privilege checks moved to JS.
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>
9 years ago[Filesystem] Privilege checks moved to JS.
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>
9 years ago[Download] Privilege checks moved to JS.
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>
9 years ago[DataControl] Privilege checks moved to JS.
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>
9 years ago[Contact] Privilege checks moved to JS.
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>
9 years ago[CallHistory] Privilege checks moved to JS.
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>
9 years ago[Calendar] Privilege checks moved to JS.
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>
9 years ago[Badge] Privilege checks moved to JS.
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>
9 years ago[Archive] Privilege checks moved to JS.
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

9 years ago[Account] Privilege checks moved to JS.
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

9 years ago[package] - checking privileges moved to JS layer
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>
9 years ago[Push] Privilege checks moved to JS layer
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>
9 years ago[Content] Moved checking privileges to JS layer.
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>
9 years ago[Notification] Moved checking privileges to JS layer.
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>
9 years ago[systeminfo] - Checking privileges moved to JS layer
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>
9 years ago[power] - checking privileges moved to JS layer
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>
9 years ago[secureelement] - Checking privileges moved to JS layer
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>
9 years ago[systemsetting] - Checking privileges moved to JS layer
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>
9 years ago[Application] Moved checking privileges to JS layer.
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>
9 years ago[sound] - Checking privileges moved to JS layer
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>
9 years ago[Bookmark] Moved checking privileges to JS layer.
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>
9 years ago[Bluetooth] Moved checking privileges to JS layer.
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>
9 years ago[Alarm] Moved checking privileges to JS layer.
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>
9 years ago[Utils] Added list of privileges.
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>
9 years ago[push] - handling errors of push_register core function
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>
9 years agoMerge "[Application] ApplicationControl launchMode fix" into tizen_2.4
HyunJin Park [Thu, 30 Apr 2015 09:34:15 +0000 (18:34 +0900)]
Merge "[Application] ApplicationControl launchMode fix" into tizen_2.4

9 years ago[Application] ApplicationControl launchMode fix
Rafal Galka [Thu, 30 Apr 2015 09:02:20 +0000 (11:02 +0200)]
[Application] ApplicationControl launchMode fix

Change-Id: I30e12d3cbbb20d43122e20eb7c24d215de0cc2ed

9 years ago[Messaging] Fix for TCT tests
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>
9 years ago[Contact] Added initialization of a variable.
Pawel Andruszkiewicz [Thu, 30 Apr 2015 07:40:04 +0000 (09:40 +0200)]
[Contact] Added initialization of a variable.

Change-Id: I57562e2d1198f45157ecef78bd64fd6d07c870dc

9 years ago[WebSetting] Implementation changed to use sendRuntimeAsyncMessage().
Pawel Andruszkiewicz [Wed, 29 Apr 2015 07:58:32 +0000 (09:58 +0200)]
[WebSetting] Implementation changed to use sendRuntimeAsyncMessage().

Change-Id: I39b96c68c374c07192f45087cc51f32fad1f340b

9 years ago[Utils] Added support for sendRuntimeMessage().
Pawel Andruszkiewicz [Wed, 29 Apr 2015 07:34:12 +0000 (09:34 +0200)]
[Utils] Added support for sendRuntimeMessage().

Change-Id: I48303bd890e58cf0a230aae93f12dbfbb03ce46b

9 years ago[mediacontroller] build error fix - too many argument
Hyunjin Park [Thu, 30 Apr 2015 07:30:12 +0000 (16:30 +0900)]
[mediacontroller] build error fix - too many argument

Change-Id: I82f5a11cf5d110dfa8cf82a9297c224ef6e860e3

9 years agoMerge "modify spec - add buildrequire packages to prevent build error" into tizen_2.4
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

9 years agomodify spec - add buildrequire packages to prevent build error
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

9 years ago[MediaController] Added privileges check + cleanup
Rafal Galka [Wed, 29 Apr 2015 07:54:36 +0000 (09:54 +0200)]
[MediaController] Added privileges check + cleanup

Change-Id: Ib8bcab1d18a5cbf5426a7bfdc6fe0ed497a76fa0

9 years ago[MediaController] Implementation of:
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>
9 years ago[Bluetooth] Initialize user_request_list_ with 0 values.
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>
9 years ago[Power] fixes for TCT tests.
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>
9 years ago[systeminfo] - Change systemmanager privilege to telephony privilege
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>
9 years ago[MediaController] Custom commands native implementation.
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>
9 years ago[MediaController] Server status listener
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>
9 years ago[MediaController] Playback state implementation
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>
9 years ago[MediaController] Client playback info change listener
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>
9 years ago[WebSetting] Fixed error handling, code cleanup.
Pawel Andruszkiewicz [Mon, 27 Apr 2015 13:11:37 +0000 (15:11 +0200)]
[WebSetting] Fixed error handling, code cleanup.

Change-Id: I6bf70e9c508d8ba643dd99dfd6d20898fa8cd737

9 years ago[Sound] Unregister volume change listener in destructor.
Pawel Andruszkiewicz [Mon, 27 Apr 2015 10:07:28 +0000 (12:07 +0200)]
[Sound] Unregister volume change listener in destructor.

Change-Id: If4d5765cf7afbfac0c32f9b1a9417103b084b550

9 years ago[SecureElement] Added missing reference to utility object.
Pawel Andruszkiewicz [Mon, 27 Apr 2015 08:56:51 +0000 (10:56 +0200)]
[SecureElement] Added missing reference to utility object.

Change-Id: I4b61530009fcbd44264fa80427b910dab1cf5cec

9 years ago[SecureElement] Improvement of initialization and error handling.
Pawel Andruszkiewicz [Mon, 27 Apr 2015 08:20:32 +0000 (10:20 +0200)]
[SecureElement] Improvement of initialization and error handling.

Change-Id: Iad0b767e85d87ab8ec07bfd3b3ce332fa6b62bde

9 years ago[MediaController] Server native implementation
Rafal Galka [Tue, 14 Apr 2015 07:26:00 +0000 (09:26 +0200)]
[MediaController] Server native implementation

[Verification] Code compiles.

Change-Id: Ib76c47dfc1729b1741708046491c4023ccbaae0c

9 years ago[MediaController] Client.GetPlaybackInfo native implementation
Rafal Galka [Tue, 28 Apr 2015 08:35:16 +0000 (10:35 +0200)]
[MediaController] Client.GetPlaybackInfo native implementation

Change-Id: I2a4ea6204c5e8b2e41cb6afb530424aff9f39c77

9 years ago[MediaController] Client native implementation of:
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

9 years ago[Privilege] Fixes for TCT tests.
Pawel Andruszkiewicz [Tue, 21 Apr 2015 11:09:21 +0000 (13:09 +0200)]
[Privilege] Fixes for TCT tests.

Change-Id: Ia86d0a28f48ab53fd17bdf5159a32dd7dea81a96

9 years ago[SystemInfo] Added callback for camera flash change
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>
9 years ago[Filesystem] Refactoring of commonFS.
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

9 years ago[Application] Ported implementation.
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>
9 years ago[Download] Check if instance is not deleted.
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>
9 years ago[NetworkBearerSelection] - securing pointers of each instances with a mutex
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>
9 years ago[spec] disable callhistory feature on wearable profile
Hyunjin Park [Thu, 23 Apr 2015 06:56:29 +0000 (15:56 +0900)]
[spec] disable callhistory feature on wearable profile

Change-Id: I9775859c02dbf4824da1a52014204fb81a897c8b