]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/secrets.el (secrets-create-collection): Add optional
authorMichael Albinus <michael.albinus@gmx.de>
Fri, 4 Oct 2013 10:31:59 +0000 (12:31 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Fri, 4 Oct 2013 10:31:59 +0000 (12:31 +0200)
argument ALIAS.  Use proper Label keyword.  Append ALIAS as
dbus-call-method argument.  (Bug#15516)

lisp/ChangeLog
lisp/net/secrets.el

index a8f2776d49a6d3bc86266d58feabf6222d43cc71..bb4b89adea27b044c41303d357dcb510bb61835a 100644 (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)
index b4e51348ddef62e8519dc5186b965297494aa997..e65e3377641a7f13949b16b1cfc5860161e18958 100644 (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))