mit-scheme.git
23 years agoRestructure crypto, gdbm, and curses tests to depend on existence of
Chris Hanson [Mon, 2 Jul 2001 01:20:32 +0000 (01:20 +0000)]
Restructure crypto, gdbm, and curses tests to depend on existence of
appropriate header files as well as the library files.  The presence
of the library file is no guarantee that we have the headers.

23 years agoAdd ability to specify macros that are symbols rather than forms.
Chris Hanson [Sat, 30 Jun 2001 06:05:35 +0000 (06:05 +0000)]
Add ability to specify macros that are symbols rather than forms.
These expand to fixed parser sequences.

23 years agoAdd WITH-POINTER to both parser and matcher languages. Also implement
Chris Hanson [Sat, 30 Jun 2001 03:23:59 +0000 (03:23 +0000)]
Add WITH-POINTER to both parser and matcher languages.  Also implement
macros for both languages.

23 years agoMake sure that line number is properly updated.
Chris Hanson [Sat, 30 Jun 2001 03:21:23 +0000 (03:21 +0000)]
Make sure that line number is properly updated.

23 years ago* Track the line number of the current buffer position, so that error
Chris Hanson [Fri, 29 Jun 2001 05:23:24 +0000 (05:23 +0000)]
* Track the line number of the current buffer position, so that error
  messages can refer to the line.  Change representation of buffer
  pointers to include the line number.  Add operation to generate a
  string that shows the line number and character number of either a
  given pointer or the current position.

* Eliminate DECREMENT-PARSER-BUFFER-POINTER, which was unused and
  makes implementing the line number more difficult.

* Add -NO-ADVANCE versions of procedures that match single characters.

* Change terminology: the index of the current character in the buffer
  is called a "position".  The word "pointer" is reserved to refer to
  pointer objects that are handed to the users, which themselves refer
  to positions.

23 years ago* Track the line number of the current buffer position, so that error
Chris Hanson [Fri, 29 Jun 2001 05:19:24 +0000 (05:19 +0000)]
* Track the line number of the current buffer position, so that error
  messages can refer to the line.  Change representation of buffer
  pointers to include the line number.  Add operation to generate a
  string that shows the line number and character number of either a
  given pointer or the current position.

* Eliminate DECREMENT-PARSER-BUFFER-POINTER, which was unused and
  makes implementing the line number more difficult.

* Add -NO-ADVANCE versions of procedures that match single characters.

* Change terminology: the index of the current character in the buffer
  is called a "position".  The word "pointer" is reserved to refer to
  pointer objects that are handed to the users, which themselves refer
  to positions.

23 years ago* Track the line number of the current buffer position, so that error
Chris Hanson [Fri, 29 Jun 2001 05:18:19 +0000 (05:18 +0000)]
* Track the line number of the current buffer position, so that error
  messages can refer to the line.  Change representation of buffer
  pointers to include the line number.  Add operation to generate a
  string that shows the line number and character number of either a
  given pointer or the current position.

* Eliminate DECREMENT-PARSER-BUFFER-POINTER, which was unused and
  makes implementing the line number more difficult.

* Add -NO-ADVANCE versions of procedures that match single characters.

* Change terminology: the index of the current character in the buffer
  is called a "position".  The word "pointer" is reserved to refer to
  pointer objects that are handed to the users, which themselves refer
  to positions.

23 years ago* Track the line number of the current buffer position, so that error
Chris Hanson [Fri, 29 Jun 2001 05:17:21 +0000 (05:17 +0000)]
* Track the line number of the current buffer position, so that error
  messages can refer to the line.  Change representation of buffer
  pointers to include the line number.  Add operation to generate a
  string that shows the line number and character number of either a
  given pointer or the current position.

* Eliminate DECREMENT-PARSER-BUFFER-POINTER, which was unused and
  makes implementing the line number more difficult.

* Add -NO-ADVANCE versions of procedures that match single characters.

* Change terminology: the index of the current character in the buffer
  is called a "position".  The word "pointer" is reserved to refer to
  pointer objects that are handed to the users, which themselves refer
  to positions.

23 years agoEliminate compiler warnings.
Chris Hanson [Wed, 27 Jun 2001 02:00:08 +0000 (02:00 +0000)]
Eliminate compiler warnings.

23 years agoFix code-generation bug in MATCH element.
Chris Hanson [Wed, 27 Jun 2001 01:53:53 +0000 (01:53 +0000)]
Fix code-generation bug in MATCH element.

