* acap.el (toplevel): Added tiny comments.
authorteranisi <teranisi>
Tue, 28 Aug 2001 01:50:20 +0000 (01:50 +0000)
committerteranisi <teranisi>
Tue, 28 Aug 2001 01:50:20 +0000 (01:50 +0000)
elmo/ChangeLog
elmo/acap.el

index 2f534fa..98e22b5 100644 (file)
@@ -4,6 +4,7 @@
        (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>
 
index 75aec73..55a02cb 100644 (file)
 ;;
 
 ;;; 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: