Rename URL-CONTAINER to CONTAINER-URL to better reflect its meaning.
authorChris Hanson <org/chris-hanson/cph>
Wed, 23 May 2001 21:20:28 +0000 (21:20 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 23 May 2001 21:20:28 +0000 (21:20 +0000)
v7/src/imail/imail-core.scm
v7/src/imail/imail-file.scm
v7/src/imail/imail-imap.scm
v7/src/imail/imail-top.scm

index d1ac2ad6bfcc80634198eed020b82d994cc00a8d..912122d242c825f3d4dfa463f46beacd5a88f130 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-core.scm,v 1.126 2001/05/23 13:46:26 cph Exp $
+;;; $Id: imail-core.scm,v 1.127 2001/05/23 21:20:05 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2001 Massachusetts Institute of Technology
 ;;;
 ;; E.g. the container of "imap://localhost/inbox/foo" is
 ;; "imap://localhost/inbox/" (except that for IMAP folders, the result
 ;; may be affected by the NAMESPACE prefix information).
-(define-generic url-container (url))
+(define-generic container-url (url))
 
 ;; Return a list of URLs referring to the contents of CONTAINER-URL.
 ;; The result can contain both folder and container URLs.
 (define-generic with-open-connection (url thunk))
 
 (define (container-modified! url type . arguments)
-  (let ((container (get-memoized-resource (url-container url))))
+  (let ((container (get-memoized-resource (container-url url))))
     (if container
        (apply object-modified! container type url arguments))))
 \f
index 990c20c191343720c1fa5302e50d9d7fc4e14175..ea35904e944e04d3148f39acc8948b94a14a0edc 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-file.scm,v 1.67 2001/05/23 05:05:00 cph Exp $
+;;; $Id: imail-file.scm,v 1.68 2001/05/23 21:20:09 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2001 Massachusetts Institute of Technology
 ;;;
@@ -48,7 +48,7 @@
 (define pathname-url-constructors
   (make-eq-hash-table))
 
-(define-method url-container ((url <pathname-url>))
+(define-method container-url ((url <pathname-url>))
   (make-directory-url
    (directory-pathname
     (directory-pathname-as-file (pathname-url-pathname url)))))
index ad7c437d7939d6f706e3d121febc4d9e235d9445..d7be4b0f49ed39e36986a799adb6f6e787b2b935 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-imap.scm,v 1.155 2001/05/23 05:05:08 cph Exp $
+;;; $Id: imail-imap.scm,v 1.156 2001/05/23 21:20:17 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2001 Massachusetts Institute of Technology
 ;;;
 \f
 ;;;; Container heirarchy
 
-(define-method url-container ((url <imap-url>))
+(define-method container-url ((url <imap-url>))
   (imap-url-new-mailbox
    url
    (let ((mailbox (imap-url-mailbox url)))
index ebe237d1ed2c2e76a114d95dd6d1819c1d347334..44c41b1679ead8539e5f5dd4d43169df83dd0745 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-top.scm,v 1.243 2001/05/23 05:05:26 cph Exp $
+;;; $Id: imail-top.scm,v 1.244 2001/05/23 21:20:28 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2001 Massachusetts Institute of Technology
 ;;;
@@ -1354,7 +1354,7 @@ The folder's type may not be changed."
                                    'REQUIRE-MATCH? #t)))
       (list from
            (prompt-for-folder "Rename folder to"
-                              (url-container (imail-parse-partial-url from))
+                              (container-url (imail-parse-partial-url from))
                               'HISTORY 'IMAIL-RENAME-FOLDER-TARGET))))
   (lambda (from to)
     (let ((from (imail-parse-partial-url from))
@@ -1385,7 +1385,7 @@ If it doesn't exist, it is created first."
                                 (lambda ()
                                   (imail-parse-partial-url (car history))))))
                           (and (url? url)
-                               (url-container url)))))
+                               (container-url url)))))
                  (imail-default-container))
              (url-base-name (imail-parse-partial-url from)))
             'HISTORY 'IMAIL-COPY-FOLDER-TARGET))))