aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-05-08 19:14:52 +0000
committerBruce Momjian <bruce@momjian.us>2001-05-08 19:14:52 +0000
commita5b17eb2809b7ffbfea117018580b9335ea9078f (patch)
treea747baa79e9a8f024ac9300e5c5f4c31bd36b7df
parentaea4f6f993ffd72d1831e9f1e29333ee52d99cd1 (diff)
downloadpostgresql-a5b17eb2809b7ffbfea117018580b9335ea9078f.tar.gz
postgresql-a5b17eb2809b7ffbfea117018580b9335ea9078f.zip
Remove LISP manual reference. Added to web "interfaces" page.
-rw-r--r--doc/src/sgml/filelist.sgml3
-rw-r--r--doc/src/sgml/lisp.sgml106
-rw-r--r--doc/src/sgml/programmer.sgml3
3 files changed, 2 insertions, 110 deletions
diff --git a/doc/src/sgml/filelist.sgml b/doc/src/sgml/filelist.sgml
index b56bd4c24e4..927a231d5aa 100644
--- a/doc/src/sgml/filelist.sgml
+++ b/doc/src/sgml/filelist.sgml
@@ -1,4 +1,4 @@
-<!-- $Header: /cvsroot/pgsql/doc/src/sgml/filelist.sgml,v 1.9 2001/03/04 18:54:07 petere Exp $ -->
+<!-- $Header: /cvsroot/pgsql/doc/src/sgml/filelist.sgml,v 1.10 2001/05/08 19:14:52 momjian Exp $ -->
<!entity history SYSTEM "history.sgml">
<!entity info SYSTEM "info.sgml">
@@ -63,7 +63,6 @@
<!entity libpqpp SYSTEM "libpq++.sgml">
<!entity libpgtcl SYSTEM "libpgtcl.sgml">
<!entity pygresql SYSTEM "pygresql.sgml">
-<!entity lisp SYSTEM "lisp.sgml">
<!entity lobj SYSTEM "lobj.sgml">
<!entity odbc SYSTEM "odbc.sgml">
<!entity rules SYSTEM "rules.sgml">
diff --git a/doc/src/sgml/lisp.sgml b/doc/src/sgml/lisp.sgml
deleted file mode 100644
index 8de2c5ed3f7..00000000000
--- a/doc/src/sgml/lisp.sgml
+++ /dev/null
@@ -1,106 +0,0 @@
-<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/Attic/lisp.sgml,v 2.4 2000/12/22 21:51:58 petere Exp $
--->
-
- <chapter id="lisp">
- <title id="lisp-title">Lisp Programming Interface</title>
-
- <abstract>
- <para>
- <filename>pg.el</filename> is a socket-level interface to
- <productname>Postgres</productname> for emacs.
- </para>
- </abstract>
-
- <note>
- <title>Author</title>
- <para>
- Written by Eric Marsden <email>emarsden@mail.dotcom.fr</email>
- on 1999-07-21
- </para>
- </note>
-
- <para>
- <filename>pg.el</filename> is a socket-level interface to
- <productname>Postgres</productname> for emacs (text
- editor extraordinaire). The module is capable of type coercions from a
- range of SQL types to the equivalent Emacs Lisp type. It currently
- supports neither crypt or Kerberos authentication, nor large objects.
- </para>
-
- <para>
- The code (version 0.2) is available under GNU GPL from
- <ulink url="http://www.chez.com/emarsden/downloads/pg.el">Eric Marsden</ulink>
- </para>
-
- <para>
-Changes since last release:
-
- <itemizedlist mark="bullet" spacing="compact">
- <listitem>
- <para>
- now works with XEmacs (tested with Emacs 19.34 & 20.2, and XEmacs
- 20.4)
- </para>
- </listitem>
-
- <listitem>
- <para>
- added functions to provide database metainformation (list of
- databases, of tables, of columns)
- </para>
- </listitem>
-
- <listitem>
- <para>
- arguments to `pg:result' are now :keywords
- </para>
- </listitem>
-
- <listitem>
- <para>
- MULE-resistant
- </para>
- </listitem>
-
- <listitem>
- <para>
- more self-testing code
- </para>
- </listitem>
- </itemizedlist>
- </para>
-
- <para>
- Please note that this is a programmer's API, and doesn't provide any
- form of user interface. Example:
-
- <programlisting>
- (defun demo ()
- (interactive)
- (let* ((conn (pg:connect "template1" "postgres" "postgres"))
- (res (pg:exec conn "SELECT * from scshdemo WHERE a = 42")))
- (message "status is %s" (pg:result res :status))
- (message "metadata is %s" (pg:result res :attributes))
- (message "data is %s" (pg:result res :tuples))
- (pg:disconnect conn)))
- </programlisting>
- </para>
- </chapter>
-
-<!-- Keep this comment at the end of the file
-Local variables:
-mode:sgml
-sgml-omittag:nil
-sgml-shorttag:t
-sgml-minimize-attributes:nil
-sgml-always-quote-attributes:t
-sgml-indent-step:1
-sgml-indent-data:t
-sgml-parent-document:nil
-sgml-default-dtd-file:"./reference.ced"
-sgml-exposed-tags:nil
-sgml-local-catalogs:("/usr/lib/sgml/catalog")
-sgml-local-ecat-files:nil
-End:
--->
diff --git a/doc/src/sgml/programmer.sgml b/doc/src/sgml/programmer.sgml
index 7cb73ac5e42..af899eceee2 100644
--- a/doc/src/sgml/programmer.sgml
+++ b/doc/src/sgml/programmer.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/Attic/programmer.sgml,v 1.35 2001/03/04 18:54:07 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/Attic/programmer.sgml,v 1.36 2001/05/08 19:14:52 momjian Exp $
PostgreSQL Programmer's Guide.
-->
@@ -49,7 +49,6 @@ PostgreSQL Programmer's Guide.
&odbc;
&jdbc;
&pygresql;
- &lisp;
</part>
<part id="programmer-server">