23 years agoFix a couple of code-generation bugs.
Chris Hanson [Tue, 26 Jun 2001 23:46:41 +0000 (23:46 +0000)]
Fix a couple of code-generation bugs.

23 years agoAdd some more optimizers.
Chris Hanson [Tue, 26 Jun 2001 23:46:20 +0000 (23:46 +0000)]
Add some more optimizers.

23 years agoFix two compiler warnings.
Chris Hanson [Tue, 26 Jun 2001 21:29:41 +0000 (21:29 +0000)]
Fix two compiler warnings.

23 years agoFix two compiler warnings.
Chris Hanson [Tue, 26 Jun 2001 21:28:54 +0000 (21:28 +0000)]
Fix two compiler warnings.

23 years agoLots of hair to allow explicit character-set specifications to be
Chris Hanson [Tue, 26 Jun 2001 21:16:46 +0000 (21:16 +0000)]
Lots of hair to allow explicit character-set specifications to be
compiled at load time rather than at run time.

23 years agoLots of hair to allow explicit character-set specifications to be
Chris Hanson [Tue, 26 Jun 2001 21:02:09 +0000 (21:02 +0000)]
Lots of hair to allow explicit character-set specifications to be
compiled at load time rather than at run time.

23 years agoChange name of language-shifting expression to SEXP.
Chris Hanson [Tue, 26 Jun 2001 19:01:31 +0000 (19:01 +0000)]
Change name of language-shifting expression to SEXP.

23 years agoMust attempt to parse number before attempting identifier. Otherwise,
Chris Hanson [Tue, 26 Jun 2001 18:53:20 +0000 (18:53 +0000)]
Must attempt to parse number before attempting identifier.  Otherwise,
the number's sign might be parsed as an identifier.

23 years agoFix problem with optimizer: needed to add notion of default rules that
Chris Hanson [Tue, 26 Jun 2001 18:52:35 +0000 (18:52 +0000)]
Fix problem with optimizer: needed to add notion of default rules that
are used when a more specific pattern isn't available.  Also,
generalize OPTIMIZE-GROUP-EXPRESSION so that it can be used by
VECTOR-APPEND.

23 years agoAdd missing bindings.
Chris Hanson [Tue, 26 Jun 2001 18:51:33 +0000 (18:51 +0000)]
Add missing bindings.

23 years agoInitial revision.
Chris Hanson [Tue, 26 Jun 2001 18:51:22 +0000 (18:51 +0000)]
Initial revision.

23 years agoInitial revision.
Chris Hanson [Tue, 26 Jun 2001 18:03:26 +0000 (18:03 +0000)]
Initial revision.

23 years agoDefine SCHEME-INDENT-METHOD to simplify definition of indentation.
Chris Hanson [Mon, 18 Jun 2001 04:18:25 +0000 (04:18 +0000)]
Define SCHEME-INDENT-METHOD to simplify definition of indentation.

23 years agoDon't attempt to set arbitrary flags unless the server says it's OK.
Chris Hanson [Sat, 16 Jun 2001 04:12:02 +0000 (04:12 +0000)]
Don't attempt to set arbitrary flags unless the server says it's OK.

23 years agoFix bug: regular-expression compiler is breaking the character-set
Chris Hanson [Fri, 15 Jun 2001 21:20:53 +0000 (21:20 +0000)]
Fix bug: regular-expression compiler is breaking the character-set
abstraction.

23 years agoChange representation of character sets so that they do not satisfy
Chris Hanson [Fri, 15 Jun 2001 20:38:51 +0000 (20:38 +0000)]
Change representation of character sets so that they do not satisfy
STRING?.  Unfortunately, this requires a complete recompilation of the
system, since the primitives SUBSTRING-FIND-NEXT-CHAR-IN-SET and
SUBSTRING-FIND-PREVIOUS-CHAR-IN-SET were being hard-coded by the
syntaxer.

23 years agoDon't integrate the primitives SUBSTRING-FIND-NEXT-CHAR-IN-SET and
Chris Hanson [Fri, 15 Jun 2001 20:36:18 +0000 (20:36 +0000)]
Don't integrate the primitives SUBSTRING-FIND-NEXT-CHAR-IN-SET and
SUBSTRING-FIND-PREVIOUS-CHAR-IN-SET.

