correct all links in rst docs

This commit is contained in:
jan.dittberner 2009-01-25 17:03:31 +00:00
parent 8900c512d4
commit 5be16f226f
3 changed files with 9 additions and 8 deletions

View File

@ -1,3 +1,5 @@
.. _changeset-system:
**********************
Database changeset API
**********************

View File

@ -24,8 +24,8 @@ If you'd like to be notified when new versions of SQLAlchemy Migrate
are released, subscribe to `migrate-announce`_.
.. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall#installing-easy-install
.. _sqlalchemy: http://www.sqlalchemy.org/download.myt
.. _`project's download page`: http://code.google.com/p/sqlalchemy-migrate/downloads
.. _sqlalchemy: http://www.sqlalchemy.org/download.html
.. _`project's download page`: http://code.google.com/p/sqlalchemy-migrate/downloads/list
.. _`cheese shop`: http://pypi.python.org/pypi/sqlalchemy-migrate
.. _`migrate-announce`: http://groups.google.com/group/migrate-announce
@ -42,4 +42,4 @@ To get the latest trunk::
Patches should be submitted to the `issue tracker`_.
.. _subversion: http://subversion.tigris.org/
.. _issue tracker: http://code.google.com/p/sqlalchemy-migrate/issues
.. _issue tracker: http://code.google.com/p/sqlalchemy-migrate/issues/list

View File

@ -223,10 +223,9 @@ By default, change scripts may do anything any other SQLAlchemy
program can do.
SQLAlchemy Migrate extends SQLAlchemy with several operations used to
change existing schemas - ie. ALTER TABLE stuff. See changeset_
documentation for details.
change existing schemas - ie. ALTER TABLE stuff. See :ref:`changeset
<changeset-system>` documentation for details.
.. _changeset: changeset.html
Writing scripts with consistent behavior
----------------------------------------
@ -340,8 +339,8 @@ Python API
.. currentmodule:: migrate.versioning
All commands available from the command line are also available for
your Python scripts by importing `migrate.versioning.api`_. See the
`migrate.versioning.api`_ documentation for a list of functions;
your Python scripts by importing :mod:`migrate.versioning`. See the
:mod:`migrate.versioning` documentation for a list of functions;
function names match equivalent shell commands. You can use this to
help integrate SQLAlchemy Migrate with your existing update process.