summaryrefslogtreecommitdiff
path: root/doc/src/advanced.rst
diff options
context:
space:
mode:
authorMarti Raudsepp <marti@juffo.org>2012-02-28 18:28:07 +0200
committerMarti Raudsepp <marti@juffo.org>2012-02-28 18:28:07 +0200
commitb97599166ec218b474f45e9a81ac7f4d58f63b71 (patch)
tree072f2827d2526dd864632e92c2e554fb3e3bc38c /doc/src/advanced.rst
parent4eea8bc912096654bc65a5908b0d861f1e9bba32 (diff)
downloadpsycopg2-b97599166ec218b474f45e9a81ac7f4d58f63b71.tar.gz
Update all links to PostgreSQL docs to the current version.
I also checked all links and anchors to make sure they're still valid.
Diffstat (limited to 'doc/src/advanced.rst')
-rw-r--r--doc/src/advanced.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/advanced.rst b/doc/src/advanced.rst
index 87d8449..a7b406a 100644
--- a/doc/src/advanced.rst
+++ b/doc/src/advanced.rst
@@ -143,7 +143,7 @@ geometric type:
.. |point| replace:: :sql:`point`
-.. _point: http://www.postgresql.org/docs/9.0/static/datatype-geometric.html#DATATYPE-GEOMETRIC
+.. _point: http://www.postgresql.org/docs/current/static/datatype-geometric.html#DATATYPE-GEOMETRIC
The above function call results in the SQL command::
@@ -246,9 +246,9 @@ documentation), you should keep the connection in `~connection.autocommit`
mode if you wish to receive or send notifications in a timely manner.
.. |LISTEN| replace:: :sql:`LISTEN`
-.. _LISTEN: http://www.postgresql.org/docs/9.0/static/sql-listen.html
+.. _LISTEN: http://www.postgresql.org/docs/current/static/sql-listen.html
.. |NOTIFY| replace:: :sql:`NOTIFY`
-.. _NOTIFY: http://www.postgresql.org/docs/9.0/static/sql-notify.html
+.. _NOTIFY: http://www.postgresql.org/docs/current/static/sql-notify.html
Notifications are received after every query execution. If the user is
interested in receiving notifications but not in performing any query, the
@@ -356,7 +356,7 @@ completely non-blocking connection attempt: see the libpq documentation for
|PQconnectStart|_.
.. |PQconnectStart| replace:: `!PQconnectStart()`
-.. _PQconnectStart: http://www.postgresql.org/docs/9.0/static/libpq-connect.html#LIBPQ-PQCONNECTSTART
+.. _PQconnectStart: http://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-PQCONNECTSTARTPARAMS
The same loop should be also used to perform nonblocking queries: after
sending a query via `~cursor.execute()` or `~cursor.callproc()`, call
@@ -472,7 +472,7 @@ resources about the topic.
.. _gevent: http://www.gevent.org/
.. _SQLAlchemy: http://www.sqlalchemy.org/
.. _psycogreen: http://bitbucket.org/dvarrazzo/psycogreen/
-.. __: http://www.postgresql.org/docs/9.0/static/libpq-async.html
+.. __: http://www.postgresql.org/docs/current/static/libpq-async.html
.. warning::