[e-cvs] cvs commit: e/doc/download/0-8-10alpha e.txt eprops.txt index.html release-notes.html unix-bin.html unix-src.html windows-bin.html windows-src.html

markm@eros.cs.jhu.edu markm@eros.cs.jhu.edu
Fri, 14 Sep 2001 23:16:00 -0400


markm       01/09/14 23:16:00

  Modified:    doc/download/0-8-10alpha e.txt eprops.txt index.html
                        release-notes.html unix-bin.html unix-src.html
                        windows-bin.html windows-src.html
  Log:
  zeroth draft web pages for 0-8-10alpha1

Revision  Changes    Path
1.2       +21 -15    e/doc/download/0-8-10alpha/e.txt

Index: e.txt
===================================================================
RCS file: /cvs/e/doc/download/0-8-10alpha/e.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- e.txt	2001/09/14 01:44:08	1.1
+++ e.txt	2001/09/15 03:16:00	1.2
@@ -31,13 +31,13 @@
 #
 # For example, "c:/Program Files/erights.org/"
 
-EHOME=/home/markm/ehome/
+EHOME="d:/Program Files/erights.org/"
 
 # What executable Java command should be used?
 #
 # For example, "d:/jdk1.3/bin/java.exe"
 
-JCMD=/home/markm/jdk1.3/bin/java
+JCMD="d:/jdk1.4/bin/java.exe"
 
 
 # Assumes EHOME ends in a "/".  See note above.
@@ -91,6 +91,9 @@
     jopts[${#jopts[@]}]=$1
 }
 
+# These should come from props
+jpush "-Xfuture"
+
 # either zero or one long
 declare -a ecmd
 
@@ -98,14 +101,14 @@
 
 while [ $(($# >= 1)) = 1 ]; do
     case $1 in
-        -cp )     jpush "$1"; shift
-                  if [ $(($# < 1)) = 1 ]; then usage; fi
-                  jpush "$1"; shift;;
-        -D* )     jpush "$1"; shift;;
-        -J* )     jpush "${1#-J}"; shift;;
+        -cp )       jpush "$1"; shift
+                    if [ $(($# < 1)) = 1 ]; then usage; fi
+                    jpush "$1"; shift;;
+        -D* )       jpush "$1"; shift;;
+        -J* )       jpush "${1#-J}"; shift;;
         --help )
-            echo "e [-options] [(e-script.e | \"-\") [args...]]"
-            echo "where options include:"
+            echo "e [-options] script [args...]"
+            echo "where options are:"
             echo "  -cp <classpath>      Defines classpath. Passed to java."
             echo "  -D<name>=<value>     Defines Property.  Passed to java."
             echo "  -J<java-option>      java-option passed to java."
@@ -113,14 +116,17 @@
             echo "  --help               Prints this out and exits."
             echo "  --show               Shows the java command line, rather"
             echo "                       than executing it"
-            echo "If \"-\" is used instead of a script file name,"
-            echo "then E commands are read from stdin."
+            echo "and script is one of"
+            echo "  filename.e           The E script file to execute"
+            echo "  -                    Use stdin as script file"
+            echo "  --interact           An interactive command line"
             exit 0;;
-        --show)   execflag=show; shift;;
-        -)        break;;
-        -*)       usage;;
+        --show)     execflag=show; shift;;
+        -)          break;;
+        --interact) break;;
+        -*)         usage;;
         *)
-	    ecmd[0]=`normalizeEPath "$1"`; shift
+            ecmd[0]=`normalizeEPath "$1"`; shift
             break;;
     esac
 done



1.2       +76 -40    e/doc/download/0-8-10alpha/eprops.txt

Index: eprops.txt
===================================================================
RCS file: /cvs/e/doc/download/0-8-10alpha/eprops.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- eprops.txt	2001/09/14 01:44:08	1.1
+++ eprops.txt	2001/09/15 03:16:00	1.2
@@ -1,39 +1,39 @@
 # E Configuration File (or E Configuration Template File)
-# 
+#
 # If you are looking at eprops-template.txt, then
 # you are looking at a template to be used to construct eprops.txt.
 # In this case, for several property definitions, you should instead
-# see text of the form, for example, 
-# 
+# see text of the form, for example,
+#
 #     e.version=$<<e.version>>
-# 
+#
 # but with curly brackets instead of angle brackets.
-# 
+#
 # In the comment preceding that line, you should see an example of a
 # possible value of this property, such as "0.8.9".  Were this
 # property to have this value in the eprops.txt file, it would appear
 # as
