[Omake] SVN Commit: OMake Build System [0.9.8.x] (Rev. 10128)
Jason Hickey
jyh at cs.caltech.edu
Wed Feb 28 19:59:30 PST 2007
Module name: OMake Build System [0.9.8.x]
Changes by: jyh at cs.caltech.edu (Jason Hickey)
Date: 2007-02-28 19:59:30 -0800 (Wed, 28 Feb 2007)
Revision: 10128
Log message:
Move all the completion code into ML, so that it can be
more faithful to OMake (and easier to implement too).
Filename completions of all the following partial
names are implemented:
/abc/def (absolute name)
~ab (username)
~abc/def (relative to home directory)
~/def (relative to my home directory)
abc/def (relative name)
abc (relative name)
Missing: the current code does not handle escapes
and quoting, so filenames like the following
do not currently work.
c:/Program\ Files/foo
Implementing this is todo. The main thing
to understand is that \ is a pathname separator
iff it is not followed by a special character
[~ \t*?]
The choice of \ as a pathname separator is probably
the first indicator of Microsoft engineering methods,
standards, and practices. Not to mention that
drive letters are a convenient naming scheme for
organizing files by content and purpose rather
than physical location.
Changes:
+6 -2 omake-branches/0.9.8.x/src/Makefile
+6 -2 omake-branches/0.9.8.x/src/Makefile.nt
+52 -158 omake-branches/0.9.8.x/src/clib/readline.c
+2 -1 omake-branches/0.9.8.x/src/main/omake_shell.ml
+1 -0 omake-branches/0.9.8.x/src/shell/OMakefile
Added omake-branches/0.9.8.x/src/shell/omake_shell_completion.ml
Added omake-branches/0.9.8.x/src/shell/omake_shell_completion.mli
+0 -35 omake-branches/0.9.8.x/src/shell/omake_shell_job.ml
+0 -6 omake-branches/0.9.8.x/src/shell/omake_shell_job.mli
----
A hyperlinked version of this commit is available at
http://svn.metaprl.org/commitlogs/omake/2007-02.html#07/02/28.19:59:30
More information about the OMake-CVS
mailing list