1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

* net/secrets.el (secrets-create-collection): Add optional

argument ALIAS.  Use proper Label keyword.  Append ALIAS as
dbus-call-method argument.  (Bug#15516)
This commit is contained in:
Michael Albinus 2013-10-04 12:31:59 +02:00
parent eafe4c8720
commit 9e6229fabe
2 changed files with 14 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2013-10-04 Michael Albinus <michael.albinus@gmx.de>
* net/secrets.el (secrets-create-collection): Add optional
argument ALIAS. Use proper Label keyword. Append ALIAS as
dbus-call-method argument. (Bug#15516)
2013-10-04 Leo Liu <sdl.web@gmail.com>
* progmodes/octave.el (inferior-octave-error-regexp-alist)

View file

@ -189,6 +189,7 @@ It returns t if not."
;; </method>
;; <method name="CreateCollection">
;; <arg name="props" type="a{sv}" direction="in"/>
;; <arg name="alias" type="s" direction="in"/> ;; Added 2011/3/1
;; <arg name="collection" type="o" direction="out"/>
;; <arg name="prompt" type="o" direction="out"/>
;; </method>
@ -491,9 +492,10 @@ If there is no such COLLECTION, return nil."
(secrets-get-collection-property collection-path "Label"))
(throw 'collection-found collection-path))))))
(defun secrets-create-collection (collection)
(defun secrets-create-collection (collection &optional alias)
"Create collection labeled COLLECTION if it doesn't exist.
Return the D-Bus object path for collection."
Set ALIAS as alias of the collection. Return the D-Bus object
path for collection."
(let ((collection-path (secrets-collection-path collection)))
;; Create the collection.
(when (secrets-empty-path collection-path)
@ -504,7 +506,10 @@ Return the D-Bus object path for collection."
(dbus-call-method
:session secrets-service secrets-path
secrets-interface-service "CreateCollection"
`(:array (:dict-entry "Label" (:variant ,collection))))))))
`(:array
(:dict-entry ,(concat secrets-interface-collection ".Label")
(:variant ,collection)))
(or alias ""))))))
;; Return object path of the collection.
collection-path))