Vadim B. Mikheev [Thu, 21 Jan 1999 16:08:55 +0000 (16:08 +0000)]
FOR UPDATE is in parser & rules.
Bruce Momjian [Wed, 20 Jan 1999 22:31:07 +0000 (22:31 +0000)]
Update gram.c.
Bruce Momjian [Wed, 20 Jan 1999 19:48:13 +0000 (19:48 +0000)]
Add Intersect check.
Thomas G. Lockhart [Wed, 20 Jan 1999 16:29:39 +0000 (16:29 +0000)]
Fix "Y-2K" problem with two-digit BC dates being corrected by two millenia.
They are not corrected now.
Allow the date type to accept BC dates.
Share more date/time validation declarations through dt.h.
Thomas G. Lockhart [Wed, 20 Jan 1999 16:26:45 +0000 (16:26 +0000)]
Clean up leap year support and date/time validation.
Move declarations to allow sharing between modules.
Thomas G. Lockhart [Wed, 20 Jan 1999 16:24:59 +0000 (16:24 +0000)]
Add a set of braces to clarify conditional nesting.
gcc complained about ambiguities.
Thomas G. Lockhart [Tue, 19 Jan 1999 16:12:26 +0000 (16:12 +0000)]
Remove redundant note on NT port.
Thomas G. Lockhart [Tue, 19 Jan 1999 16:11:18 +0000 (16:11 +0000)]
Augment info on string functions per Jose Soares' suggestions.
Thomas G. Lockhart [Tue, 19 Jan 1999 16:09:16 +0000 (16:09 +0000)]
Introduction to SQL from Stefan. Not yet marked up, but will go into
the User's Guide sometime soon.
Thomas G. Lockhart [Tue, 19 Jan 1999 16:08:26 +0000 (16:08 +0000)]
Add tables of allowed values and formats for date/time input types.
Include info for time zones, days of week, months.
Procedural description of date input parsing is not yet complete.
Thomas G. Lockhart [Tue, 19 Jan 1999 16:06:26 +0000 (16:06 +0000)]
Merge current.sgml into release.sgml so all release notes are in the same
file. Per Bruce's preference. Go to it Bruce!
No info yet for v6.4.2 or upcoming releases.
Bruce Momjian [Mon, 18 Jan 1999 17:17:06 +0000 (17:17 +0000)]
Okay, I've updated the ecpg parser yet again. Unfortunately it has one
remaining shift/reduce conflict. But the very same conflict is in gram.y, so
I don't dig into it very much now.
Anyway, I just saw that there were minor changes made to ecpg by others. Now
I like that but I would prefer if I was told about that. Otherwise my
version numbering and Changelog maintaining might break. Or simply change
these too. :-)
Also I had to add #include <errno.h> to backend/libpq/pqcomprim.c to be
able to compile postgresql.
Patch is attached. Since my resubscription process is still not finished
yet, I still send them here.
Michael
Bruce Momjian [Mon, 18 Jan 1999 12:43:55 +0000 (12:43 +0000)]
Add missing Windows files.
Bruce Momjian [Mon, 18 Jan 1999 06:46:33 +0000 (06:46 +0000)]
Fix cfor typos.
Bruce Momjian [Mon, 18 Jan 1999 06:32:27 +0000 (06:32 +0000)]
Fix for typo in gram.y
Bruce Momjian [Mon, 18 Jan 1999 01:09:14 +0000 (01:09 +0000)]
Add masters thesis to docs.
Bruce Momjian [Mon, 18 Jan 1999 00:10:17 +0000 (00:10 +0000)]
Hi!
INTERSECT and EXCEPT is available for postgresql-v6.4!
The patch against v6.4 is included at the end of the current text
(in uuencoded form!)
I also included the text of my Master's Thesis. (a postscript
version). I hope that you find something of it useful and would be
happy if parts of it find their way into the PostgreSQL documentation
project (If so, tell me, then I send the sources of the document!)
The contents of the document are:
-) The first chapter might be of less interest as it gives only an
overview on SQL.
-) The second chapter gives a description on much of PostgreSQL's
features (like user defined types etc. and how to use these features)
-) The third chapter starts with an overview of PostgreSQL's internal
structure with focus on the stages a query has to pass (i.e. parser,
planner/optimizer, executor). Then a detailed description of the
implementation of the Having clause and the Intersect/Except logic is
given.
Originally I worked on v6.3.2 but never found time enough to prepare
and post a patch. Now I applied the changes to v6.4 to get Intersect
and Except working with the new version. Chapter 3 of my documentation
deals with the changes against v6.3.2, so keep that in mind when
comparing the parts of the code printed there with the patched sources
of v6.4.
Here are some remarks on the patch. There are some things that have
still to be done but at the moment I don't have time to do them
myself. (I'm doing my military service at the moment) Sorry for that
:-(
-) I used a rewrite technique for the implementation of the Except/Intersect
logic which rewrites the query to a semantically equivalent query before
it is handed to the rewrite system (for views, rules etc.), planner,
executor etc.
-) In v6.3.2 the types of the attributes of two select statements
connected by the UNION keyword had to match 100%. In v6.4 the types
only need to be familiar (i.e. int and float can be mixed). Since this
feature did not exist when I worked on Intersect/Except it
does not work correctly for Except/Intersect queries WHEN USED IN
COMBINATION WITH UNIONS! (i.e. sometimes the wrong type is used for the
resulting table. This is because until now the types of the attributes of
the first select statement have been used for the resulting table.
When Intersects and/or Excepts are used in combination with Unions it
might happen, that the first select statement of the original query
appears at another position in the query which will be executed. The reason
for this is the technique used for the implementation of
Except/Intersect which does a query rewrite!)
NOTE: It is NOT broken for pure UNION queries and pure INTERSECT/EXCEPT
queries!!!
-) I had to add the field intersect_clause to some data structures
but did not find time to implement printfuncs for the new field.
This does NOT break the debug modes but when an Except/Intersect
is used the query debug output will be the already rewritten query.
-) Massive changes to the grammar rules for SELECT and INSERT statements
have been necessary (see comments in gram.y and documentation for
deatails) in order to be able to use mixed queries like
(SELECT ... UNION (SELECT ... EXCEPT SELECT)) INTERSECT SELECT...;
-) When using UNION/EXCEPT/INTERSECT you will get:
NOTICE: equal: "Don't know if nodes of type xxx are equal".
I did not have time to add comparsion support for all the needed nodes,
but the default behaviour of the function equal met my requirements.
I did not dare to supress this message!
That's the reason why the regression test for union will fail: These
messages are also included in the union.out file!
-) Somebody of you changed the union_planner() function for v6.4
(I copied the targetlist to new_tlist and that was removed and
replaced by a cleanup of the original targetlist). These chnages
violated some having queries executed against views so I changed
it back again. I did not have time to examine the differences between the
two versions but now it works :-)
If you want to find out, try the file queries/view_having.sql on
both versions and compare the results . Two queries won't produce a
correct result with your version.
regards
Stefan
Tom Lane [Sun, 17 Jan 1999 21:53:32 +0000 (21:53 +0000)]
Clean up trivial compiler warning from gcc.
Tom Lane [Sun, 17 Jan 1999 21:44:46 +0000 (21:44 +0000)]
Reverse out yesterday's patch from Horak Daniel, since
it fails to compile on any machine without a <features.h> header.
If this header is actually necessary on Windows, perhaps an #if test
is in order.
Tom Lane [Sun, 17 Jan 1999 21:14:33 +0000 (21:14 +0000)]
Keep Tcl from getting confused if backend closes connection
when a notify is installed.
Tom Lane [Sun, 17 Jan 1999 21:12:55 +0000 (21:12 +0000)]
TCL_ARRAYS option patches from Massimo Dal Zotto
Tom Lane [Sun, 17 Jan 1999 21:05:23 +0000 (21:05 +0000)]
Add missing variable, per Massimo.
Tom Lane [Sun, 17 Jan 1999 20:59:56 +0000 (20:59 +0000)]
fixes to lock debugging macros from Massimo Dal Zotto
Tom Lane [Sun, 17 Jan 1999 20:58:03 +0000 (20:58 +0000)]
Add description of ELOG_TIMESTAMPS and USE_SYSLOG options,
per Massimo Dal Zotto.
Bruce Momjian [Sun, 17 Jan 1999 06:27:05 +0000 (06:27 +0000)]
Win32 new files.
Bruce Momjian [Sun, 17 Jan 1999 06:20:06 +0000 (06:20 +0000)]
Apply Win32 patch from Horak Daniel.
Bruce Momjian [Sun, 17 Jan 1999 04:51:59 +0000 (04:51 +0000)]
As the email posted to the announce and interfaces list, attached is a tar
file containing the latest version of the JDBC driver, allowing it to be
compiled and used under JDK 1.2 and later.
NB: None (well almost none) of the new methods actually do anything. This
release only handles getting it to compile and run. Now this is done, I'll
start working on implementing the new stuff.
Now this tar file replaces everything under src/interfaces/jdbc. I had to
do it this way, rather than diffs, because most of the classes under the
postgresql subdirectory have moved to a new directory under that one, to
enable the support of the two JDBC standards.
Here's a list of files in the tar file. Any file not listed here (in the
postgresql directory) will have to be deleted, otherwise it could cause
the driver to fail:
Peter Mount
Tom Lane [Sun, 17 Jan 1999 03:37:19 +0000 (03:37 +0000)]
Improve error message when connect() call fails:
report kernel's errno value.
Bruce Momjian [Sun, 17 Jan 1999 03:28:37 +0000 (03:28 +0000)]
Fix for missing NAN.
Tom Lane [Sun, 17 Jan 1999 03:22:52 +0000 (03:22 +0000)]
Add configure test to see whether vsnprintf() is present,
separately from snprintf() --- HPUX, for one, has snprintf but not
vsnprintf. Fix a minor typo in snprintf.c, too.
Tom Lane [Sun, 17 Jan 1999 03:10:23 +0000 (03:10 +0000)]
Remove uses of MSG_WAITALL temporarily, since it doesn't
seem to be portable (HPUX doesn't like it, anyway). Also, clean up
StreamConnection(), which was mis-coded to assume that the address
family field is already set when it's called.
Tom Lane [Sun, 17 Jan 1999 03:04:57 +0000 (03:04 +0000)]
Replace direct inclusions of c.h with inclusion of postgres.h,
to ensure that config.h is included as well.
Tom Lane [Sun, 17 Jan 1999 01:45:42 +0000 (01:45 +0000)]
Apply Magnus Hagander's followup patch to correct
out-of-sync routine prototypes ... the system doesn't compile without this ...
Tom Lane [Sun, 17 Jan 1999 00:18:59 +0000 (00:18 +0000)]
Re-insert %.sl rule into Makefile.hpux ... seems it is not
quite as unused as I thought ... how embarrassing.
Marc G. Fournier [Tue, 12 Jan 1999 12:49:52 +0000 (12:49 +0000)]
From: Magnus Hagander <mha@sollentuna.net>
Here's another patch for the libpq backend areas. This patch removes all
usage of "FILE *" on the communications channel. It also cleans up the
comments and headers in the pqcomm.c file - a lot of things were either
missing or incorrect. Finally, it removes a couple of unused functions
(leftovers from the time of shared code between the libpq backend and
frontend).
Marc G. Fournier [Mon, 11 Jan 1999 03:56:11 +0000 (03:56 +0000)]
From: Magnus Hagander <mha@sollentuna.net>
Here is a first patch to cleanup the backend side of libpq.
This patch removes all external dependencies on the "Pfin" and "Pfout" that
are declared in pqcomm.h. These variables are also changed to "static" to
make sure.
Almost all the change is in the handler of the "copy" command - most other
areas of the backend already used the correct functions.
This change will make the way for cleanup of the internal stuff there - now
that all the functions accessing the file descriptors are confined to a
single directory.
Thomas G. Lockhart [Sun, 10 Jan 1999 17:20:54 +0000 (17:20 +0000)]
Be more careful to check input string lengths as well as values
when deciding whether a field is a year field. Assume *anything* longer
than 2 digits (if it isn't a special-case doy) is a valid year.
This should fix the "Y1K" and "Y10K" problems
pointed out by Massimo recently.
Check usage of BC to require a positive-valued year; before just used it
to flip the sign of the year without checking. This led to problems
near year zero.
Allow a 5 digit "concatenated date" of 2 digit year plus day of year.
Do 2->4 digit year correction for 6 and 5 digit "concatenated dates".
Somehow forgot this originally. Guess not many folks use it...
Thomas G. Lockhart [Sun, 10 Jan 1999 17:13:06 +0000 (17:13 +0000)]
Handle "NaN" and "Infinity" for input values.
I think NAN is already guaranteed to be there from Jan's work on NUMERIC,
but perhaps HUGE_VAL needs some #ifndef's in the same place.
Should also include "-Infinity" as -HUGE_VAL sometime; not there yet.
Byron Nikolaidis [Fri, 8 Jan 1999 18:24:45 +0000 (18:24 +0000)]
Update 06-40-0004 -- Add Bookmark support!
Bruce Momjian [Thu, 7 Jan 1999 19:11:18 +0000 (19:11 +0000)]
Sorry for posting it here again, but I haven't corrected my
subscriptions
yet. It's just a small patch to ecpg to keep it in sync with gram.y.
Michael
Thomas G. Lockhart [Thu, 7 Jan 1999 06:19:17 +0000 (06:19 +0000)]
Fix build rules for the tutorial,
which was not built last time these things changed.
Thomas G. Lockhart [Thu, 7 Jan 1999 03:17:46 +0000 (03:17 +0000)]
Refresh info for various platforms. Claim client-side support for WIN32.
Thomas G. Lockhart [Thu, 7 Jan 1999 03:05:28 +0000 (03:05 +0000)]
Fix typo.
Thomas G. Lockhart [Thu, 7 Jan 1999 03:05:01 +0000 (03:05 +0000)]
Add entries for introduction chapter components such as Y2K statement.
Use a <citetitle> rather than <xref> when referring to libpq
since that chapter is not included in the tutorial.
Thomas G. Lockhart [Thu, 7 Jan 1999 03:02:27 +0000 (03:02 +0000)]
Remove mention of a couple of introductory chapters
which are not used here.
Thomas G. Lockhart [Thu, 7 Jan 1999 03:01:27 +0000 (03:01 +0000)]
Fix column formatting for a table. No content changes.
Thomas G. Lockhart [Thu, 7 Jan 1999 03:00:43 +0000 (03:00 +0000)]
Put in more markup. Not done yet though.
Thomas G. Lockhart [Thu, 7 Jan 1999 02:59:45 +0000 (02:59 +0000)]
Include installation instructions for WIN32 client-side libraries.
From Magnus Hagander <mha@sollentuna.net>.
Byron Nikolaidis [Wed, 6 Jan 1999 20:44:08 +0000 (20:44 +0000)]
Update 06-40-0003
Vadim B. Mikheev [Tue, 5 Jan 1999 15:46:25 +0000 (15:46 +0000)]
SELECT FOR UPDATE syntax
Jan Wieck [Tue, 5 Jan 1999 11:12:11 +0000 (11:12 +0000)]
Restricted maximum precision for NUMERIC to 1000 digits.
Anything else is CPU overkill.
Jan
Jan Wieck [Tue, 5 Jan 1999 11:10:45 +0000 (11:10 +0000)]
Removed precision restriction in numeric_round() causing
overflow error on high precision calculations where temporary
huge precision is required.
Jan
Byron Nikolaidis [Tue, 5 Jan 1999 00:32:21 +0000 (00:32 +0000)]
Mini Update #2 -- final fixes for buffer lengths, null buffers, truncation
Jan Wieck [Mon, 4 Jan 1999 17:51:58 +0000 (17:51 +0000)]
Just one more bugfix - this time in cmp_abs (cannot imagine that
taking a logarithm with a 400 digit precision worked with that bug
in place).
Jan
Jan Wieck [Mon, 4 Jan 1999 12:53:23 +0000 (12:53 +0000)]
Fixed backend crashing bug in apply_typmod()
Jan
Jan Wieck [Mon, 4 Jan 1999 11:20:33 +0000 (11:20 +0000)]
Little fix for round() function
Jan
Bruce Momjian [Sun, 3 Jan 1999 06:57:05 +0000 (06:57 +0000)]
update HISTORY
Bruce Momjian [Sun, 3 Jan 1999 05:30:47 +0000 (05:30 +0000)]
Fix NAN code.
Bruce Momjian [Sun, 3 Jan 1999 02:40:12 +0000 (02:40 +0000)]
Fix for NAN generation.
Bruce Momjian [Sat, 2 Jan 1999 16:06:42 +0000 (16:06 +0000)]
Mention 6.4.2 changes.
Bruce Momjian [Fri, 1 Jan 1999 04:48:49 +0000 (04:48 +0000)]
Some security, since we now have vsnprintf, I remade an old patch
with some extra ugly sprintfs fixed. More work in this area is
needed still.
Göran Thyni
Bruce Momjian [Fri, 1 Jan 1999 04:17:13 +0000 (04:17 +0000)]
Fix for no platform NAN.
Bruce Momjian [Thu, 31 Dec 1998 20:09:49 +0000 (20:09 +0000)]
Add max oid display, rather than returning just a dash for the last entry.
Thomas G. Lockhart [Thu, 31 Dec 1998 16:30:59 +0000 (16:30 +0000)]
Change ordering of HAVE_TM_ZONE and HAVE_INT_TIMEZONE code blocks
to give HAVE_TM_ZONE priority. This fixes glibc2 machines and any other
machine which passes both tests in configure.
Repair HAVE_TM_ZONE code which stuffs tm structure with date type values.
Same problems as were originally there before v6.1, but never noticed.
Thanks to Oleg for nagging :)
Byron Nikolaidis [Thu, 31 Dec 1998 00:26:44 +0000 (00:26 +0000)]
uncomment MYLOG to prevent warnings in compile
Byron Nikolaidis [Thu, 31 Dec 1998 00:26:06 +0000 (00:26 +0000)]
Mini update to fix SQLGetInfo to work properly (truncation, NULL)
Jan Wieck [Wed, 30 Dec 1998 20:46:06 +0000 (20:46 +0000)]
Little precision fix for POWER(). I discovered problems with big
exponents.
Jan
Jan Wieck [Wed, 30 Dec 1998 19:56:35 +0000 (19:56 +0000)]
Added NUMERIC data type with many builtin funcitons, operators
and aggregates.
Jan
Bruce Momjian [Tue, 29 Dec 1998 19:32:08 +0000 (19:32 +0000)]
Update for deadlock detection.
Bruce Momjian [Tue, 29 Dec 1998 18:36:29 +0000 (18:36 +0000)]
Update for deadlock timer.
Bruce Momjian [Tue, 29 Dec 1998 18:30:33 +0000 (18:30 +0000)]
Fix for deadlock detection timeout.
Bruce Momjian [Tue, 29 Dec 1998 18:29:18 +0000 (18:29 +0000)]
Fix for deadlock timer timeout.
Byron Nikolaidis [Tue, 29 Dec 1998 14:59:30 +0000 (14:59 +0000)]
Minor fixes to compile on unix for v6-40-0002
Thomas G. Lockhart [Tue, 29 Dec 1998 02:24:47 +0000 (02:24 +0000)]
Clean up to ensure tag completion as required by the newest versions
of Norm's Modular Style Sheets and jade/docbook.
From Vince Vielhaber <vev@michvhf.com>.
Byron Nikolaidis [Tue, 29 Dec 1998 01:49:58 +0000 (01:49 +0000)]
Update for version 6-40-0002 and re-merge Thomas' changes.
Bruce Momjian [Mon, 28 Dec 1998 05:41:51 +0000 (05:41 +0000)]
autoconf
Bruce Momjian [Mon, 28 Dec 1998 05:37:50 +0000 (05:37 +0000)]
Fix for current dir not in path, from stan's report.
Bruce Momjian [Sat, 26 Dec 1998 18:15:53 +0000 (18:15 +0000)]
Long awaited port for NetBSD/m68k was finally done by Mr. Mutsuki
Nakajima. Since he is not subscribing the mailing list, I'm posting
his patches by his request. According to him, he has successfully
compiled and passed the regression test on Mac SE/30 running
NetBSD/m68k. Also, another person has reported that with the patches
PostgreSQL is working on NetBSD/sun3 too.
--
Tatsuo Ishii
Bruce Momjian [Fri, 25 Dec 1998 02:20:12 +0000 (02:20 +0000)]
Fix for version, update to 6.5.
Bruce Momjian [Thu, 24 Dec 1998 05:28:50 +0000 (05:28 +0000)]
Fix for snprintf and long long unsigned.
Bruce Momjian [Thu, 24 Dec 1998 05:21:59 +0000 (05:21 +0000)]
Update HISTORY in CURRENT tree.
Thomas G. Lockhart [Wed, 23 Dec 1998 14:38:40 +0000 (14:38 +0000)]
Fix reference to null pointer when no aggregate function candidates
are available. Problem reported by David Sauer <davids@iol.cz>.
Modify information in resulting error message to indicate both agg name
and data type.
Bruce Momjian [Wed, 23 Dec 1998 14:35:42 +0000 (14:35 +0000)]
Add subversion mention
Marc G. Fournier [Tue, 22 Dec 1998 18:50:56 +0000 (18:50 +0000)]
From: Michael Meskes <Michael.Meskes@usa.net>
+
+Wed Dec 9 11:24:54 MEZ 1998
+
+ - Synced preproc.y with gram.y and the keywords.c files to add CASE
+ statement.
+
+Tue Dec 22 14:16:11 CET 1998
+
+ - Synced preproc.y with gram.y for locking statements.
+ - Set version to 2.4.5
Jan Wieck [Mon, 21 Dec 1998 12:50:29 +0000 (12:50 +0000)]
Changed TypeName.typmod to int32 - atttypmod is of that size
Jan
Marc G. Fournier [Sun, 20 Dec 1998 07:13:36 +0000 (07:13 +0000)]
finished cleaning up outnodes.c ...
Bruce Momjian [Fri, 18 Dec 1998 19:45:38 +0000 (19:45 +0000)]
Fix deadlock so it only checks once.
Bruce Momjian [Fri, 18 Dec 1998 18:01:10 +0000 (18:01 +0000)]
Included are patches for doc/README.mb and README.mb.jp.
Please apply to both trees.
--
Tatsuo Ishii
Bruce Momjian [Fri, 18 Dec 1998 17:54:42 +0000 (17:54 +0000)]
Add pgaccess Makefile.
Bruce Momjian [Fri, 18 Dec 1998 17:53:22 +0000 (17:53 +0000)]
Here are descriptions:
- the first patch is just to preven listing the perl warning in the
make output unless it is actually emitted by the make. this may
prevent new users from being confused by the warning in their output
- the second patch (to 2 files) just enables building/installing
pgaccess if TCL and TK are available. a Makefile is created to do
this, but you may wish to change the heading information in it since
I just copied another Makefile to use as a template.
I hope these make it into 6.4.1.
Cheers,
Brook
Bruce Momjian [Fri, 18 Dec 1998 17:25:41 +0000 (17:25 +0000)]
I have ported PostgreSQL 6.4 to Cobalt Qube running Linux 2.0.33 with
MIPS cpu (I think it's R4000). I have tested the patches on LinuxPPC
and FreeBSD. I believe they do not harm other platforms.
--
Tatsuo Ishii
Thomas G. Lockhart [Fri, 18 Dec 1998 16:23:34 +0000 (16:23 +0000)]
Fix typos in rules.sgml.
Add Emacs configuration block to postgres.sgml.
Thomas G. Lockhart [Fri, 18 Dec 1998 16:22:31 +0000 (16:22 +0000)]
Include example of Postgres' extended query syntax which allow one to omit
the FROM clause. e.g. "SELECT table.*".
Thomas G. Lockhart [Fri, 18 Dec 1998 16:20:28 +0000 (16:20 +0000)]
Update information on alternate database locations.
These fixes are from Jeff Hoffmann <jeff@remapcorp.com>.
Thomas G. Lockhart [Fri, 18 Dec 1998 16:17:29 +0000 (16:17 +0000)]
Include more details on editing with Emacs.
Remove mention of the old "migration" flat files.
Change URLs for resources to point to areas, not particular files.
That way things stay correct even when version of tools change.
Suggested by Vince Vielhaber.
Thomas G. Lockhart [Fri, 18 Dec 1998 16:13:45 +0000 (16:13 +0000)]
Include keywords from CASE implementation.
Rearrange a few other keywords to put them in the proper category.
Thomas G. Lockhart [Fri, 18 Dec 1998 16:12:13 +0000 (16:12 +0000)]
Add Cobalt MIPS linux box from Tatsuo.
Thomas G. Lockhart [Fri, 18 Dec 1998 16:11:12 +0000 (16:11 +0000)]
Update some info, especially the CIDR/INET data types.
Thomas G. Lockhart [Fri, 18 Dec 1998 16:10:00 +0000 (16:10 +0000)]
Include Emacs DocBook DTD description file. May allow Emacs to understand
tags even if DocBook is not installed on your local system.
Most of the .sgml source files contain a reference to this file in an
Emacs setup block at the bottom of the file...
Thomas G. Lockhart [Fri, 18 Dec 1998 16:08:19 +0000 (16:08 +0000)]
Information on the CVS tree and remote access.
Not yet complete, integrated, or marked up.
Not yet included in a document (should go in the developer's doc?).