]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- fix links for loading, add a redirect page
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 28 Dec 2014 00:05:08 +0000 (19:05 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 28 Dec 2014 00:52:44 +0000 (19:52 -0500)
bump

foo

doc/build/glossary.rst
doc/build/orm/loading.rst [new file with mode: 0644]
doc/build/requirements.txt
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/orm/relationships.py

index ab9e92d26242076fa21ed13b6aaf023003e486e7..2e5dc67f3fa40034c578f683c1969b17d4227fa2 100644 (file)
@@ -146,7 +146,7 @@ Glossary
 
             :term:`N plus one problem`
 
-            :doc:`orm/loading`
+            :doc:`orm/loading_relationships`
 
     mapping
     mapped
@@ -175,7 +175,7 @@ Glossary
 
         .. seealso::
 
-            :doc:`orm/loading`
+            :doc:`orm/loading_relationships`
 
     polymorphic
     polymorphically
diff --git a/doc/build/orm/loading.rst b/doc/build/orm/loading.rst
new file mode 100644 (file)
index 0000000..0aca6cd
--- /dev/null
@@ -0,0 +1,3 @@
+:orphan:
+
+Moved!   :doc:`/orm/loading_relationships`
\ No newline at end of file
index bdbd832e4f19eba00ece60bf936785ede1343096..c84d342d615604c7997c6f8037e2eebcbe3f9954 100644 (file)
@@ -1,3 +1,3 @@
 changelog>=0.3.4
 sphinx-paramlinks>=0.2.2
-zzzeeksphinx>=1.0.4
+zzzeeksphinx>=1.0.5
index 6cade322a3bba44107babf08e609527dae2350b8..d2bdf5a00cc640032fb6c19f75190b70ae1afa8b 100644 (file)
@@ -811,7 +811,7 @@ class Query(object):
         foreign-key-to-primary-key criterion, will also use an
         operation equivalent to :meth:`~.Query.get` in order to retrieve
         the target value from the local identity map
-        before querying the database.  See :doc:`/orm/loading`
+        before querying the database.  See :doc:`/orm/loading_relationships`
         for further details on relationship loading.
 
         :param ident: A scalar or tuple value representing
@@ -1100,7 +1100,7 @@ class Query(object):
 
         Most supplied options regard changing how column- and
         relationship-mapped attributes are loaded. See the sections
-        :ref:`deferred` and :doc:`/orm/loading` for reference
+        :ref:`deferred` and :doc:`/orm/loading_relationships` for reference
         documentation.
 
         """
index 86f1b3f827d34f1fe226cecd0c6db649d6f94eb8..d3ae107b906c916fb7f203d12e41113f4594942f 100644 (file)
@@ -528,7 +528,7 @@ class RelationshipProperty(StrategizedProperty):
 
           .. seealso::
 
-            :doc:`/orm/loading` - Full documentation on relationship loader
+            :doc:`/orm/loading_relationships` - Full documentation on relationship loader
             configuration.
 
             :ref:`dynamic_relationship` - detail on the ``dynamic`` option.