-# 
+#
 #     e.version=0.8.9
-# 
+#
 # The eprops.txt file is written in a restricted form of Java's
 # Properties file save/load syntax.  If you are looking at an
 # eprops.txt file, all property definitions should already have the
 # above form.  You may create an eprops.txt file manually by copying
 # the eprops-template.txt file and replacing the
 # dollar-double-curly-bracket for with the Java propert definition.
-# 
+#
 # Notice that there are no quotes around the value.  This is correct
 # even if the property value contains spaces, since the Java property
 # syntax reads all text till the end of the line.
-# 
+#
 # When a property value is a file or directory path name, it should be
 # absolute and use forward slashes ("/"), regardless of the local
 # platform's convention.  If it's a non-top-level directory, a
 # terminal slash is optional.  Note: On MSWindows, you must specify
 # drives the MSWindows/Java way ("c:...") rather than the Cygwin way
 # ("//c/...").
-# 
+#
 # When a property value is a pathlist (a list of paths, sometimes also
 # confusingly refered to as a "path", as in the PATH or CLASSPATH
 # variables), then the entries should be separated by a semicolon
@@ -45,7 +45,7 @@
 # property.  This is so command-line property settings (using
 # arguments of the form "-D<name>=<value>) will take precedence over
 # property settings in eprops.txt.
-# 
+#
 # The eprops.txt file should serve as a record of everywhere (outside
 # of the install directory itself) that installation placed files and
 # registry entries, so that a future uninstaller will know (fingers
@@ -59,7 +59,7 @@
 #
 # For example, "0.8.9".
 
-e.version=0.8.10alpha
+e.version=0.8.10alpha1
 
 
 # Where is E installed?  If this file is eprops.txt (as opposed to
@@ -68,7 +68,7 @@
 #
 # For example, "c:/Program Files/erights.org/"
 
-e.home=/home/markm/ehome
+e.home=d:/Program Files/erights.org/
 
 
 # What is the absolute path of the Java executable command?  This must
@@ -78,7 +78,7 @@
 #
 # For example, "d:/jdk1.3/bin/java.exe"
 
-e.javacmd=/home/markm/jdk1.3/bin.java
+e.javacmd=d:/jdk1.4/bin/java.exe
 
 
 # When E shortcuts are launched from the desktop, where should their
@@ -89,7 +89,7 @@
 #
 # For example: "c:/WINDOWS/Desktop" or "".
 
-# e.launch.dir=${{e.launch.dir}}
+e.launch.dir=C:/WINDOWS/Desktop
 
 
 # Where does trace data go?  This directory will accumulate
@@ -100,7 +100,7 @@
 #
 # For example: "c:/WINDOWS/temp/etrace" or "".
 
-TraceLog_dir=/home/markm/etrace
+TraceLog_dir=C:/windows/TEMP/etrace
 
 # Other trace switches
 
@@ -117,25 +117,25 @@
 #
 # For example: "c:/WINDOWS/;/home/markm/bin"
 
-e.put.bash.pathlist=/home/markm/bin
+e.put.bash.pathlist=C:/WINDOWS
 
 
 # Where are copies of the shortcuts placed?
 #
 # For example: "c:/WINDOWS/Desktop;c:/WINDOWS/Start Menu/Programs/erights.org".
 
-# e.put.shortcut.pathlist=${{e.put.shortcut.pathlist}}
+e.put.shortcut.pathlist=C:/WINDOWS/Desktop;C:/WINDOWS/Start Menu/Programs/erights.org
 
 
-# Which of .e, .emaker, .updoc, .vat, and .cap should be associated
-# with icons, registry types, mime types, launching programs, and
-# other right button menu commands?  Currently, this definition does
-# nothing, and setup.e simply grabs whatever extensions it likes
-# (which are these 5).
+# Which of .e, .emaker, .caplet, .updoc, .vat, and .cap should be
+# associated with icons, registry types, mime types, launching
+# programs, and other right button menu commands?  Currently, this
+# definition does nothing, and setup.e simply grabs whatever
+# extensions it likes (which are these 6).
 #
-# ".e;.maker;.updoc;.vat;.cap" or any subset.
+# ".e;.emaker;.caplet;.updoc;.vat;.cap" or any subset.
 
-e.extensionslist=.e;.emaker;.updoc;.vat;.cap
+e.extensionslist=.e;.emaker;.caplet;.updoc;.vat;.cap
 
 
 # Name of vendor providing this E implementation