23 years agoStart the folder-probe thread only when the folder is ONLINE, and stop
Chris Hanson [Tue, 12 Jun 2001 01:05:44 +0000 (01:05 +0000)]
Start the folder-probe thread only when the folder is ONLINE, and stop
the thread when the folder is OFFLINE.  Make sure that the buffer is
disassociated from it's folder when the buffer is killed.

23 years agoStart the folder-probe thread only when the folder is ONLINE, and stop
Chris Hanson [Tue, 12 Jun 2001 00:58:15 +0000 (00:58 +0000)]
Start the folder-probe thread only when the folder is ONLINE, and stop
the thread when the folder is OFFLINE.  Make sure that the buffer is
disassociated from it's folder when the buffer is killed.

23 years agoChange OPEN-RESOURCE and CLOSE-RESOURCE so that all of their behavior
Chris Hanson [Tue, 12 Jun 2001 00:47:39 +0000 (00:47 +0000)]
Change OPEN-RESOURCE and CLOSE-RESOURCE so that all of their behavior
is pushed down into the type-dependent modules.  (Previously, they had
some type-independent code.)  This, plus one explicit call, now means
that the STATUS modification event is now consistently signalled
whenever the connection status changes.

23 years agoForgot to export HANDLE-SUBPROCESS-STATUS-CHANGE to the socket code.
Chris Hanson [Sat, 9 Jun 2001 00:34:58 +0000 (00:34 +0000)]
Forgot to export HANDLE-SUBPROCESS-STATUS-CHANGE to the socket code.

23 years agoINPUT-BUFFER/READ-SUBSTRING must use generic arithmetic for indexes
Chris Hanson [Sat, 9 Jun 2001 00:30:38 +0000 (00:30 +0000)]
INPUT-BUFFER/READ-SUBSTRING must use generic arithmetic for indexes
into the substring, because it might be an xstring that is larger than
the fixnum range.

23 years agoREAD-SUBSTRING! can return less than the requested number of bytes.
Chris Hanson [Sat, 9 Jun 2001 00:29:48 +0000 (00:29 +0000)]
READ-SUBSTRING! can return less than the requested number of bytes.
Deal with it.

23 years agoVC's state is wiped out when the workfile's buffer has it's mode
Chris Hanson [Thu, 7 Jun 2001 17:48:19 +0000 (17:48 +0000)]
VC's state is wiped out when the workfile's buffer has it's mode
changed.  Use new event EVENT:SET-BUFFER-MAJOR-MODE to reset it at
that time.

23 years agoLOAD-FIND-FILE-INITIALIZATION must be re-run when the buffer's
Chris Hanson [Thu, 7 Jun 2001 17:45:01 +0000 (17:45 +0000)]
LOAD-FIND-FILE-INITIALIZATION must be re-run when the buffer's
pathname or major mode is changed.

23 years agoVC's state is wiped out when the workfile's buffer has it's mode
Chris Hanson [Thu, 7 Jun 2001 17:44:21 +0000 (17:44 +0000)]
VC's state is wiped out when the workfile's buffer has it's mode
changed.  Use new event EVENT:SET-BUFFER-MAJOR-MODE to reset it at
that time.

23 years agoAdd new event EVENT:SET-BUFFER-MAJOR-MODE.
Chris Hanson [Thu, 7 Jun 2001 17:43:21 +0000 (17:43 +0000)]
Add new event EVENT:SET-BUFFER-MAJOR-MODE.

23 years agoFix bug: TCP-SERVER-CONNECTION-ACCEPT was blocking on the server
Chris Hanson [Tue, 5 Jun 2001 02:46:59 +0000 (02:46 +0000)]
Fix bug: TCP-SERVER-CONNECTION-ACCEPT was blocking on the server
socket, rather than registering it for management by select.

23 years agoWhen reverting buffer, preserve selected resource, marked resources,
Chris Hanson [Mon, 4 Jun 2001 19:26:33 +0000 (19:26 +0000)]
When reverting buffer, preserve selected resource, marked resources,
and expanded containers.  When initializing buffer, select first
resource line.

23 years agoSelect first unseen message when invoking M-x imail on a folder that
Chris Hanson [Mon, 4 Jun 2001 19:25:11 +0000 (19:25 +0000)]
Select first unseen message when invoking M-x imail on a folder that
is already online.

23 years agoRename commands to match current Dired usage.
Chris Hanson [Mon, 4 Jun 2001 17:42:49 +0000 (17:42 +0000)]
Rename commands to match current Dired usage.

