]> granicus.if.org Git - python/log
python
26 years agoUpdate note about latex2html version required.
Fred Drake [Fri, 15 May 1998 17:03:00 +0000 (17:03 +0000)]
Update note about latex2html version required.

26 years agoAdd support for the Macintosh Library Modules document.
Fred Drake [Fri, 15 May 1998 17:02:10 +0000 (17:02 +0000)]
Add support for the Macintosh Library Modules document.

26 years agoRevise comment about \let support a little to more accurately reflect the
Fred Drake [Fri, 15 May 1998 16:59:38 +0000 (16:59 +0000)]
Revise comment about \let support a little to more accurately reflect the
support that's offered.

26 years agoIgnore the mac/ directory....
Fred Drake [Fri, 15 May 1998 16:56:44 +0000 (16:56 +0000)]
Ignore the mac/ directory....

26 years agoUpdate to use the output names used by latex2html for the Python Reference
Fred Drake [Fri, 15 May 1998 16:18:21 +0000 (16:18 +0000)]
Update to use the output names used by latex2html for the Python Reference
Manual; the old FrameMaker names no longer apply.

26 years agoExtend handling for \let a bit, to also allow \let\something=<character>. We
Fred Drake [Fri, 15 May 1998 13:45:54 +0000 (13:45 +0000)]
Extend handling for \let a bit, to also allow \let\something=<character>.  We
still don't support things like \let^^M=\something, where ^^M could actually be
any active character.  Print a decent warning if we find one we can't handle.

26 years agoRemove debugging echo.
Fred Drake [Fri, 15 May 1998 13:38:21 +0000 (13:38 +0000)]
Remove debugging echo.

26 years agodo_cmd_let(): Simple implementation to allow \let to be used to establish
Fred Drake [Fri, 15 May 1998 04:28:37 +0000 (04:28 +0000)]
do_cmd_let():  Simple implementation to allow \let to be used to establish
synonyms for macros.  This supports:

\let\newname = \oldname
\let\newname\oldname

This is useful sometimes, and can at least avoid real errors at other times.

26 years agoImproved version of patch for HPUX from David Arnold.
Guido van Rossum [Thu, 14 May 1998 21:01:27 +0000 (21:01 +0000)]
Improved version of patch for HPUX from David Arnold.

26 years agoAdded support for \developer, \developers, \developersaddress.
Fred Drake [Thu, 14 May 1998 21:00:28 +0000 (21:00 +0000)]
Added support for \developer, \developers, \developersaddress.

26 years agoAdded definitions for \developer, \developers, \developersaddress.
Fred Drake [Thu, 14 May 1998 20:56:31 +0000 (20:56 +0000)]
Added definitions for \developer, \developers, \developersaddress.

Ask Guido if you really want to know why.  ;-)

26 years agoFix the fix to allow the .tex document sources not live in ".".
Fred Drake [Thu, 14 May 1998 20:36:49 +0000 (20:36 +0000)]
Fix the fix to allow the .tex document sources not live in ".".

26 years agoMostly spurious change to ensure that everyone's version of this picks up the
Fred Drake [Thu, 14 May 1998 20:07:10 +0000 (20:07 +0000)]
Mostly spurious change to ensure that everyone's version of this picks up the
execute bit.... problem discovered by Guido.

26 years agoDon't run tools/toc2bkm.py unless we're building PDF.
Fred Drake [Thu, 14 May 1998 20:03:14 +0000 (20:03 +0000)]
Don't run tools/toc2bkm.py unless we're building PDF.

Change the way TEXINPUTS gets defined to ensure that the directory containing
the main document file comes before any other dir, to allow documents to have
files that "override" like-named files elsewhere on the search path.  Guido
discovered we needed this.

26 years agoUpdated markup style (got rid of \verb@...@, mostly).
Fred Drake [Thu, 14 May 1998 19:37:06 +0000 (19:37 +0000)]
Updated markup style (got rid of \verb@...@, mostly).

26 years agoAdd pointer to Misc/HPUX-NOTES.
Guido van Rossum [Thu, 14 May 1998 15:47:35 +0000 (15:47 +0000)]
Add pointer to Misc/HPUX-NOTES.

26 years agoAdd an index entry.
Fred Drake [Thu, 14 May 1998 15:16:12 +0000 (15:16 +0000)]
Add an index entry.

Bow to font lock.

26 years agoWhen a .o file is an absolute pathname, assume it's a file for which
Guido van Rossum [Thu, 14 May 1998 02:37:45 +0000 (02:37 +0000)]
When a .o file is an absolute pathname, assume it's a file for which
we have no .c source.