@@ -149,20 +149,20 @@
 #
 # For example: "http://www.erights.org/"
 
-e.vendor.url=http://www.erights.org
+e.vendor.url=http://www.erights.org/
 
 
 # URL bug reports should be mailed-to
 #
 # For example: "mailto:bugs@erights.org"
 
-e.vendor.url.bug=${{e.vendor.url.bug}}
+e.vendor.url.bug=mailto:bugs@erights.org
 
 
 ################## Other Switches #####################
 
 # One of "report" (the default), "prompt", or "gui". <p>
-# 
+#
 # When E fails to launch, or when the top level script (the *.e file)
 # throws a problem, how should the E interpreter report the problem
 # before exiting with a non-zero error code?
@@ -170,33 +170,33 @@
 # When this property is set to "report" (or when the property is
 # absent), then E prints a problem report on stderr and exits
 # immediately. <p>
-# 
+#
 # When set to "prompt", E still prints the problem report on stderr,
 # but it then also prompts for a character to be typed in before the
 # process is dismissed, and then blocks waiting for that
-# character. <p> 
-# 
+# character. <p>
+#
 # When set to "gui", E will pop up a window at least reporting the
 # error and waiting to be dismissed.  Later versions of E may provide
 # support for diagnostics and debugging starting from this window.
 # Note: "gui" is not yet implemented.  If used, it will prompt
-# instead. 
+# instead.
 
 e.onErrorExit=gui
 
 
 # One of "platform" (the default), "none", or a look and feel class
 # name. <p>
-# 
+#
 # When set to "platform" (or when the property is absent), the look
 # and feel is set to the default for the platform according to
 # "UIManager getSystemLookAndFeelClassName()".  <p>
-# 
+#
 # When set to "none", this advises code that there may not be an
 # available graphical display device, and that they should try, if
 # possible, to avoid any operations which would fail in a pure
 # character/teletype environment, such as a telnet session. <p>
-# 
+#
 # When set to a look and feel class name, it sets this to be the
 # initial look and feel for this E process.
 
@@ -229,7 +229,37 @@
 
 e.interp.verbose=false
 
+#
+
+e.interp.runner=fe
+
+
+################# Configuring a Vat's network presence #################
+
+# e.VLSPath is an optional semicolon-separated list of TCP/IP
+# addresses of VLSs this vat should register with.  Defaults to "" --
+# the null list.  Doesn't actually mean anything until the VLS is
+# revived.
+
+# e.VLSPath=
+
+# e.SearchPath is an optional semicolon-separated list of TCP/IP
+# addresses for others to look for me.  Defaults to the VLSPath.  Once
+# a vat knows its own ListenAddress, this should be added to the front
+# of the list.
+
+# e.SearchPath=
 
+# e.ListenAddress is the optional TCP/IP address at which this vat
+# should create the socket it listens to.  If an IP address isn't
+# given, the socket defaults to listening on all IP addresses of this
+# host.  If an IP address is given, it must be one of the IP addresses
+# of this host.  If the TCP port isn't given, it defaults to 0.  A TCP
+# port of 0 instructs the OS to pick any free TCP port.
+
+# e.ListenAddress=
+
+
 ################# In-Pocket E Shorthands & Features #################
 
 # To ease the transition to the new restricted syntax, you can set
@@ -239,7 +269,7 @@
 # stated for a particular feature.
 
 # Only e.enable.bind below defaults to "true" for reasons it
-# explains. 
+# explains.
 
 # Another reason they are left in the implementation is to allow
 # experimentation.  All these features were added for reasons that
@@ -253,7 +283,7 @@
 # to do so.
 
 
-# If e.enable.anon-lambda is set to "true", E accepts the 
+# If e.enable.anon-lambda is set to "true", E accepts the
 # " '_' '('params...')' '{' eExpr '}' and " '_'{eExpr}" lambda
 # shorthands. To turn a program using this feature into a proper
 # modern E program, the first should be prefixed by "def".  In the
@@ -336,7 +366,7 @@
 
 e.enable.one-method-object=false
 
-# Accept the experimental 
+# Accept the experimental
 # " 'def' name 'match' pattern '{' eExpr '}' " kernel
 # construct.  This is not a shorthand, so if you need it there's
 # nothing to do instead.  Rather, it is an exprimental kernel feature
@@ -375,12 +405,18 @@
 # tab key.  The best path to sanity is to simply avoid the presence of
 # tab characters in text files, with the one unfortunate exception of
 # "Makefile"s and "*.mk" files.