23 years agoSimplify usage of COPY-FOLDER.
Chris Hanson [Mon, 4 Jun 2001 17:42:30 +0000 (17:42 +0000)]
Simplify usage of COPY-FOLDER.

23 years agoMore new notes.
Chris Hanson [Mon, 4 Jun 2001 17:40:38 +0000 (17:40 +0000)]
More new notes.

23 years agoImplement M-x imail-browser-do-copy. Consolidate code used for copy
Chris Hanson [Mon, 4 Jun 2001 17:40:15 +0000 (17:40 +0000)]
Implement M-x imail-browser-do-copy.  Consolidate code used for copy
and rename.  Write documentation strings for all commands and for the
major mode.

23 years agoSimplify usage of COPY-FOLDER.
Chris Hanson [Mon, 4 Jun 2001 17:39:08 +0000 (17:39 +0000)]
Simplify usage of COPY-FOLDER.

23 years agoImplement WITH-OPEN-RESOURCE.
Chris Hanson [Mon, 4 Jun 2001 17:38:50 +0000 (17:38 +0000)]
Implement WITH-OPEN-RESOURCE.

23 years agoFix minor wording problem in documentation string.
Chris Hanson [Mon, 4 Jun 2001 17:12:33 +0000 (17:12 +0000)]
Fix minor wording problem in documentation string.

23 years agoChange commands used to enter browser. Now the primary command is M-x
Chris Hanson [Sun, 3 Jun 2001 06:03:47 +0000 (06:03 +0000)]
Change commands used to enter browser.  Now the primary command is M-x
imail-browser-view-container (bound to ^ in all IMAIL buffers), which
browses the container of the resource being viewed in the current
buffer.  This command will prompt for a container URL if given a
prefix argument.

23 years agoFix bug: the container URL "imap://localhost/" had an associated
Chris Hanson [Sun, 3 Jun 2001 06:00:18 +0000 (06:00 +0000)]
Fix bug: the container URL "imap://localhost/" had an associated
"folder" URL with the same string representation.  This confused the
URL interning mechanism, which uses the string rep as the key.
Consequently only one of the URLs existed.  Now, the "folder" is
represented by "imap://localhost".

23 years agoWhen processing marked files in a Dired buffer, update screens after
Chris Hanson [Sun, 3 Jun 2001 01:48:32 +0000 (01:48 +0000)]
When processing marked files in a Dired buffer, update screens after
each file is processed so that the mark is appropriately removed.

23 years agoChange CLOSE-RESOURCE so that second argument is required rather than
Chris Hanson [Sun, 3 Jun 2001 01:42:40 +0000 (01:42 +0000)]
Change CLOSE-RESOURCE so that second argument is required rather than
optional.

23 years agoAssociate a connection with an open IMAP container. Add code to
Chris Hanson [Sun, 3 Jun 2001 01:41:49 +0000 (01:41 +0000)]
Associate a connection with an open IMAP container.  Add code to
browser to guarantee that the resource is closed at appropriate times.

23 years ago*** empty log message ***
Chris Hanson [Sun, 3 Jun 2001 01:23:54 +0000 (01:23 +0000)]
*** empty log message ***

23 years agoChange M-x imail-quit to use the new NO-DEFER? argument to
Chris Hanson [Sun, 3 Jun 2001 01:23:45 +0000 (01:23 +0000)]
Change M-x imail-quit to use the new NO-DEFER? argument to
CLOSE-RESOURCE.

23 years agoAdd optional argument NO-DEFER? to CLOSE-RESOURCE. If this argument
Chris Hanson [Sun, 3 Jun 2001 01:22:54 +0000 (01:22 +0000)]
Add optional argument NO-DEFER? to CLOSE-RESOURCE.  If this argument
is true, it tells the operation that the resource must be closed
immediately.  Otherwise, the operation may defer the closure.

23 years agoAdd a few notes.
Chris Hanson [Sat, 2 Jun 2001 22:30:07 +0000 (22:30 +0000)]
Add a few notes.

23 years agoAdd commented-out stubs for commands to do file linking.
Chris Hanson [Sat, 2 Jun 2001 22:28:49 +0000 (22:28 +0000)]
Add commented-out stubs for commands to do file linking.

