]> granicus.if.org Git - python/log
python
26 years agoFixed typo in docstring: suffixes_map --> suffix_map.
Fred Drake [Mon, 18 May 1998 16:05:24 +0000 (16:05 +0000)]
Fixed typo in docstring:  suffixes_map --> suffix_map.

26 years agoSubject: bug fixes for imaplib.py
Guido van Rossum [Mon, 18 May 1998 14:39:42 +0000 (14:39 +0000)]
Subject: bug fixes for imaplib.py
From: Piers Lauder <piers@staff.cs.usyd.edu.au>
To: Python List <python-list@cwi.nl>
Date: Mon, 18 May 1998 09:51:53 +1000

Following is a context diff for imaplib.py in the Python1.5.1 distribution.
It fixes 2 bugs. One to do with argument quoting, and the other to do with
caching of un-tagged responses. Apologies for its size.

26 years agoAdd file extension .xml, mapping it to text/xml.
Guido van Rossum [Mon, 18 May 1998 14:25:08 +0000 (14:25 +0000)]
Add file extension .xml, mapping it to text/xml.

26 years agoRemove use of RTLD_GLOBAL.
Guido van Rossum [Mon, 18 May 1998 13:42:45 +0000 (13:42 +0000)]
Remove use of RTLD_GLOBAL.

26 years agoFix another oldie (item (b) only):
Guido van Rossum [Sat, 16 May 1998 02:11:10 +0000 (02:11 +0000)]
Fix another oldie (item (b) only):

Date:    Fri, 20 Dec 1996 14:47:50 +0100
From:    Lele Gaifax <lele@nautilus.eclipse.it>
To:      Python List <python-list@cwi.nl>
Subject: Typos in ref manual

Hi all,
browsing the reference manual I noticed what seem two small errors:
  a) in the list of keywords (section 2.3.1) 'exec' is missing
  b) in the Operator Precedence table (5.12) the comparison operators
     include '=', but probably '==' was intended.
Hope this help,
lele.

26 years agoInstall config.h.
Guido van Rossum [Sat, 16 May 1998 01:51:49 +0000 (01:51 +0000)]
Install config.h.
Adapt to new build conventions (get rid of Release directory).

26 years agoAnother veeeeeery old patch...
Guido van Rossum [Fri, 15 May 1998 22:04:07 +0000 (22:04 +0000)]
Another veeeeeery old patch...

Date:    Thu, 14 Sep 1995 12:18:20 -0400
From:    Alan Morse <alan@dvcorp.com>
To:      python-list@cwi.nl
Subject: getargs bug in 1.2 and 1.3 BETA

We have found a bug in the part of the getargs code that we added
and submitted, and which was incorporated into 1.1.

The parsing of "O?" format specifiers is not handled correctly;
there is no "else" for the "if" and therefore it can never fail.
What's worse, the advancing of the varargs pointer is not
handled properly, so from then on it is out of sync, wreaking
all sorts of havoc. (If it had failed properly, then the out-of-sync
varargs would not have been an issue.)

Below is the context diff for the change.

Note that I have made a few stylistic changes beyond adding the
else case, namely:

1) Making the "O" case follow the convention established by the other
format specifiers of getting all their vararg arguments before
performing the test, rather than getting some before and some after
the test passes.

2) Making the logic of the tests parallel, so the "if" part indicates
that the format is accepted and the "else" part indicates that the
format has failed. They were inconsistent with each other and with the
the other format specifiers.

-Alan Morse (amorse@dvcorp.com)

26 years agoChange the output names. Do away with the Release and Debug
Guido van Rossum [Fri, 15 May 1998 20:26:31 +0000 (20:26 +0000)]
Change the output names.  Do away with the Release and Debug
subdirectories.

All final products go into the current directory (i.e., PCbuild).

Object files go into temp-release and temp-debug.

Debug versions of DLLs have _d appended to their basename, e.g. the
debug version of python15.dll is python15_d.dll, the debug version of
python.exe is python_d.exe, and the debug version of parser.pyd is
parser_d.pyd.  (See corresponding patch to importdl.c.)  Uniformly
changed all extension modules to use .pyd, not .dll.

26 years agoIn debug mode on MS Windows, DLLs are called foo_d.pyd or foo_d.dll.
Guido van Rossum [Fri, 15 May 1998 20:22:08 +0000 (20:22 +0000)]
In debug mode on MS Windows, DLLs are called foo_d.pyd or foo_d.dll.

26 years agoAdd some symbols. Remove the LIBRARY statement at the top (and the
Guido van Rossum [Fri, 15 May 1998 20:04:21 +0000 (20:04 +0000)]
Add some symbols.  Remove the LIBRARY statement at the top (and the
commented-out CODE/DATA statements).

26 years agoSmall change to the l2h target allowing the output dir, $(HTMLDIR), to be
Fred Drake [Fri, 15 May 1998 17:50:32 +0000 (17:50 +0000)]
Small change to the l2h target allowing the output dir, $(HTMLDIR), to be
a sibling of the html/ directory in the distribution.

26 years agoUpdate to use latex2html 98.1p5.
Fred Drake [Fri, 15 May 1998 17:14:17 +0000 (17:14 +0000)]
Update to use latex2html 98.1p5.

26 years agoUpdate to use latex2html 98.1p5.
Fred Drake [Fri, 15 May 1998 17:13:08 +0000 (17:13 +0000)]
Update to use latex2html 98.1p5.

Cleanup temporary files produced by latex2html in the output directory.

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.