-# 
+#
 # Unfortunately, because so many text editors put tabs into files in a
 # way that's hard to turn off, E must, by default, accept tabs as a
 # valid whitespace character.  However, to help you prevent yourself
 # from including tabs, we provide the "notabs" switch, which defaults
 # to "false".  If you set it to true, the tab character will not be
 # considered valid whitespace.
+
+e.enable.notabs=false
+
+
+# Enables syntax such as 'require (cond) thunk{str}' to be accepted
+# and be equivalent of 'require (cond, thunk{str})'
 
-e.enable.notabs=true
+e.enable.lambda-args=false



1.2       +10 -10    e/doc/download/0-8-10alpha/index.html

Index: index.html
===================================================================
RCS file: /cvs/e/doc/download/0-8-10alpha/index.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- index.html	2001/09/14 01:44:08	1.1
+++ index.html	2001/09/15 03:16:00	1.2
@@ -5,7 +5,7 @@
 <HEAD>
 <META HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=iso-8859-1">
 <!-- #BeginEditable "doctitle" --> 
-<TITLE>E 0.8.10alpha Download and Install E</TITLE>
+<TITLE>E 0.8.10alpha1 Download and Install E</TITLE>
 <!-- #EndEditable --> 
 <meta name="Author" content="Mark S. Miller">
 <link rel=author rev=made href="mailto:markm@caplet.com" title="Mark S. Miller">
@@ -34,7 +34,7 @@
               </tr>
               <tr> 
                 <td valign="top" align="right"><!-- #BeginEditable "PrevButton" --><a href="../stl-0-8-9-t-1/index.html"><img src="../../images/prev.gif" width="64" height="32" alt="Back to: E stl-0.8.9t.1 Download and Install E" border="0"></a><!-- #EndEditable --></td>
-                <td valign="bottom" align="left"><!-- #BeginEditable "FirstButton" --><a href="windows-bin.html"><img src="../../images/first.gif" width="32" height="64" alt="1st child: E 0.8.10alpha: Installing on Windows" border="0"></a><!-- #EndEditable --></td>
+                <td valign="bottom" align="left"><!-- #BeginEditable "FirstButton" --><a href="windows-bin.html"><img src="../../images/first.gif" width="32" height="64" alt="1st child: E 0.8.10alpha1: Installing on Windows" border="0"></a><!-- #EndEditable --></td>
                 <td valign="top" align="left"><!-- #BeginEditable "NextButton" --><img src="../../images/next-gray.gif" width="64" height="32"><!-- #EndEditable --></td>
               </tr>
             </table>
@@ -42,7 +42,7 @@
           <TD ALIGN="RIGHT"> 
             <P ALIGN="RIGHT"><FONT SIZE="7"><!-- #BeginEditable "BigTitle" --><b><font size="5">Download 
               and Install</font></b><font size="5" color="#009000"><i><b><br>
-              </b></i></font><i><font color="#009000"><b>E</b></font></i><b> 0.8.10alpha</b><!-- #EndEditable --></FONT> 
+              </b></i></font><i><font color="#009000"><b>E</b></font></i><b> 0.8.10alpha1</b><!-- #EndEditable --></FONT> 
           </TD>
         </TR>
       </TABLE>
@@ -57,7 +57,7 @@
         </p>
       </blockquote>
       <p></p>
-      <h1 align="center"><a href="../which.html">Are you sure you want the 0.8.10alpha 
+      <h1 align="center"><a href="../which.html">Are you sure you want the 0.8.10alpha1 
         version?</a></h1>
       <hr>
       <h1><a name="platforms"></a>Download by Platforms &amp; Versions</h1>
@@ -94,12 +94,12 @@
               </th>
               <td> 
                 <div align="center"><a href="windows-bin.html">Installing</a><br>
-                  <a href="E-win32-0.8.10alpha.zip"><b><font size="+1">Download 
+                  <a href="E-win32-0.8.10alpha1.zip"><b><font size="+1">Download 
                   E</font></b></a></div>
               </td>
               <td> 
                 <div align="center"><a href="windows-src.html">Building</a><br>
-                  <a href="E-src-0.8.10alpha.zip">Download E</a></div>
+                  <a href="E-src-0.8.10alpha1.zip">Download E</a></div>
               </td>
             </tr>
             <tr> 
@@ -109,12 +109,12 @@
               </th>
               <td> 
                 <div align="center"><a href="unix-bin.html">Installing</a><br>
