(acap-network-stream-open): Show "Connecting..." message.
(acap-parse-response): Fixed problem for BYE untagged response.
(acap-open): Changed argument (Use `acap-default-user' if user is nil).
+ (toplevel): Added tiny comments.
2001-08-20 Tatsuya Kinoshita <tats@iris.ne.jp>
;;
;;; Commentary:
-;; Some codes are based on imap.el.
+;;
+;; acap.el is an elisp library providing an interface for talking to
+;; ACAP (RFC2244) servers.
+;;
+;; This is a transcript of short interactive session for demonstration
+;; purposes.
+
+;; (setq proc (acap-open "my.acap.server" "username" "CRAM-MD5"))
+;; => #<process ACAP>
+;;
+;; (acap-search proc "/addressbook/" '((RETURN ("*")))))
+;; => ((done-ok nil "search completed")
+;; (modtime . "20010828091433000010")
+;; (entry "user"
+;; ((("subdataset"
+;; ("."))
+;; ("modtime" "20010824004532000003")
+;; ("entry" "user"))))
+;; (entry ""
+;; ((("modtime" "20010824004532000002")
+;; ("entry" "")
+;; ("dataset.owner" "anonymous")
+;; ("dataset.acl" ("$anyone xrwia")))))
+;;
+;; (acap-close proc)
+;; => t
;;; History:
-;;
+;;
+;; 27 Aug 2001 Created (Some codes are based on imap.el.).
;;; Code: