]> granicus.if.org Git - python/log
python
27 years agoni is a standard module, not a built-in module. The only other reference to
Fred Drake [Tue, 20 Jan 1998 04:40:41 +0000 (04:40 +0000)]
ni is a standard module, not a built-in module.  The only other reference to
it already got it right.

27 years agoConsistency: (Yes, I know this section is not formatted by default, and
Fred Drake [Tue, 20 Jan 1998 04:32:09 +0000 (04:32 +0000)]
Consistency:  (Yes, I know this section is not formatted by default, and
      isn't likely to be of much interest these days....)

{\tt ...} ==> \code{...}

Added \label{module-blat} for the two supporting modules.

Added index entries for referred-to modules.

27 years agoRenamed Jim's PyErr_[JF]Format() to cPickle_ErrFormat(). It's not a
Guido van Rossum [Mon, 19 Jan 1998 23:18:18 +0000 (23:18 +0000)]
Renamed Jim's PyErr_[JF]Format() to cPickle_ErrFormat().  It's not a
standard Python API function so it should not have a Py prefix.

27 years agoRemoved a confusing note about coercions and __r*__ operators.
Guido van Rossum [Mon, 19 Jan 1998 23:16:55 +0000 (23:16 +0000)]
Removed a confusing note about coercions and __r*__ operators.

27 years agoVarious updates to the effect that the group argument is always optional.
Guido van Rossum [Mon, 19 Jan 1998 23:14:17 +0000 (23:14 +0000)]
Various updates to the effect that the group argument is always optional.
Also documented that groups() now always returns a tuple.

27 years agoAdd note about dropping latex 2.09 compatibility.
Guido van Rossum [Mon, 19 Jan 1998 23:10:21 +0000 (23:10 +0000)]
Add note about dropping latex 2.09 compatibility.

27 years agoRevamped, to match py_compile.py:
Guido van Rossum [Mon, 19 Jan 1998 23:07:55 +0000 (23:07 +0000)]
Revamped, to match py_compile.py:

- added docstrings
- support option to specify a different purported directory name
- reindented with 4 spaces

27 years agoAdd Gopher to list of protocols that support query strings.
Guido van Rossum [Mon, 19 Jan 1998 22:27:21 +0000 (22:27 +0000)]
Add Gopher to list of protocols that support query strings.

27 years agoFix bad new bug in ftp code -- the test for existing file using NLST
Guido van Rossum [Mon, 19 Jan 1998 22:26:54 +0000 (22:26 +0000)]
Fix bad new bug in ftp code -- the test for existing file using NLST
would set the transfer to text mode instead of the specified mode.

27 years agoFix to ismount(). Can't remember who told me this.
Guido van Rossum [Mon, 19 Jan 1998 22:25:59 +0000 (22:25 +0000)]
Fix to ismount().  Can't remember who told me this.

27 years agoPatch by Tim O'Malley for servers that send a response looking just like
Guido van Rossum [Mon, 19 Jan 1998 22:25:24 +0000 (22:25 +0000)]
Patch by Tim O'Malley for servers that send a response looking just like
    HTTP/1.x 200
instead of
    HTTP/1.x 200 OK

27 years agoProtect PyErr_Format format string argument from overflow.
Guido van Rossum [Mon, 19 Jan 1998 22:23:08 +0000 (22:23 +0000)]
Protect PyErr_Format format string argument from overflow.

27 years agoProtect PyErr_Format format string argument from overflow (ironically,
Guido van Rossum [Mon, 19 Jan 1998 22:22:44 +0000 (22:22 +0000)]
Protect PyErr_Format format string argument from overflow (ironically,
the error was about a bad format string :-).

27 years agoInstead of "attribute-less object", issue an error message that
Guido van Rossum [Mon, 19 Jan 1998 22:16:36 +0000 (22:16 +0000)]
Instead of "attribute-less object", issue an error message that
contains the type of the object and name of the attribute.

27 years agotok_nextc() should return unsigned characters, to avoid mistaking
Guido van Rossum [Mon, 19 Jan 1998 22:07:46 +0000 (22:07 +0000)]
tok_nextc() should return unsigned characters, to avoid mistaking
'\377' for EOF.

27 years agoInstead of a single exists(), differentiate between files, modules,
Guido van Rossum [Mon, 19 Jan 1998 22:06:22 +0000 (22:06 +0000)]
Instead of a single exists(), differentiate between files, modules,
executable files, and directories.  When expecting a module, we also
look for the .pyc or .pyo file.

27 years agoAdd unistd.h for isatty().
Guido van Rossum [Mon, 19 Jan 1998 22:05:22 +0000 (22:05 +0000)]
Add unistd.h for isatty().

27 years agoAdd LOG_SYSLOG if defined.
Guido van Rossum [Mon, 19 Jan 1998 22:05:08 +0000 (22:05 +0000)]
Add LOG_SYSLOG if defined.

27 years agoBetter #ifdefs for NetBSD, taking into account that at least on netBSD
Guido van Rossum [Mon, 19 Jan 1998 22:03:52 +0000 (22:03 +0000)]
Better #ifdefs for NetBSD, taking into account that at least on netBSD
1.3, dlopen() etc. are fully implemented, including dlerror().
From Jaromir Dolecek and Ty Sarna.

27 years agoIt seems obvious that when Py_Finalize() decides that there's nothing
Guido van Rossum [Mon, 19 Jan 1998 22:00:38 +0000 (22:00 +0000)]
It seems obvious that when Py_Finalize() decides that there's nothing
to do, it should not call sys.exitfunc either...

27 years agoSome patches by Lars Marius Garshol:
Guido van Rossum [Mon, 19 Jan 1998 21:59:48 +0000 (21:59 +0000)]
Some patches by Lars Marius Garshol:

- fix type_to_name(); it never worked
- add path_to_selector()
add path_to_datatype_name()

27 years agoRewritten PyImport_Cleanup() and its helper, clear_carefully(). They
Guido van Rossum [Mon, 19 Jan 1998 21:58:26 +0000 (21:58 +0000)]
Rewritten PyImport_Cleanup() and its helper, clear_carefully().  They
now implement the following finalization strategy.

1. Whenever this code deletes a module, its directory is cleared
   carefully, as follows:
   - set all names to None that begin with exactly one underscore
   - set all names to None that don't begin with two underscores
   - clear the directory

2. Modules are deleted in the following order:
   - modules with a reference count of 1, except __builtin__ or __sys__
   - repeat until no more are found with a reference count of 1
   - __main__ if it's still there
   - all remaining modules except __builtin__ or sys
   - sys
   _ __builtin__

27 years agoConsistency: Replaced 4 {\it ...} with \emph{...}.
Fred Drake [Mon, 19 Jan 1998 04:02:41 +0000 (04:02 +0000)]
Consistency:  Replaced 4 {\it ...} with \emph{...}.

27 years agoAdded docstrings.
Guido van Rossum [Mon, 19 Jan 1998 04:01:26 +0000 (04:01 +0000)]
Added docstrings.

Added an optional third parameter giving the purported filename for
error messages from the module.

Append a newline to the code string if needed.

27 years agoConsistency: Replaced one {\tt ...} with \code{...}.
Fred Drake [Mon, 19 Jan 1998 02:55:11 +0000 (02:55 +0000)]
Consistency: Replaced one {\tt ...} with \code{...}.

27 years agoConsistency: In two places, change {\it ...} to \emph{...}.
Fred Drake [Mon, 19 Jan 1998 02:51:02 +0000 (02:51 +0000)]
Consistency:  In two places, change {\it ...} to \emph{...}.

27 years agoConsistency: In two \section{} headers, change {\tt ...} to \sectcode{...}.
Fred Drake [Mon, 19 Jan 1998 02:48:37 +0000 (02:48 +0000)]
Consistency:  In two \section{} headers, change {\tt ...} to \sectcode{...}.

27 years ago\funcitem{}, \dataitem{}, \excitem{}: Removed obsolete macros; there are no
Fred Drake [Sun, 18 Jan 1998 05:09:54 +0000 (05:09 +0000)]
\funcitem{}, \dataitem{}, \excitem{}:  Removed obsolete macros; there are no
longer used anywhere.  Use the {*desc} environments instead.

\var{}:  Ensure that the argument is always set in roman italic, in case an
 alternate font is being used for code.  These keeps the result of
 \var{} consistent.

Some minor changes to allow easier exploration of alternate fonts for code in
the running text.  Haven't changed the selected font; I haven't found one that
has everything required!  (The best non-monospaced font so far was missing
the <, >, and | characters, or at least had them at the wrong locations.  It
also allowed confusion between upper-case I and lower-case L.)

27 years agoUse \emph{} for all references to the other documents, not just some of them.
Fred Drake [Fri, 16 Jan 1998 16:34:34 +0000 (16:34 +0000)]
Use \emph{} for all references to the other documents, not just some of them.

27 years agoMods by Bill Bedford
Jack Jansen [Fri, 16 Jan 1998 14:40:10 +0000 (14:40 +0000)]
Mods by Bill Bedford
- Use internal version of finder class so we don't drag in finder
  tools
- error -1704 also ignored during arg unpack
- Use Scriptable Text Editor for example

27 years agoAddition by Bill Bedford: Ordinal and NOrdinal classes so we can
Jack Jansen [Fri, 16 Jan 1998 14:38:10 +0000 (14:38 +0000)]
Addition by Bill Bedford: Ordinal and NOrdinal classes so we can
implement "every", etc.

27 years agoSO_REUSEPORT should be SO_REUSEADDR.
Guido van Rossum [Thu, 15 Jan 1998 22:36:13 +0000 (22:36 +0000)]
SO_REUSEPORT should be SO_REUSEADDR.
I found this in a mail of two and a half years ago from Yusuf Goolamabbas.

27 years agoOuch: "accounces" ==> "announces"
Fred Drake [Thu, 15 Jan 1998 05:49:00 +0000 (05:49 +0000)]
Ouch:  "accounces" ==> "announces"

(In description of AbstractWriter class.)

27 years agoAdd trace methods to class Variable
Guido van Rossum [Wed, 14 Jan 1998 16:44:34 +0000 (16:44 +0000)]
Add trace methods to class Variable

27 years agoAdded tests for qualified sub and split
Guido van Rossum [Wed, 14 Jan 1998 16:42:17 +0000 (16:42 +0000)]
Added tests for qualified sub and split

27 years agoSeems I've found a way to fix this.
Guido van Rossum [Wed, 14 Jan 1998 15:40:30 +0000 (15:40 +0000)]
Seems I've found a way to fix this.

27 years agoConsistency: "{\bf ...}" ==> "\strong{...}"
Fred Drake [Wed, 14 Jan 1998 14:51:31 +0000 (14:51 +0000)]
Consistency:  "{\bf ...}" ==> "\strong{...}"
      "{\em ...}" ==> "\emph{...}"

      Not at all sure what to do with "{\rm ...}".
      Leaving it for now.

27 years agoAdded the standard \label{module-*} for the two supporting modules.
Fred Drake [Wed, 14 Jan 1998 05:47:15 +0000 (05:47 +0000)]
Added the standard \label{module-*} for the two supporting modules.

27 years agoConsistency: "Unix" ==> "\UNIX{}"
Fred Drake [Tue, 13 Jan 1998 22:41:33 +0000 (22:41 +0000)]
Consistency:  "Unix" ==> "\UNIX{}"
      Always include the comma *inside* the \optional{} markup!

27 years agoAugment \tableofcontents to do the right thing.
Fred Drake [Tue, 13 Jan 1998 22:40:08 +0000 (22:40 +0000)]
Augment \tableofcontents to do the right thing.

27 years agoRemoved \mytableofcontents; just use \tableofcontents.
Fred Drake [Tue, 13 Jan 1998 22:25:02 +0000 (22:25 +0000)]
Removed \mytableofcontents; just use \tableofcontents.

27 years agoRemoved one hack!
Fred Drake [Tue, 13 Jan 1998 22:23:30 +0000 (22:23 +0000)]
Removed one hack!

27 years agoConsistency: "Unix" ==> "\UNIX{}"
Fred Drake [Tue, 13 Jan 1998 19:10:02 +0000 (19:10 +0000)]
Consistency:  "Unix" ==> "\UNIX{}"

27 years agoConsistency: "unix" ==> "\UNIX{}"
Fred Drake [Tue, 13 Jan 1998 19:03:36 +0000 (19:03 +0000)]
Consistency:  "unix" ==> "\UNIX{}"

27 years agoSome shifting around of the DGUX hack so that it won't break on DEC Unix
Guido van Rossum [Tue, 13 Jan 1998 19:03:09 +0000 (19:03 +0000)]
Some shifting around of the DGUX hack so that it won't break on DEC Unix
where Make doesn't know that '#' as a command is a comment.

27 years agoConsistency: "unix" ==> "\UNIX{}"
Fred Drake [Tue, 13 Jan 1998 19:01:57 +0000 (19:01 +0000)]
Consistency:  "unix" ==> "\UNIX{}"

Added \label{} for referring to the module.

27 years agoConsistency:
Fred Drake [Tue, 13 Jan 1998 19:00:33 +0000 (19:00 +0000)]
Consistency:

"Unix" ==> "\UNIX{}"

27 years agoDeleted targets used only by Jim Fulton's now deleted "gMakefile".
Guido van Rossum [Tue, 13 Jan 1998 18:57:24 +0000 (18:57 +0000)]
Deleted targets used only by Jim Fulton's now deleted "gMakefile".

Also change the build rules to use $(LIBRARY) instead of
  -L.. -lpython$(VERSION)
since the latter trips up the SunOS 4.1.x linker (sigh).

27 years agoConsistency:
Fred Drake [Tue, 13 Jan 1998 18:56:38 +0000 (18:56 +0000)]
Consistency:

"Unix" ==> "\UNIX{}"

"C" ==> "\C{}"

"C++" ==> "\Cpp{}"

27 years agodelete gMakefile, clarify Makefile.pre.in
Guido van Rossum [Tue, 13 Jan 1998 18:53:42 +0000 (18:53 +0000)]
delete gMakefile, clarify Makefile.pre.in

27 years agoNo longer needed, sez Jim.
Guido van Rossum [Tue, 13 Jan 1998 18:52:40 +0000 (18:52 +0000)]
No longer needed, sez Jim.

27 years agoConsistency:
Fred Drake [Tue, 13 Jan 1998 18:51:10 +0000 (18:51 +0000)]
Consistency:

"Unix" ==> "\UNIX{}"

"C" ==> "\C{}"

"C++" ==> "\Cpp{}"

27 years agoRemoved obsolete \kwindex{} call.
Fred Drake [Tue, 13 Jan 1998 18:45:34 +0000 (18:45 +0000)]
Removed obsolete \kwindex{} call.

Added "user configuration file", ".pythonrc.py file" to the index.

Made reference to site module a {seealso} environment.

27 years agoAdded "module search path" to the index.
Fred Drake [Tue, 13 Jan 1998 18:35:51 +0000 (18:35 +0000)]
Added "module search path" to the index.

27 years agoRemoved obsolete \kwindex{} calls.
Fred Drake [Tue, 13 Jan 1998 18:34:40 +0000 (18:34 +0000)]
Removed obsolete \kwindex{} calls.

Added "module search path" to the index.

"Unix" ==> "\UNIX{}"

27 years agoUpdate the doc string to emphasize non-Unix behavior earlier;
Guido van Rossum [Tue, 13 Jan 1998 18:32:40 +0000 (18:32 +0000)]
Update the doc string to emphasize non-Unix behavior earlier;
sys.prefix is no longer empty on any platform that I know of.

27 years ago\kwindex{}: Removed obsolete macro.
Fred Drake [Tue, 13 Jan 1998 18:31:39 +0000 (18:31 +0000)]
\kwindex{}:  Removed obsolete macro.

27 years ago&do_cmd_kwindex: Removed obsolete function.
Fred Drake [Tue, 13 Jan 1998 18:30:31 +0000 (18:30 +0000)]
&do_cmd_kwindex:  Removed obsolete function.

27 years agoAdded command at end to use times fonts; commented out. Instructions to use
Fred Drake [Tue, 13 Jan 1998 17:29:31 +0000 (17:29 +0000)]
Added command at end to use times fonts; commented out.  Instructions to use
times are there as well.

Doing it here means the switch only affects one file and gets everything
rebuilt as needed.

27 years agoRemoved tarps2, tardvi targets based on comments from Guido.
Fred Drake [Tue, 13 Jan 1998 17:18:57 +0000 (17:18 +0000)]
Removed tarps2, tardvi targets based on comments from Guido.

Added -9 option to gzip.  This doesn't save much space, but it's "free" and
appreaciated by those with slow modems.  (With these tarballs, that means
"those with modems"...!)

Remove the two tarballs in the clean target.

27 years agoAfter discussion with Guido, agreed to only support double-sided PostScript,
Fred Drake [Tue, 13 Jan 1998 16:57:13 +0000 (16:57 +0000)]
After discussion with Guido, agreed to only support double-sided PostScript,
so we'll not need this shell whackery after all.

27 years agoAdded openright option the the \documentclass{} for each of the manuals.
Fred Drake [Tue, 13 Jan 1998 16:53:23 +0000 (16:53 +0000)]
Added openright option the the \documentclass{} for each of the manuals.

27 years agoAdded targets:
Fred Drake [Tue, 13 Jan 1998 16:33:09 +0000 (16:33 +0000)]
Added targets:

  tarps - one-sided PostScript
  tarps2 - two-sided PostScript, with ref.ps added as-is.
  tardvi - yes, some people want the .dvi files

  all-ps2 - Create the .ps files, but make sure the LaTeX openright option
    is used in the \documentclass.

27 years agoScript to add & remove LaTeX \documentclass options. Run "./texoption.sh"
Fred Drake [Tue, 13 Jan 1998 16:29:08 +0000 (16:29 +0000)]
Script to add & remove LaTeX \documentclass options.  Run "./texoption.sh"
for usage information.

27 years ago&make_mod_index_entry: Wrap a long comment, store the additional data needed
Fred Drake [Tue, 13 Jan 1998 04:05:11 +0000 (04:05 +0000)]
&make_mod_index_entry:  Wrap a long comment, store the additional data needed
to create a module index in the HTML version.

27 years agoOverride several functions from the stock latex2html to support the module
Fred Drake [Tue, 13 Jan 1998 04:03:02 +0000 (04:03 +0000)]
Override several functions from the stock latex2html to support the module
index.  It works, it's ugly, and would probably have to be completely redone
if we changed latex2html versions.  See the comments.  ;-(

On the other hand, it works.  ;-)

(Wait for myformat.perl checkin as well.)

27 years agoAdded support for \funcline{} and \dataline{}.
Fred Drake [Mon, 12 Jan 1998 23:15:29 +0000 (23:15 +0000)]
Added support for \funcline{} and \dataline{}.

For all generated cases of <strong>...</strong> (from this module), change to
<b>...</b>.  This, from me?  This is entirely to reduce the size of the
generated markup, which is more of an issue than semantics here.  Since
<strong> isn't very meaningful anyway, this should be good.

27 years agoLots of minor markup nits, all consistency related.
Fred Drake [Mon, 12 Jan 1998 19:16:24 +0000 (19:16 +0000)]
Lots of minor markup nits, all consistency related.

Consistently use trailing "()" on function / method names.

Wrapped some long lines.

27 years agoDocument maxsplit arg for split(), with incompatibility note about 1.5
Guido van Rossum [Mon, 12 Jan 1998 18:58:53 +0000 (18:58 +0000)]
Document maxsplit arg for split(), with incompatibility note about 1.5
release bug.

Document groups() changed behaviour (now always returns tuple).

27 years agoFix two bugs:
Guido van Rossum [Mon, 12 Jan 1998 18:57:53 +0000 (18:57 +0000)]
Fix two bugs:

(1) maxsplit was ignored in split().

(2) groups() would return a string instead of a singleton tuple when
there was only one group.

27 years agoWrapped some long lines.
Fred Drake [Mon, 12 Jan 1998 18:28:20 +0000 (18:28 +0000)]
Wrapped some long lines.

Added trailing "()" for function and method names.

Added index entries for referenced modules.

27 years agoModify command descriptions to use \optional{} instead of ad-hoc markup.
Fred Drake [Mon, 12 Jan 1998 15:38:30 +0000 (15:38 +0000)]
Modify command descriptions to use \optional{} instead of ad-hoc markup.
There are still weirdnesses, but less of them.

27 years ago\optional{}: Removed leading word space, allowing more flexibility.
Fred Drake [Mon, 12 Jan 1998 14:44:33 +0000 (14:44 +0000)]
\optional{}:  Removed leading word space, allowing more flexibility.

{seealso} environment:  Always start a new paragraph after the "See Also:"
line; this ensures that formatting is consistent for each subsequent
\see*{} item.

27 years agoSigh. Apply a similar patch to the *other* occurrence of [^...].
Guido van Rossum [Mon, 12 Jan 1998 05:49:05 +0000 (05:49 +0000)]
Sigh.  Apply a similar patch to the *other* occurrence of [^...].

27 years agoFollow current recommended practice in an example: Use isinstance() to
Fred Drake [Sun, 11 Jan 1998 21:15:23 +0000 (21:15 +0000)]
Follow current recommended practice in an example:  Use isinstance() to
perform a type test instead of type(x) == types.FoobarType.  In example
for type().

27 years ago"Unix" --> "\UNIX{}"
Fred Drake [Sun, 11 Jan 1998 19:06:37 +0000 (19:06 +0000)]
"Unix" --> "\UNIX{}"

Added index references to referred-to modules.

Added seealso section pointing to the glob module.

Removed description of translate().

27 years agoAs Jeff painfully found out, malloc(0) returns NULL on OS/2.
Guido van Rossum [Sun, 11 Jan 1998 18:02:19 +0000 (18:02 +0000)]
As Jeff painfully found out, malloc(0) returns NULL on OS/2.

27 years agoGrammatical nit.
Fred Drake [Fri, 9 Jan 1998 22:37:52 +0000 (22:37 +0000)]
Grammatical nit.

27 years agoAdd module reference for cPickle to index.
Fred Drake [Fri, 9 Jan 1998 22:36:51 +0000 (22:36 +0000)]
Add module reference for cPickle to index.

Consistency:  Always use trailing "()" for function and method names in text.

Consistency:  Always mark parameter names with \var{} in text.

Change questionable text about CORBA to definate text about XDR; "CORBA" isn't
enough to specify an external representation, and I'm not sure the comment is
right if we say "IIOP".  I know its right about XDR if we only mention shared
object references and not recursive structures.

27 years agoUse \file{} instead of \code{} or ``\code{}'' to mark file & directory names
Fred Drake [Fri, 9 Jan 1998 22:30:32 +0000 (22:30 +0000)]
Use \file{} instead of \code{} or ``\code{}'' to mark file & directory names
& name parts.

27 years agoSimplify markup.
Fred Drake [Fri, 9 Jan 1998 22:27:55 +0000 (22:27 +0000)]
Simplify markup.

27 years agoThe resource module has been documented; remove from list.
Fred Drake [Fri, 9 Jan 1998 22:25:10 +0000 (22:25 +0000)]
The resource module has been documented; remove from list.

27 years agoAdded \label{} to allow module references.
Fred Drake [Fri, 9 Jan 1998 22:24:14 +0000 (22:24 +0000)]
Added \label{} to allow module references.

Added some seealso sections.

27 years agoAdd index entry for reference to the math module.
Fred Drake [Fri, 9 Jan 1998 21:30:03 +0000 (21:30 +0000)]
Add index entry for reference to the math module.

27 years agoTypographical nits: Always set parameter names in \var{} in the running text.
Fred Drake [Fri, 9 Jan 1998 21:26:51 +0000 (21:26 +0000)]
Typographical nits:  Always set parameter names in \var{} in the running text.

27 years agoMarkup consistency in the mapping object interface description.
Fred Drake [Fri, 9 Jan 1998 20:36:44 +0000 (20:36 +0000)]
Markup consistency in the mapping object interface description.

27 years agoFix previous nit to really do the right thing.
Fred Drake [Fri, 9 Jan 1998 16:26:54 +0000 (16:26 +0000)]
Fix previous nit to really do the right thing.

27 years agoConsistency: Always use lower-case markup; one tag was still given in
Fred Drake [Fri, 9 Jan 1998 14:39:41 +0000 (14:39 +0000)]
Consistency:  Always use lower-case markup; one tag was still given in
uppercase.  (Makes it easier to see what markup is generated by the
Python manual support and what is generated by standard latex2html.)

27 years agoRevise prologue and frontmatter to use latex2e (not in 2.09 compatibility
Fred Drake [Fri, 9 Jan 1998 05:39:38 +0000 (05:39 +0000)]
Revise prologue and frontmatter to use latex2e (not in 2.09 compatibility
mode) and take advantage of changes in myformat.sty.

Change "C" to "\C{}" and "\code{NULL}" to "\NULL{}" everywhere for consistency
and control.

Started a description of PyArg_ParseTupleAndKeywords().

27 years agoRevise prologue and frontmatter to use latex2e (not in 2.09 compatibility
Fred Drake [Fri, 9 Jan 1998 05:36:43 +0000 (05:36 +0000)]
Revise prologue and frontmatter to use latex2e (not in 2.09 compatibility
mode) and take advantage of changes in myformat.sty.

27 years ago\mytableofcontents New macro. Wrapper around \tableofcontents that
Fred Drake [Fri, 9 Jan 1998 05:34:23 +0000 (05:34 +0000)]
\mytableofcontents New macro.  Wrapper around \tableofcontents that
does the right thing if the openright option is given.  Allows a
lot of crud to be removed from the document files' frontmatter
sections.

\endabstract Extend standard macro.  (Called as \end{abstract}.)
Does the right thing if the openright option is given.

\optional Adjust to get the brackets right under latex2e.

27 years agoNit.
Fred Drake [Fri, 9 Jan 1998 05:22:44 +0000 (05:22 +0000)]
Nit.

27 years agoFor consistency, always use a trailing "()" on function names in the running
Fred Drake [Thu, 8 Jan 1998 04:00:30 +0000 (04:00 +0000)]
For consistency, always use a trailing "()" on function names in the running
text.

Add one index entry.

27 years agoFix a typo (the word "a" was spelled "c"!).
Fred Drake [Wed, 7 Jan 1998 22:05:25 +0000 (22:05 +0000)]
Fix a typo (the word "a" was spelled "c"!).

Added index entries & \label{} constructs.

27 years agoNormalize some markup.
Fred Drake [Wed, 7 Jan 1998 18:57:01 +0000 (18:57 +0000)]
Normalize some markup.

Use \file{} instead of \code{} for a directory name (Tools/freeze).

Consistently use "()" at the end of a function name in running text.

27 years agoFixed up index entries.
Fred Drake [Wed, 7 Jan 1998 13:23:32 +0000 (13:23 +0000)]
Fixed up index entries.

Adjusted one formatting problem (long \code{} in running text).

27 years agoAdded index entry for the protocol.
Fred Drake [Wed, 7 Jan 1998 13:17:20 +0000 (13:17 +0000)]
Added index entry for the protocol.

Fixed typo (extra char in the word "character").

Minor nits.

27 years agoAdded index items for the RFC and the protocol itself.
Fred Drake [Wed, 7 Jan 1998 13:13:42 +0000 (13:13 +0000)]
Added index items for the RFC and the protocol itself.

27 years agoFixed index entries to be more consistent.
Fred Drake [Wed, 7 Jan 1998 03:47:10 +0000 (03:47 +0000)]
Fixed index entries to be more consistent.

27 years agoUpdated embed demo, and put a note in the html file that you need a
Jack Jansen [Tue, 6 Jan 1998 16:50:44 +0000 (16:50 +0000)]
Updated embed demo, and put a note in the html file that you need a
source or development distribution to try it.