-                  <a href="E-nix-0.8.10alpha.tar.gz"><b><font size="+1">Download 
+                  <a href="E-nix-0.8.10alpha1.tar.gz"><b><font size="+1">Download 
                   E</font></b></a></div>
               </td>
               <td> 
                 <div align="center"><a href="unix-src.html">Building</a><br>
-                  <a href="E-src-0.8.10alpha.tar.gz">Download E</a></div>
+                  <a href="E-src-0.8.10alpha1.tar.gz">Download E</a></div>
               </td>
             </tr>
             <tr> 
@@ -133,7 +133,7 @@
       <p>&nbsp; </p>
       <hr>
       <h1><a name="Highlights"></a>Highlights of this Version</h1>
-      <p><i><font color="#009000"><b>E</b></font></i><b> 0.8.10alpha</b> is an 
+      <p><i><font color="#009000"><b>E</b></font></i><b> 0.8.10alpha1</b> is an 
         interim non-distributed release, but supporting a more modern version 
         of the E language spec. It's primary motivation is to support work on 
         compiling E, but it may also be preferred by those using E for non-distributed 
@@ -357,7 +357,7 @@
       <p><i>Note: The website at the above link, http://www.lincom-asg.com/~rjamison/byacc/, 
         seems to have disappeared. If you know where it may have gone to, or know 
         how to contact Bob Jamison, please let <a href="mailto:webmaster@erights.org">me</a> 
-        know. In the meantime, starting with the 0.8.10alpha release, the sources to 
+        know. In the meantime, starting with the 0.8.10alpha1 release, the sources to 
         byaccj are bundled with the E sources, and byaccj is made as part of making 
         E. </i></p>
       <h3>Zip Files</h3>



1.2       +4 -4      e/doc/download/0-8-10alpha/release-notes.html

Index: release-notes.html
===================================================================
RCS file: /cvs/e/doc/download/0-8-10alpha/release-notes.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- release-notes.html	2001/09/14 01:44:08	1.1
+++ release-notes.html	2001/09/15 03:16:00	1.2
@@ -5,7 +5,7 @@
 <HEAD>
 <META HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=iso-8859-1">
 <!-- #BeginEditable "doctitle" -->
-<TITLE>Release Notes: 0.8.10alpha</TITLE>
+<TITLE>Release Notes: 0.8.10alpha1</TITLE>
 <!-- #EndEditable --> 
 <meta name="Author" content="Mark S. Miller">
 <link rel=author rev=made href="mailto:markm@caplet.com" title="Mark S. Miller">
@@ -35,19 +35,19 @@
               <tr> 
                 <td valign="top" align="right"><!-- #BeginEditable "PrevButton" --><img src="../../images/prev-gray.gif" width="64" height="32"><!-- #EndEditable --></td>
                 <td valign="bottom" align="left"><!-- #BeginEditable "FirstButton" --><!-- #EndEditable --></td>
-                <td valign="top" align="left"><!-- #BeginEditable "NextButton" --><a href="windows-bin.html"><img src="../../images/next.gif" width="64" height="32" alt="On to: E 0.8.10alpha: Installing on Windows" border="0"></a><!-- #EndEditable --></td>
+                <td valign="top" align="left"><!-- #BeginEditable "NextButton" --><a href="windows-bin.html"><img src="../../images/next.gif" width="64" height="32" alt="On to: E 0.8.10alpha1: Installing on Windows" border="0"></a><!-- #EndEditable --></td>
               </tr>
             </table>
           </TD>
           <TD ALIGN="RIGHT"> 
-            <P ALIGN="RIGHT"><FONT SIZE="7"><!-- #BeginEditable "BigTitle" --><FONT SIZE="7"><B>0.8.10alpha<br>
+            <P ALIGN="RIGHT"><FONT SIZE="7"><!-- #BeginEditable "BigTitle" --><FONT SIZE="7"><B>0.8.10alpha1<br>
               Release Notes</B></FONT><!-- #EndEditable --></FONT> 
           </TD>
         </TR>
       </TABLE>
       <hr>
       <!-- #BeginEditable "LongBody" -->
-      <p><i><font color="#009000"><b>E</b></font></i><b> 0.8.10alpha</b> is an
+      <p><i><font color="#009000"><b>E</b></font></i><b> 0.8.10alpha1</b> is an
         interim non-distributed release, but supporting a more modern version
         of the E language spec. It's primary motivation is to support work on
         compiling E, but it may also be preferred by those using E for non-distributed