26 years agostrop_replace(): balk if the pattern string is empty.
Guido van Rossum [Thu, 14 May 1998 02:36:29 +0000 (02:36 +0000)]
strop_replace(): balk if the pattern string is empty.

26 years agowhichmodule(): remove redundant PyErr_Clear(); add explicit setting
Guido van Rossum [Thu, 14 May 1998 02:34:46 +0000 (02:34 +0000)]
whichmodule(): remove redundant PyErr_Clear(); add explicit setting
of error when sys.modules isn't there.

26 years agoDon't delete glmodule.c on 'make clobber' (it's a checked in file!).
Guido van Rossum [Thu, 14 May 1998 02:33:57 +0000 (02:33 +0000)]
Don't delete glmodule.c on 'make clobber' (it's a checked in file!).

26 years agoNew APIs for embedding applications that want to add their own entries
Guido van Rossum [Thu, 14 May 1998 02:32:54 +0000 (02:32 +0000)]
New APIs for embedding applications that want to add their own entries
to the table of built-in modules.  This should normally be called
*before* Py_Initialize().  When the malloc() or realloc() call fails,
-1 is returned and the existing table is unchanged.

After a similar function by Just van Rossum.

int PyImport_ExtendInittab(struct _inittab *newtab);
int PyImport_AppendInittab(char *name, void (*initfunc)());

26 years agoRemove unnecessary PyErr_Clear().
Guido van Rossum [Thu, 14 May 1998 02:31:26 +0000 (02:31 +0000)]
Remove unnecessary PyErr_Clear().

26 years agoSince PyDict_GetItem() can't raise an exception any more, there's no
Guido van Rossum [Thu, 14 May 1998 02:16:20 +0000 (02:16 +0000)]
Since PyDict_GetItem() can't raise an exception any more, there's no
need to call PyErr_Clear() when it returns NULL.

26 years agoSince PyDict_GetItem() can't raise an exception any more, there's no
Guido van Rossum [Thu, 14 May 1998 01:49:48 +0000 (01:49 +0000)]
Since PyDict_GetItem() can't raise an exception any more, there's no
need to cxall PyErr_Clear() when it returns NULL.

26 years agoMake sure that PyDict_GetItem[String]() *never* raises an exception.
Guido van Rossum [Thu, 14 May 1998 01:00:51 +0000 (01:00 +0000)]
Make sure that PyDict_GetItem[String]() *never* raises an exception.
If the argument is not a dictionary, simply return NULL.  If the
hash() on the key fails, clear the error.

26 years agoRemove a redundant statement from halfbinop().
Guido van Rossum [Wed, 13 May 1998 22:02:16 +0000 (22:02 +0000)]
Remove a redundant statement from halfbinop().

26 years agoFix bug reported by Harri Pasanen: gzip + cPickle doesn't work. The
Jeremy Hylton [Wed, 13 May 1998 21:49:58 +0000 (21:49 +0000)]
Fix bug reported by Harri Pasanen: gzip + cPickle doesn't work.  The
problem was a couple of bugs in the readline implementation.

1. Include the '\n' in the string returned by readline
2. Bug calculating new buffer size in _unread

Also remove unncessary import of StringIO

26 years agoTim's quicksort on May 13.
Guido van Rossum [Wed, 13 May 1998 21:21:24 +0000 (21:21 +0000)]
Tim's quicksort on May 13.

26 years agoTim's quicksort on May 10.
Guido van Rossum [Wed, 13 May 1998 21:20:49 +0000 (21:20 +0000)]
Tim's quicksort on May 10.

26 years agoFrom: conrad@cgl.ucsf.edu (Conrad Huang %CGL)
Guido van Rossum [Wed, 13 May 1998 20:13:24 +0000 (20:13 +0000)]
From: conrad@cgl.ucsf.edu (Conrad Huang %CGL)
To: python-list@cwi.nl
Date: 13 May 98 18:33:11 GMT

I think I found a bug in CGIHTTPServer.py.  (Does anyone care? :-)
I was trying to use it as the web server for uploading files.
Python CGI scripts (using the CGI module) that worked for other
servers (e.g., Netscape Enterprise server) hang when run from
CGIHTTPServer.  The problem is that the content type parameters,
in particular the boundary parameter, were not passed through to
the CGI scripts, thus making the MIME parsing code choke.

My simple-minded fix is:

