From 15fcf1ed8514b0093a35ca71ada766c7bd1f554a Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Wed, 18 May 2016 15:47:57 +0100 Subject: [PATCH] Remove Django specific references from docstrings --- gramps/gen/db/__init__.py | 20 ------------------- .../database/bsddb_support/__init__.py | 20 ------------------- 2 files changed, 40 deletions(-) diff --git a/gramps/gen/db/__init__.py b/gramps/gen/db/__init__.py index f0197e798..a70de1dea 100644 --- a/gramps/gen/db/__init__.py +++ b/gramps/gen/db/__init__.py @@ -50,15 +50,6 @@ The full database hierarchy is: * :py:class:`.UpdateCallback` - callback functionality -- :py:class:`.DbDjango` - read and write implementation to Django-based - databases - - * :py:class:`.DbWriteBase` - virtual and implementation-independent methods - for reading data - - * :py:class:`.DbReadBase` - virtual and implementation-independent methods - for reading data - DbBsddb ======= @@ -69,17 +60,6 @@ such thing as a database schema, and the meaning of the data is defined in the Python classes above. The data is stored as pickled tuples and unserialized into the primary data types (below). -DbDjango -======== - -The DbDjango interface defines the Gramps data in terms of -*models* and *relations* from the -`Django project `_. The database -backend can be any implementation that supports Django, including -such popular SQL implementations as sqlite, MySQL, Postgresql, and -Oracle. The data is retrieved from the SQL fields, serialized and -then unserialized into the primary data types (below). - More details can be found in the manual's `Using database API `_. """ diff --git a/gramps/plugins/database/bsddb_support/__init__.py b/gramps/plugins/database/bsddb_support/__init__.py index 1dd4bce56..ac9b07863 100644 --- a/gramps/plugins/database/bsddb_support/__init__.py +++ b/gramps/plugins/database/bsddb_support/__init__.py @@ -50,15 +50,6 @@ The full database hierarchy is: * :py:class:`.UpdateCallback` - callback functionality -- :py:class:`.DbDjango` - read and write implementation to Django-based - databases - - * :py:class:`.DbWriteBase` - virtual and implementation-independent methods - for reading data - - * :py:class:`.DbReadBase` - virtual and implementation-independent methods - for reading data - DbBsddb ======= @@ -69,17 +60,6 @@ such thing as a database schema, and the meaning of the data is defined in the Python classes above. The data is stored as pickled tuples and unserialized into the primary data types (below). -DbDjango -======== - -The DbDjango interface defines the Gramps data in terms of -*models* and *relations* from the -`Django project `_. The database -backend can be any implementation that supports Django, including -such popular SQL implementations as sqlite, MySQL, Postgresql, and -Oracle. The data is retrieved from the SQL fields, serialized and -then unserialized into the primary data types (below). - More details can be found in the manual's `Using database API `_. """