1.2       +4 -4      e/doc/download/0-8-10alpha/unix-bin.html

Index: unix-bin.html
===================================================================
RCS file: /cvs/e/doc/download/0-8-10alpha/unix-bin.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- unix-bin.html	2001/09/14 01:44:08	1.1
+++ unix-bin.html	2001/09/15 03:16:00	1.2
@@ -5,7 +5,7 @@
 <HEAD>
 <META HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=iso-8859-1">
 <!-- #BeginEditable "doctitle" --> 
-<TITLE>E 0.8.10alpha: Installing on Unixoids</TITLE>
+<TITLE>E 0.8.10alpha1: Installing on Unixoids</TITLE>
 <!-- #EndEditable --> 
 <meta name="Author" content="Mark S. Miller">
 <link rel=author rev=made href="mailto:markm@caplet.com" title="Mark S. Miller">
@@ -33,16 +33,16 @@
                   <!-- #BeginEditable "Path" -->/&nbsp;<a href="../index.html">download</a>&nbsp;/&nbsp;<a href="index.html">0-8-10alpha</a>&nbsp;<!-- #EndEditable --></td>
               </tr>
               <tr> 
-                <td valign="top" align="right"><!-- #BeginEditable "PrevButton" --><a href="windows-src.html"><img src="../../images/prev.gif" width="64" height="32" alt="Back to: E 0.8.10alpha: Building on Windows" border="0"></a><!-- #EndEditable --></td>
+                <td valign="top" align="right"><!-- #BeginEditable "PrevButton" --><a href="windows-src.html"><img src="../../images/prev.gif" width="64" height="32" alt="Back to: E 0.8.10alpha1: Building on Windows" border="0"></a><!-- #EndEditable --></td>
                 <td valign="bottom" align="left"><!-- #BeginEditable "FirstButton" --><!-- #EndEditable --></td>
-                <td valign="top" align="left"><!-- #BeginEditable "NextButton" --><a href="unix-src.html"><img src="../../images/next.gif" width="64" height="32" alt="On to: E 0.8.10alpha: Building on Unixoids" border="0"></a><!-- #EndEditable --></td>
+                <td valign="top" align="left"><!-- #BeginEditable "NextButton" --><a href="unix-src.html"><img src="../../images/next.gif" width="64" height="32" alt="On to: E 0.8.10alpha1: Building on Unixoids" border="0"></a><!-- #EndEditable --></td>
               </tr>
             </table>
           </TD>
           <TD ALIGN="RIGHT"> 
             <P ALIGN="RIGHT"><FONT SIZE="7"><!-- #BeginEditable "BigTitle" --><FONT SIZE="7"><B>Installing 
               </B><font size="7"><font size="7"><i><font color="#009000"><b>E</b></font></i></font><b></b><b> 
-              0.8.10alpha</b></font><B><br>
+              0.8.10alpha1</b></font><B><br>
               on Unix-Like Platforms</B></FONT><!-- #EndEditable --></FONT> 
           </TD>
         </TR>



1.2       +4 -4      e/doc/download/0-8-10alpha/unix-src.html

Index: unix-src.html
===================================================================
RCS file: /cvs/e/doc/download/0-8-10alpha/unix-src.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- unix-src.html	2001/09/14 01:44:08	1.1
+++ unix-src.html	2001/09/15 03:16:00	1.2
@@ -5,7 +5,7 @@
 <HEAD>
 <META HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=iso-8859-1">
 <!-- #BeginEditable "doctitle" --> 
-<TITLE>E 0.8.10alpha: Building on Unixoids</TITLE>
+<TITLE>E 0.8.10alpha1: Building on Unixoids</TITLE>
 <!-- #EndEditable --> 
 <meta name="Author" content="Mark S. Miller">
 <link rel=author rev=made href="mailto:markm@caplet.com" title="Mark S. Miller">
@@ -33,7 +33,7 @@
                   <!-- #BeginEditable "Path" -->/&nbsp;<a href="../index.html">download</a>&nbsp;/&nbsp;<a href="index.html">0-8-10alpha</a>&nbsp;<!-- #EndEditable --></td>
               </tr>
               <tr> 