% diff CGIHTTPServer.py /usr/local/lib/python1.5/CGIHTTPServer.py
137,140c136
<           if self.headers.typeheader is None:
<               env['CONTENT_TYPE'] = self.headers.type
<           else:
<               env['CONTENT_TYPE'] = self.headers.typeheader
---
>           env['CONTENT_TYPE'] = self.headers.type

Conrad

26 years agoOK, here's a different way to implement the same thing -- this version
Guido van Rossum [Tue, 12 May 1998 22:45:43 +0000 (22:45 +0000)]
OK, here's a different way to implement the same thing -- this version
also supports filenames with multiple spaces in their name :-)

26 years agoSupport filenames with spaces in their names (for non-Mac ftp servers).
Guido van Rossum [Tue, 12 May 1998 22:36:11 +0000 (22:36 +0000)]
Support filenames with spaces in their names (for non-Mac ftp servers).

This patch must hold the world record for living in my inbox:

  From: John Ehresman <jehresma@dsg.harvard.edu>
  Date: Wed, 23 Aug 1995 16:07:11 -0400

He provided a fix for the version that comes with Python 1.3:
ftpmirror.py revision 1.1...  And it was still relevant!

26 years agoDELETE_FAST should issue an exception when the local variable is undefined.
Guido van Rossum [Tue, 12 May 1998 20:27:36 +0000 (20:27 +0000)]
DELETE_FAST should issue an exception when the local variable is undefined.

26 years agoAdd comments about release status.
Fred Drake [Tue, 12 May 1998 16:50:32 +0000 (16:50 +0000)]
Add comments about release status.

26 years agoAdd Bill Janssen's notes on configuring threads.
Guido van Rossum [Tue, 12 May 1998 15:29:18 +0000 (15:29 +0000)]
Add Bill Janssen's notes on configuring threads.

26 years agoReplace all calls to fprintf(stderr, ...) with calls to PySys_WriteStderr(...).
Guido van Rossum [Tue, 12 May 1998 15:02:41 +0000 (15:02 +0000)]
Replace all calls to fprintf(stderr, ...) with calls to PySys_WriteStderr(...).

26 years agoNew APIs to write to sys.stdout or sys.stderr using a printf-like interface.
Guido van Rossum [Tue, 12 May 1998 14:59:24 +0000 (14:59 +0000)]
New APIs to write to sys.stdout or sys.stderr using a printf-like interface.
Adapted from code submitted by Just van Rossum.

   PySys_WriteStdout(format, ...)
   PySys_WriteStderr(format, ...)

      The first function writes to sys.stdout; the second to sys.stderr.  When
      there is a problem, they write to the real (C level) stdout or stderr;
      no exceptions are raised (but a pending exception may be cleared when a
      new exception is caught).

      Both take a printf-style format string as their first argument followed
      by a variable length argument list determined by the format string.

      *** WARNING ***

      The format should limit the total size of the formatted output string to
      1000 bytes.  In particular, this means that no unrestricted "%s" formats
      should occur; these should be limited using "%.<N>s where <N> is a
      decimal number calculated so that <N> plus the maximum size of other
      formatted text does not exceed 1000 bytes.  Also watch out for "%f",
      which can print hundreds of digits for very large numbers.

26 years agoAdd
Guido van Rossum [Tue, 12 May 1998 14:58:52 +0000 (14:58 +0000)]
Add
   PySys_WriteStdout(format, ...)
   PySys_WriteStderr(format, ...)

26 years agoTrivial little change: timer tokens shouldn't have a Print() function,
Guido van Rossum [Tue, 12 May 1998 14:36:19 +0000 (14:36 +0000)]
Trivial little change: timer tokens shouldn't have a Print() function,
they should have a Repr() function.

26 years agoReduce memory requirements.
Guido van Rossum [Tue, 12 May 1998 13:21:31 +0000 (13:21 +0000)]
Reduce memory requirements.

26 years agoSwitch to .tgz instead of .tar.gz to appease Windows users.
Fred Drake [Mon, 11 May 1998 21:10:15 +0000 (21:10 +0000)]
Switch to .tgz instead of .tar.gz to appease Windows users.

Clean up the clean & clobber targets.

26 years agoUse .tgz instead of .tar.gz for the output file name.
Fred Drake [Mon, 11 May 1998 21:08:39 +0000 (21:08 +0000)]
Use .tgz instead of .tar.gz for the output file name.

26 years agoChange ignored extension .tar.gz to .tgz.
Fred Drake [Mon, 11 May 1998 21:07:52 +0000 (21:07 +0000)]
Change ignored extension .tar.gz to .tgz.

