mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2025-12-17 03:47:04 +01:00
Implemented Attachments in client
This commit is contained in:
@@ -53,10 +53,19 @@ Clipperz.Base.extend(Clipperz.PM.Proxy.Offline, Clipperz.PM.Proxy, {
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
'_sendMessage': function(aFunctionName, aVersion, someParameters) {
|
||||
return this.dataStore().processMessage(aFunctionName, someParameters);
|
||||
'_sendMessage': function(aFunctionName, aVersion, someParameters, someOptionalParameters) {
|
||||
return this.dataStore().processMessage(aFunctionName, someParameters, someOptionalParameters);
|
||||
},
|
||||
|
||||
'_uploadAttachment': function(someArguments, aProgressCallback, aSharedSecret, aToll) {
|
||||
return this.dataStore().uploadAttachment(someArguments, aProgressCallback, aSharedSecret, aToll);
|
||||
},
|
||||
|
||||
'_downloadAttachment': function(someArguments, aProgressCallback, aSharedSecret, aToll) {
|
||||
return this.dataStore().downloadAttachment(someArguments, aProgressCallback, aSharedSecret, aToll);
|
||||
},
|
||||
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
'isReadOnly': function () {
|
||||
|
||||
Reference in New Issue
Block a user