-                <td valign="top" align="right"><!-- #BeginEditable "PrevButton" --><a href="unix-bin.html"><img src="../../images/prev.gif" width="64" height="32" alt="Back to: E 0.8.10alpha: Installing on Unixoids" border="0"></a><!-- #EndEditable --></td>
+                <td valign="top" align="right"><!-- #BeginEditable "PrevButton" --><a href="unix-bin.html"><img src="../../images/prev.gif" width="64" height="32" alt="Back to: E 0.8.10alpha1: Installing on Unixoids" border="0"></a><!-- #EndEditable --></td>
                 <td valign="bottom" align="left"><!-- #BeginEditable "FirstButton" --><!-- #EndEditable --></td>
                 <td valign="top" align="left"><!-- #BeginEditable "NextButton" --><img src="../../images/next-gray.gif" width="64" height="32"><!-- #EndEditable --></td>
               </tr>
@@ -42,7 +42,7 @@
           <TD ALIGN="RIGHT"> 
             <P ALIGN="RIGHT"><FONT SIZE="7"><!-- #BeginEditable "BigTitle" --><FONT SIZE="7"><B>Building 
               </B><font size="7"><font size="7"><font size="7"><i><font color="#009000"><b>E</b></font></i></font><b></b><b> 
-              0.8.10alpha</b></font></font><B><br>
+              0.8.10alpha1</b></font></font><B><br>
               on </B><font size="7"><b>Unix-Like Platforms</b></font></FONT><!-- #EndEditable --></FONT> 
           </TD>
         </TR>
@@ -83,7 +83,7 @@
         </table>
       </div>
       <h1>Building E</h1>
-      <p>Unpack <a href="E-src-0.8.10alpha.tar.gz">this</a> into a directory, cd 
+      <p>Unpack <a href="E-src-0.8.10alpha1.tar.gz">this</a> into a directory, cd 
         into &quot;<code>e/src</code>&quot; and say &quot;<code>make</code>&quot;. 
         Then proceed to the <a href="unix-bin.html">installation instructions</a>, 
         treating <code>&lt;directory&gt;/export/dist</code> as the <code>EHOME</code>.</p>



1.2       +5 -5      e/doc/download/0-8-10alpha/windows-bin.html

Index: windows-bin.html
===================================================================
RCS file: /cvs/e/doc/download/0-8-10alpha/windows-bin.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- windows-bin.html	2001/09/14 01:44:08	1.1
+++ windows-bin.html	2001/09/15 03:16:00	1.2
@@ -5,7 +5,7 @@
 <HEAD>
 <META HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=iso-8859-1">
 <!-- #BeginEditable "doctitle" --> 
-<TITLE>E 0.8.10alpha: Installing on Windows</TITLE>
+<TITLE>E 0.8.10alpha1: Installing on Windows</TITLE>
 <!-- #EndEditable --> 
 <meta name="Author" content="Mark S. Miller">
 <link rel=author rev=made href="mailto:markm@caplet.com" title="Mark S. Miller">
@@ -35,14 +35,14 @@
               <tr> 
                 <td valign="top" align="right"><!-- #BeginEditable "PrevButton" --><img src="../../images/prev-gray.gif" width="64" height="32"><!-- #EndEditable --></td>
                 <td valign="bottom" align="left"><!-- #BeginEditable "FirstButton" --><!-- #EndEditable --></td>
-                <td valign="top" align="left"><!-- #BeginEditable "NextButton" --><a href="windows-src.html"><img src="../../images/next.gif" width="64" height="32" alt="On to: E 0.8.10alpha: Building on Windows" border="0"></a><!-- #EndEditable --></td>
+                <td valign="top" align="left"><!-- #BeginEditable "NextButton" --><a href="windows-src.html"><img src="../../images/next.gif" width="64" height="32" alt="On to: E 0.8.10alpha1: Building on Windows" border="0"></a><!-- #EndEditable --></td>
               </tr>
             </table>
           </TD>
           <TD ALIGN="RIGHT"> 
             <P ALIGN="RIGHT"><FONT SIZE="7"><!-- #BeginEditable "BigTitle" --><FONT SIZE="7"><B>Installing 
               </B><font size="7"><i><font color="#009000"><b>E</b></font></i></font><b></b><B> 
-              0.8.10alpha<br>
+              0.8.10alpha1<br>
               on Windows</B></FONT><!-- #EndEditable --></FONT> 
           </TD>
         </TR>
@@ -88,7 +88,7 @@
         and the file &quot;<code>C:/usr/local/bin/e.exe</code>&quot;. (If you 
         have no other use for the directory &quot;<code>C:/usr</code>&quot;, as 
         is likely, you should remove it as well.)</p>