26 years agoIgnore intermediate files.
Fred Drake [Mon, 11 May 1998 21:06:18 +0000 (21:06 +0000)]
Ignore intermediate files.

26 years agoSet the right page size in the PDF output.
Fred Drake [Mon, 11 May 1998 20:42:54 +0000 (20:42 +0000)]
Set the right page size in the PDF output.

26 years agoAdd --letter option, similar to --a4. This is a no-op, but can be used from
Fred Drake [Mon, 11 May 1998 20:40:24 +0000 (20:40 +0000)]
Add --letter option, similar to --a4.  This is a no-op, but can be used from
a Makefile:  mkhowto.sh --$(PAPER).

26 years agoAdd the clean, clobber targets here for this directory.
Fred Drake [Mon, 11 May 1998 19:54:57 +0000 (19:54 +0000)]
Add the clean, clobber targets here for this directory.

26 years agoReverted the last change; the extra cruft is harmless for formatted versions,
Fred Drake [Mon, 11 May 1998 19:51:11 +0000 (19:51 +0000)]
Reverted the last change; the extra cruft is harmless for formatted versions,
and allows the info to work through this section.

26 years agoDon't be so ugly as to use "set -x" to get the executed commands printed.
Fred Drake [Mon, 11 May 1998 19:06:26 +0000 (19:06 +0000)]
Don't be so ugly as to use "set -x" to get the executed commands printed.

26 years agoAdded a section about documentation for the Mac modules.
Fred Drake [Mon, 11 May 1998 19:05:36 +0000 (19:05 +0000)]
Added a section about documentation for the Mac modules.

26 years agoOops, better add it to the usage message!
Fred Drake [Mon, 11 May 1998 19:04:56 +0000 (19:04 +0000)]
Oops, better add it to the usage message!

26 years agoAdd easy-to-use support for A4 paper.
Fred Drake [Mon, 11 May 1998 19:04:06 +0000 (19:04 +0000)]
Add easy-to-use support for A4 paper.

26 years agoRemove the tarhtml target; not useful from the sub-make.
Fred Drake [Mon, 11 May 1998 18:54:02 +0000 (18:54 +0000)]
Remove the tarhtml target; not useful from the sub-make.

26 years agoPass the release number to the tools/mktarball.sh script.
Fred Drake [Mon, 11 May 1998 18:53:07 +0000 (18:53 +0000)]
Pass the release number to the tools/mktarball.sh script.

Nits.

26 years agoAccept the release number on the command line instead of hardcoding it.
Fred Drake [Mon, 11 May 1998 18:52:24 +0000 (18:52 +0000)]
Accept the release number on the command line instead of hardcoding it.

26 years agoDon't be so ugly as to use "set -x" to get the executed commands printed.
Fred Drake [Mon, 11 May 1998 18:41:16 +0000 (18:41 +0000)]
Don't be so ugly as to use "set -x" to get the executed commands printed.

26 years agodo_cmd_kwindex(): Re-implement now that \kwindex is used again (ref man).
Fred Drake [Mon, 11 May 1998 18:31:17 +0000 (18:31 +0000)]
do_cmd_kwindex():  Re-implement now that \kwindex is used again (ref man).

26 years agoUpdate some of the comments.
Fred Drake [Mon, 11 May 1998 18:25:46 +0000 (18:25 +0000)]
Update some of the comments.

Update the .tar.gz targets so that they work from the top level.

Reinstate the api, ext, lib, ref, and tut targets.

26 years agoIn package Override, use the getcwd() function from the Cwd module instead of
Fred Drake [Mon, 11 May 1998 18:23:35 +0000 (18:23 +0000)]
In package Override, use the getcwd() function from the Cwd module instead of
the one from Override.pm (part of latex2html).

Absolutize the TEXINPUTS environment variable, since we can't count on
latex2html doing it for us (even though I sent in a patch, and it really
should).

26 years agoChanged some comments.... no longer mention FrameMaker.
Fred Drake [Mon, 11 May 1998 16:31:32 +0000 (16:31 +0000)]
Changed some comments.... no longer mention FrameMaker.

26 years agoparser_compare_nodes(): Corrected a minor type error; eliminate one GCC
Fred Drake [Mon, 11 May 1998 03:31:16 +0000 (03:31 +0000)]
parser_compare_nodes():  Corrected a minor type error; eliminate one GCC
warning (at least under Linux).