23 years agoAdd logic to GET-X-DISPLAY to test for existence of X primitives, and
Chris Hanson [Sat, 2 Jun 2001 22:25:38 +0000 (22:25 +0000)]
Add logic to GET-X-DISPLAY to test for existence of X primitives, and
to make sure that a display variable exists.  This is necessary so
that Edwin will work on a system that doesn't have X support.

23 years agoPROMPT-FOR-DIRECTORY should not always perform PATHNAME-AS-DIRECTORY
Chris Hanson [Sat, 2 Jun 2001 21:57:16 +0000 (21:57 +0000)]
PROMPT-FOR-DIRECTORY should not always perform PATHNAME-AS-DIRECTORY
on its result; if the REQUIRE-MATCH? option isn't given, the result
might not be a directory.  For example, Dired uses this prompt, and an
input with a wildcard file part is permissible.

23 years agoUpdate doc string for dired-do-copy to match Emacs.
Chris Hanson [Sat, 2 Jun 2001 21:50:06 +0000 (21:50 +0000)]
Update doc string for dired-do-copy to match Emacs.

23 years agoEliminate variable dired-copy-preserve-time which wasn't doing anything.
Chris Hanson [Sat, 2 Jun 2001 16:51:01 +0000 (16:51 +0000)]
Eliminate variable dired-copy-preserve-time which wasn't doing anything.

23 years agoNew procedures HARD-LINK-FILE and SOFT-LINK-FILE.
Chris Hanson [Sat, 2 Jun 2001 15:39:02 +0000 (15:39 +0000)]
New procedures HARD-LINK-FILE and SOFT-LINK-FILE.

23 years agoNew procedures HARD-LINK-FILE and SOFT-LINK-FILE.
Chris Hanson [Sat, 2 Jun 2001 15:33:04 +0000 (15:33 +0000)]
New procedures HARD-LINK-FILE and SOFT-LINK-FILE.

23 years agoNew procedures HARD-LINK-FILE and SOFT-LINK-FILE.
Chris Hanson [Sat, 2 Jun 2001 15:30:43 +0000 (15:30 +0000)]
New procedures HARD-LINK-FILE and SOFT-LINK-FILE.

