Skip to content

Commit

Permalink
Correct pyrseas.dbobject module references in documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmafc committed Apr 6, 2011
1 parent 76254e8 commit 9c92fce
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/column.rst
@@ -1,7 +1,7 @@
Columns
=======

.. module:: pyrseas.column
.. module:: pyrseas.dbobject.column

The :mod:`column` module defines two classes, :class:`Column` derived
from :class:`DbSchemaObject` and :class:`ColumnDict`, derived from
Expand Down
2 changes: 1 addition & 1 deletion docs/constraint.rst
@@ -1,7 +1,7 @@
Constraints
===========

.. module:: pyrseas.constraint
.. module:: pyrseas.dbobject.constraint

The :mod:`constraint` module defines six classes: :class:`Constraint`
derived from :class:`DbSchemaObject`, classes
Expand Down
8 changes: 4 additions & 4 deletions docs/database.rst
Expand Up @@ -12,12 +12,12 @@ A :class:`Database` is initialized with a
:class:`~pyrseas.dbconn.DbConnection` object. It consists of one or
two :class:`Dicts`. A :class:`Dicts` object holds various dictionary
objects derived from :class:`~pyrseas.dbobject.DbObjectDict`, e.g.,
:class:`~pyrseas.schema.SchemaDict`,
:class:`~pyrseas.table.ClassDict`, and
:class:`~pyrseas.column.ColumnDict`. The key for each dictionary is a
:class:`~pyrseas.dbobject.schema.SchemaDict`,
:class:`~pyrseas.dbobject.table.ClassDict`, and
:class:`~pyrseas.dbobject.column.ColumnDict`. The key for each dictionary is a
Python tuple (or a single value in the case of
:class:`SchemaDict`). For example, the
:class:`~pyrseas.table.ClassDict` dictionary is indexed by (`schema
:class:`~pyrseas.dbobject.table.ClassDict` dictionary is indexed by (`schema
name`, `table name`). In addition, object instances in each dictionary
are linked to related objects in other dictionaries, e.g., columns are
linked to the tables where they belong.
Expand Down
2 changes: 1 addition & 1 deletion docs/indexes.rst
@@ -1,7 +1,7 @@
Indexes
=======

.. module:: pyrseas.index
.. module:: pyrseas.dbobject.index

The :mod:`index` module defines two classes, :class:`Index` and
:class:`IndexDict`, derived from :class:`DbSchemaObject` and
Expand Down
2 changes: 1 addition & 1 deletion docs/schema.rst
@@ -1,7 +1,7 @@
Schemas
=======

.. module:: pyrseas.schema
.. module:: pyrseas.dbobject.schema

The :mod:`schema` module defines two classes, :class:`Schema` and
:class:`SchemaDict`, derived from :class:`DbObject` and
Expand Down
2 changes: 1 addition & 1 deletion docs/table.rst
@@ -1,7 +1,7 @@
Tables, Views and Sequences
===========================

.. module:: pyrseas.table
.. module:: pyrseas.dbobject.table

The :mod:`table` module defines four classes, :class:`DbClass` derived
from :class:`DbSchemaObject`, classes :class:`Sequence` and
Expand Down

0 comments on commit 9c92fce

Please sign in to comment.