26 years agoAdd a few doc strings.
Guido van Rossum [Sun, 10 May 1998 18:27:29 +0000 (18:27 +0000)]
Add a few doc strings.

26 years agobenchmark for list.sort()
Guido van Rossum [Sun, 10 May 1998 18:20:05 +0000 (18:20 +0000)]
benchmark for list.sort()

26 years agoImplement round() slightly different, so that for negative ndigits no
Guido van Rossum [Sat, 9 May 1998 14:42:25 +0000 (14:42 +0000)]
Implement round() slightly different, so that for negative ndigits no
additional errors happen in the last step.  The trick is to avoid
division by 0.1**n -- multiply by 10.0**n instead.

26 years agoFix by Sean Reifschneider:
Guido van Rossum [Fri, 8 May 1998 21:52:55 +0000 (21:52 +0000)]
Fix by Sean Reifschneider:
  - When facility not specified to syslog() method, use default from openlog()
    (This is how it was claimed to work in the documentation)
  - Potential resource leak of o_ident, now cleaned up in closelog()
  - Minor comment accuracy fix.

26 years agoAdd the specific sed statement to recover the second output file to
Guido van Rossum [Fri, 8 May 1998 21:04:06 +0000 (21:04 +0000)]
Add the specific sed statement to recover the second output file to
the comments.

26 years agoMake Tim O'Malley's requested change: in FieldStorage.__init__(), when
Guido van Rossum [Fri, 8 May 1998 19:55:51 +0000 (19:55 +0000)]
Make Tim O'Malley's requested change: in FieldStorage.__init__(), when
method='GET', always get the query string from environ['QUERY_STRING']
or sys.argv[1] -- ignore an explicitly passed in fp.

26 years agoFix a comment.
Fred Drake [Fri, 8 May 1998 15:43:08 +0000 (15:43 +0000)]
Fix a comment.

Avoid extra level of recursion in the paper-*/ directories.

Added the "info" target to use the subdir.  Partparse, however, is broken
again.

26 years agoNo longer needed.
Fred Drake [Fri, 8 May 1998 15:41:23 +0000 (15:41 +0000)]
No longer needed.

26 years agoRemove unneeded line.
Fred Drake [Fri, 8 May 1998 15:40:46 +0000 (15:40 +0000)]
Remove unneeded line.

26 years agoUse \ldots, not \dots. The info process doesn't know about \dots.
Fred Drake [Fri, 8 May 1998 15:39:40 +0000 (15:39 +0000)]
Use \ldots, not \dots.  The info process doesn't know about \dots.

26 years agoAdjust to new file layout.
Fred Drake [Fri, 8 May 1998 15:37:13 +0000 (15:37 +0000)]
Adjust to new file layout.

26 years agoMove the rules to build the info files here.
Fred Drake [Fri, 8 May 1998 15:36:36 +0000 (15:36 +0000)]
Move the rules to build the info files here.

26 years agoRelocating file to Doc/info.
Fred Drake [Fri, 8 May 1998 15:35:36 +0000 (15:35 +0000)]
Relocating file to Doc/info.

26 years agoAdded URLs for zlib's home page and the Windows DLL's home page .
Guido van Rossum [Fri, 8 May 1998 14:56:29 +0000 (14:56 +0000)]
Added URLs for zlib's home page and the Windows DLL's home page .

26 years agoexec is a statement, not a function!
Guido van Rossum [Fri, 8 May 1998 13:27:38 +0000 (13:27 +0000)]
exec is a statement, not a function!

26 years agol2h target: Do the "right thing" regarding the paper-*/ subdirs as the other
Fred Drake [Fri, 8 May 1998 04:02:42 +0000 (04:02 +0000)]
l2h target:  Do the "right thing" regarding the paper-*/ subdirs as the other
"big" targets.  Fix is to set the TEXINPUTS on the command line of the
sub-make.

26 years agoSome versions of latex2html don't automatically append the .tex extension to
Fred Drake [Fri, 8 May 1998 04:00:56 +0000 (04:00 +0000)]
Some versions of latex2html don't automatically append the .tex extension to
the name of the main .tex source file if it's not in the current directory.

26 years ago$(KPSEWHICH): Use the older style of calling kpsewhich with the arg
Fred Drake [Fri, 8 May 1998 03:46:38 +0000 (03:46 +0000)]
$(KPSEWHICH):  Use the older style of calling kpsewhich with the arg
specifying *which* type of path to search.  This works for both
teTeX 0.4 and 0.9.  This is what we call portability these days!  ;-)