-      <p>For MSWindows users, we recommend downloading the <a href="E-win32-0.8.10alpha.zip">zip 
+      <p>For MSWindows users, we recommend downloading the <a href="E-win32-0.8.10alpha1.zip">zip 
         of E</a> binary distribution.</p>
       <p>Unpack the distribution into the directory you wish to install it into, 
         such as &quot;<code>c:/Program Files/erights.org</code>&quot; and read 
@@ -101,7 +101,7 @@
         <table border="2" cellpadding="4" bgcolor="#C0C0C0">
           <tr bgcolor="#3333FF"> 
             <td> 
-              <div align="center"><font color="#FFFFFF"><b>Welcome to E 0.8.10alpha</b></font></div>
+              <div align="center"><font color="#FFFFFF"><b>Welcome to E 0.8.10alpha1</b></font></div>
             </td>
           </tr>
           <tr bgcolor="#CCCCCC"> 



1.2       +5 -5      e/doc/download/0-8-10alpha/windows-src.html

Index: windows-src.html
===================================================================
RCS file: /cvs/e/doc/download/0-8-10alpha/windows-src.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- windows-src.html	2001/09/14 01:44:08	1.1
+++ windows-src.html	2001/09/15 03:16:00	1.2
@@ -5,7 +5,7 @@
 <HEAD>
 <META HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=iso-8859-1">
 <!-- #BeginEditable "doctitle" --> 
-<TITLE>E 0.8.10alpha: Building on Windows</TITLE>
+<TITLE>E 0.8.10alpha1: Building on Windows</TITLE>
 <!-- #EndEditable --> 
 <meta name="Author" content="Mark S. Miller">
 <link rel=author rev=made href="mailto:markm@caplet.com" title="Mark S. Miller">
@@ -33,16 +33,16 @@
                   <!-- #BeginEditable "Path" -->/&nbsp;<a href="../index.html">download</a>&nbsp;/&nbsp;<a href="index.html">0-8-10alpha</a>&nbsp;<!-- #EndEditable --></td>
               </tr>
               <tr> 
-                <td valign="top" align="right"><!-- #BeginEditable "PrevButton" --><a href="windows-bin.html"><img src="../../images/prev.gif" width="64" height="32" alt="Back to: E 0.8.10alpha: Installing on Windows" border="0"></a><!-- #EndEditable --></td>
+                <td valign="top" align="right"><!-- #BeginEditable "PrevButton" --><a href="windows-bin.html"><img src="../../images/prev.gif" width="64" height="32" alt="Back to: E 0.8.10alpha1: Installing on Windows" border="0"></a><!-- #EndEditable --></td>
                 <td valign="bottom" align="left"><!-- #BeginEditable "FirstButton" --><!-- #EndEditable --></td>
-                <td valign="top" align="left"><!-- #BeginEditable "NextButton" --><a href="unix-bin.html"><img src="../../images/next.gif" width="64" height="32" alt="On to: E 0.8.10alpha: Installing on Unixoids" border="0"></a><!-- #EndEditable --></td>
+                <td valign="top" align="left"><!-- #BeginEditable "NextButton" --><a href="unix-bin.html"><img src="../../images/next.gif" width="64" height="32" alt="On to: E 0.8.10alpha1: Installing on Unixoids" border="0"></a><!-- #EndEditable --></td>
               </tr>
             </table>
           </TD>
           <TD ALIGN="RIGHT"> 
             <P ALIGN="RIGHT"><FONT SIZE="7"><!-- #BeginEditable "BigTitle" --><FONT SIZE="7"><B>Building 
               </B><font size="7"><font size="7"><i><font color="#009000"><b>E</b></font></i></font><b></b><b> 
-              0.8.10alpha</b></font><B><br>
+              0.8.10alpha1</b></font><B><br>
               on Windows</B></FONT><!-- #EndEditable --></FONT> 
           </TD>
         </TR>
@@ -77,7 +77,7 @@
         the BYacc/J parser generator, and the zipping tools.</p>
       <h1><a name="src"></a>The <font color="#009000"><em>E</em></font> Source 
         Distribution</h1>
-      <p>For Windows users, we recommend downloading the <a href="E-src-0.8.10alpha.zip">zip 
+      <p>For Windows users, we recommend downloading the <a href="E-src-0.8.10alpha1.zip">zip 
         of E</a> source distribution. </p>
       <h2><a name="compile"></a>Compilation Notes</h2>
       <p>There are still some deprecated methods used in this release. You can