23 years agoImplement marked files for D and R commands (stub for C command needs
Chris Hanson [Sat, 2 Jun 2001 05:55:51 +0000 (05:55 +0000)]
Implement marked files for D and R commands (stub for C command needs
to be written).  Change name of x command to M-x
imail-browser-do-flagged-delete to correspond to new name given
corresponding Emacs dired command.

23 years agoIn M-x imail-rename-folder and M-x imail-copy-folder, allow user to
Chris Hanson [Sat, 2 Jun 2001 05:50:19 +0000 (05:50 +0000)]
In M-x imail-rename-folder and M-x imail-copy-folder, allow user to
specify a container for the target.

23 years agoAdd new procedure PROMPT-FOR-URL.
Chris Hanson [Sat, 2 Jun 2001 05:43:12 +0000 (05:43 +0000)]
Add new procedure PROMPT-FOR-URL.

23 years agoAdd optional HOST argument to OPEN-TCP-SERVER-SOCKET, and new
Chris Hanson [Sat, 2 Jun 2001 01:26:39 +0000 (01:26 +0000)]
Add optional HOST argument to OPEN-TCP-SERVER-SOCKET, and new
procedures HOST-ADDRESS-ANY and HOST-ADDRESS-LOOPBACK.  This allows
the user to specify the network interface(s) being listened to.

23 years agoProvide missing htonl calls.
Chris Hanson [Sat, 2 Jun 2001 01:25:00 +0000 (01:25 +0000)]
Provide missing htonl calls.

23 years agoOops, that should have been CREATE-TCP-SERVER-SOCKET.
Chris Hanson [Sat, 2 Jun 2001 01:06:01 +0000 (01:06 +0000)]
Oops, that should have been CREATE-TCP-SERVER-SOCKET.

23 years agoImplement new primitives to allow finer control over how TCP server
Chris Hanson [Sat, 2 Jun 2001 01:05:22 +0000 (01:05 +0000)]
Implement new primitives to allow finer control over how TCP server
sockets are configured:

    HOST-ADDRESS-ANY
    HOST-ADDRESS-LOOPBACK
    CREATE_TCP_SERVER_SOCKET
    BIND-TCP-SERVER-SOCKET
    LISTEN-TCP-SERVER-SOCKET

23 years agoDefer closing of connection when it is the last connection open to a
Chris Hanson [Fri, 1 Jun 2001 02:23:19 +0000 (02:23 +0000)]
Defer closing of connection when it is the last connection open to a
particular server.  This prevents a pattern of opening and closing
that occurs when IMAIL starts up (due to probes performed prior to
opening the folder).  It also allows the user to do completion in the
folder space without occurring the same penalty.  The downside is that
the connection remains open for about a minute after the user "closes"
it, which will be remedied in a future revision.

23 years agoFirst draft of a mechanism to defer closing of connections. This
Chris Hanson [Thu, 31 May 2001 20:34:17 +0000 (20:34 +0000)]
First draft of a mechanism to defer closing of connections.  This
suffers from a fault: the background probe-folder thread is re-opening
the connection while it is in the deferred state.

23 years agoImplement START-STANDARD-POLLING-THREAD and
Chris Hanson [Thu, 31 May 2001 19:58:40 +0000 (19:58 +0000)]
Implement START-STANDARD-POLLING-THREAD and
STOP-STANDARD-POLLING-THREAD to capture standard method of using
background thread to poll for output or events.

23 years agoImplement START-STANDARD-POLLING-THREAD and
Chris Hanson [Thu, 31 May 2001 19:57:40 +0000 (19:57 +0000)]
Implement START-STANDARD-POLLING-THREAD and
STOP-STANDARD-POLLING-THREAD to capture standard method of using
background thread to poll for output or events.

23 years agoAdd interrupt locking to REGISTER-INFERIOR-THREAD! and
Chris Hanson [Thu, 31 May 2001 19:41:53 +0000 (19:41 +0000)]
Add interrupt locking to REGISTER-INFERIOR-THREAD! and
DEREGISTER-INFERIOR-THREAD!.  Change DEREGISTER-INFERIOR-THREAD! to
delete the entry from the list of inferior threads.

23 years agoChange how connections are allocated; when looking for a connection
Chris Hanson [Wed, 30 May 2001 05:47:08 +0000 (05:47 +0000)]
Change how connections are allocated; when looking for a connection
for a folder, we'll now take over an existing compatible connection if
it's not being used by another folder.  This will be useful after the
next change, which will cause connections to stay open a short while
after their last reference is dropped; when that happens, there will
be open connections lying around that can usefully be adopted.

23 years agoDon't use LOAD-OPTION to load cref; it probably doesn't exist on the
Chris Hanson [Tue, 29 May 2001 21:25:33 +0000 (21:25 +0000)]
Don't use LOAD-OPTION to load cref; it probably doesn't exist on the
host system (outside of MIT), and this will cause an error if the user
has MITSCHEME_INF_DIRECTORY set.

23 years agoEliminate IMAP-FOLDER-N-MESSAGES in favor of FOLDER-LENGTH.
Chris Hanson [Tue, 29 May 2001 20:46:28 +0000 (20:46 +0000)]
Eliminate IMAP-FOLDER-N-MESSAGES in favor of FOLDER-LENGTH.

23 years agoEliminate IMAP-FOLDER-N-MESSAGES in favor of FOLDER-LENGTH.
Chris Hanson [Tue, 29 May 2001 20:41:56 +0000 (20:41 +0000)]
Eliminate IMAP-FOLDER-N-MESSAGES in favor of FOLDER-LENGTH.

23 years agoRename URL-IS-CONTAINER? to URL-CORRESPONDING-CONTAINER. Eliminate
Chris Hanson [Tue, 29 May 2001 20:36:53 +0000 (20:36 +0000)]
Rename URL-IS-CONTAINER? to URL-CORRESPONDING-CONTAINER.  Eliminate
requirement that the result be #F if the resource doesn't exist.

23 years agoCache information returned by the IMAP LIST command. This should help
Chris Hanson [Tue, 29 May 2001 20:26:32 +0000 (20:26 +0000)]
Cache information returned by the IMAP LIST command.  This should help
to reduce traffic on the wire.

23 years agoDon't use my private "$bscm" environment variable in public code.
Chris Hanson [Tue, 29 May 2001 20:08:59 +0000 (20:08 +0000)]
Don't use my private "$bscm" environment variable in public code.

23 years agoDon't use LOAD-OPTION to load cref; it probably doesn't exist on the
Chris Hanson [Tue, 29 May 2001 19:58:28 +0000 (19:58 +0000)]
Don't use LOAD-OPTION to load cref; it probably doesn't exist on the
host system (outside of MIT), and this will cause an error if the user
has MITSCHEME_INF_DIRECTORY set.

23 years agoChange M-x imail so that it only runs M-x imail-get-new-mail if the
Chris Hanson [Tue, 29 May 2001 19:32:39 +0000 (19:32 +0000)]
Change M-x imail so that it only runs M-x imail-get-new-mail if the
folder status is OFFLINE.

23 years agoRestructure IMAP URLs so that each container URL has a corresponding
Chris Hanson [Tue, 29 May 2001 17:45:37 +0000 (17:45 +0000)]
Restructure IMAP URLs so that each container URL has a corresponding
folder URL.  The container URL inherits the components of the folder
URL rather than keeping its own copies.  This sharing will be
important when we add caching of the IMAP server's LIST info.

23 years agoIn IMAP-MAILBOX-DELIMITER, use the probed root as the table key;
Chris Hanson [Mon, 28 May 2001 03:49:04 +0000 (03:49 +0000)]
In IMAP-MAILBOX-DELIMITER, use the probed root as the table key;
previous strategy make no sense.

23 years agoFix bug: IMAP-MAILBOX-DELIMITER was calling the LIST command on a
Chris Hanson [Mon, 28 May 2001 02:10:08 +0000 (02:10 +0000)]
Fix bug: IMAP-MAILBOX-DELIMITER was calling the LIST command on a
mailbox with a trailing slash; now the slash is omitted.

23 years agoCache result of URL-IS-CONTAINER?, to prevent going back to network
Chris Hanson [Sun, 27 May 2001 05:05:54 +0000 (05:05 +0000)]
Cache result of URL-IS-CONTAINER?, to prevent going back to network
each time it's needed.  This might not actually work, since the
definition of URL-IS-CONTAINER? specifies that the corresponding
mailbox must exist.

23 years agoDelete entries for things that are now implemented.
Chris Hanson [Sun, 27 May 2001 05:04:24 +0000 (05:04 +0000)]
Delete entries for things that are now implemented.

23 years agoNote problem that connection to IMAP server is being opened and closed
Chris Hanson [Sun, 27 May 2001 05:01:55 +0000 (05:01 +0000)]
Note problem that connection to IMAP server is being opened and closed
too much.

23 years agoFix error message of SELECTED-URL so that it makes more sense to the
Chris Hanson [Sat, 26 May 2001 03:09:36 +0000 (03:09 +0000)]
Fix error message of SELECTED-URL so that it makes more sense to the
end user.

23 years agoEliminate compiler warning.
Chris Hanson [Sat, 26 May 2001 03:02:29 +0000 (03:02 +0000)]
Eliminate compiler warning.

23 years agoAdd first working draft of folder browser.
Chris Hanson [Sat, 26 May 2001 03:01:00 +0000 (03:01 +0000)]
Add first working draft of folder browser.

23 years agoChange IMAIL-DEFAULT-CONTAINER to use selected URL if any. This sets
Chris Hanson [Sat, 26 May 2001 02:51:06 +0000 (02:51 +0000)]
Change IMAIL-DEFAULT-CONTAINER to use selected URL if any.  This sets
default correctly in the folder browser when point is inside an
expanded subfolder.

23 years agoImplement SELECTED-CONTAINER-URL.
Chris Hanson [Sat, 26 May 2001 02:13:40 +0000 (02:13 +0000)]
Implement SELECTED-CONTAINER-URL.

23 years agoChange external representation of URL to use content name rather than
Chris Hanson [Sat, 26 May 2001 02:12:50 +0000 (02:12 +0000)]
Change external representation of URL to use content name rather than
presentation name.

23 years agoFix indentation.
Chris Hanson [Sat, 26 May 2001 01:55:10 +0000 (01:55 +0000)]
Fix indentation.

23 years agoCache CONTAINER-URL of every URL when it is created, so that the
Chris Hanson [Fri, 25 May 2001 18:16:56 +0000 (18:16 +0000)]
Cache CONTAINER-URL of every URL when it is created, so that the
heirarchy can be quickly traversed.

Rename URL-IS-SELECTABLE? as FOLDER-URL-IS-SELECTABLE?.

Implement new operation URL-IS-CONTAINER?  which returns the
equivalent container URL of a URL (which may be a folder URL).

23 years agoChange noun "child", used to refer to something in a container, to
Chris Hanson [Fri, 25 May 2001 02:45:51 +0000 (02:45 +0000)]
Change noun "child", used to refer to something in a container, to
"content".