26 years ago/bin/sed works on both Solaris and RedHat Linux; /usr/bin/sed does not.
Fred Drake [Fri, 8 May 1998 03:42:23 +0000 (03:42 +0000)]
/bin/sed works on both Solaris and RedHat Linux; /usr/bin/sed does not.

26 years agoOops! Must have deleted a word by accident before the last check-in of this
Fred Drake [Fri, 8 May 1998 02:00:48 +0000 (02:00 +0000)]
Oops!  Must have deleted a word by accident before the last check-in of this
file; "make" (the 'all' target) became a no-op!

Now works as previously described.

26 years agoBe a little more robust handling filenames.
Fred Drake [Thu, 7 May 1998 21:20:39 +0000 (21:20 +0000)]
Be a little more robust handling filenames.

26 years agoIgnore the webchecker turd.
Fred Drake [Thu, 7 May 1998 20:13:21 +0000 (20:13 +0000)]
Ignore the webchecker turd.

26 years agoAdded the webcheck target here.
Fred Drake [Thu, 7 May 1998 20:00:59 +0000 (20:00 +0000)]
Added the webcheck target here.

26 years agoCleaned out some more cruft.
Fred Drake [Thu, 7 May 1998 19:30:16 +0000 (19:30 +0000)]
Cleaned out some more cruft.

Added some new cruft.

For some of the "big" targets, force things to happen in the "right"
subdirectory, i.e., "make" will build the DVI and PostScript files in the
paper-letter/ directory, and "make PAPER=a4" will build DVI and PostScript
files in the paper-a4/ directory.

Probably still needs some restructuring.

26 years agoSome cleanup, added clean & clobber targets.
Fred Drake [Thu, 7 May 1998 19:27:40 +0000 (19:27 +0000)]
Some cleanup, added clean & clobber targets.

26 years agoAdd support for a --pdf option to cause a PDF file to be created instead;
Fred Drake [Thu, 7 May 1998 17:28:42 +0000 (17:28 +0000)]
Add support for a --pdf option to cause a PDF file to be created instead;
most of the processing is the same and has to be done anyway.

26 years agoMarkup consistency.
Fred Drake [Thu, 7 May 1998 17:27:32 +0000 (17:27 +0000)]
Markup consistency.

Using \input instead of \include to avoid extra .aux files from being
generated.

26 years agoSmall updates.
Fred Drake [Thu, 7 May 1998 16:32:56 +0000 (16:32 +0000)]
Small updates.

26 years agoAdd check to conjugate() that there are no excess arguments.
Guido van Rossum [Thu, 7 May 1998 16:29:10 +0000 (16:29 +0000)]
Add check to conjugate() that there are no excess arguments.

26 years agoAMK's revised version of the previous patch.
Guido van Rossum [Thu, 7 May 1998 15:32:44 +0000 (15:32 +0000)]
AMK's revised version of the previous patch.

26 years agoPreliminary convenience Makefile.
Fred Drake [Thu, 7 May 1998 15:12:51 +0000 (15:12 +0000)]
Preliminary convenience Makefile.

26 years agoBetter go ahead and remove some cruftiness....
Fred Drake [Thu, 7 May 1998 15:05:56 +0000 (15:05 +0000)]
Better go ahead and remove some cruftiness....

26 years agoSupport the new directory structure.
Fred Drake [Thu, 7 May 1998 15:03:25 +0000 (15:03 +0000)]
Support the new directory structure.

Some targets may be a little raw, but the basic formatting targets are all
tested, primarily for use from the subdirs.  There are probably a few
gotchas, and the paper-*/ directories could use "helper" Makefiles.

26 years agoRelocating file to Doc/html.
Fred Drake [Thu, 7 May 1998 15:00:46 +0000 (15:00 +0000)]
Relocating file to Doc/html.

26 years agoIgnore .tar.gz files in this directory.
Fred Drake [Thu, 7 May 1998 14:56:41 +0000 (14:56 +0000)]
Ignore .tar.gz files in this directory.

26 years agoDon't ignore the html/ directory.
Fred Drake [Thu, 7 May 1998 14:54:21 +0000 (14:54 +0000)]
Don't ignore the html/ directory.

26 years agoNew script to drive HTML generation.
Fred Drake [Thu, 7 May 1998 14:53:55 +0000 (14:53 +0000)]
New script to drive HTML generation.

26 years agoIgnore subdirectories if your name is "cvs".
Fred Drake [Thu, 7 May 1998 14:51:53 +0000 (14:51 +0000)]
Ignore subdirectories if your name is "cvs".