From 7e50a965fa1baf599b0f0b90dc32dcb5ce71cea0 Mon Sep 17 00:00:00 2001 From: Yannick de Lange Date: Wed, 12 Apr 2017 23:09:48 +0200 Subject: [PATCH] Updated broken links Updated all links pointing to http://www.doctrine-project.org/documentation/* to their http://docs.doctrine-project.org counterparts --- docs/en/cookbook/dql-user-defined-functions.rst | 2 +- docs/en/cookbook/implementing-wakeup-or-clone.rst | 2 +- docs/en/cookbook/integrating-with-codeigniter.rst | 2 +- docs/en/tutorials/getting-started.rst | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/cookbook/dql-user-defined-functions.rst b/docs/en/cookbook/dql-user-defined-functions.rst index a3a7606ad..3278319d2 100644 --- a/docs/en/cookbook/dql-user-defined-functions.rst +++ b/docs/en/cookbook/dql-user-defined-functions.rst @@ -132,7 +132,7 @@ dql statement. The ``ArithmeticPrimary`` method call is the most common denominator of valid EBNF tokens taken from the -`DQL EBNF grammar `_ +`DQL EBNF grammar `_ that matches our requirements for valid input into the DateDiff Dql function. Picking the right tokens for your methods is a tricky business, but the EBNF grammar is pretty helpful finding it, as is diff --git a/docs/en/cookbook/implementing-wakeup-or-clone.rst b/docs/en/cookbook/implementing-wakeup-or-clone.rst index 6a8ef9c91..93c2e54f4 100644 --- a/docs/en/cookbook/implementing-wakeup-or-clone.rst +++ b/docs/en/cookbook/implementing-wakeup-or-clone.rst @@ -4,7 +4,7 @@ Implementing Wakeup or Clone .. sectionauthor:: Roman Borschel (roman@code-factory.org) As explained in the -`restrictions for entity classes in the manual `_, +`restrictions for entity classes in the manual `_, it is usually not allowed for an entity to implement ``__wakeup`` or ``__clone``, because Doctrine makes special use of them. However, it is quite easy to make use of these methods in a safe diff --git a/docs/en/cookbook/integrating-with-codeigniter.rst b/docs/en/cookbook/integrating-with-codeigniter.rst index 1c06a34e2..49c5403aa 100644 --- a/docs/en/cookbook/integrating-with-codeigniter.rst +++ b/docs/en/cookbook/integrating-with-codeigniter.rst @@ -111,7 +111,7 @@ APC, get rid of EchoSqlLogger, and turn off autoGenerateProxyClasses. For more details, consult the -`Doctrine 2 Configuration documentation `_. +`Doctrine 2 Configuration documentation `_. Now to use it ------------- diff --git a/docs/en/tutorials/getting-started.rst b/docs/en/tutorials/getting-started.rst index c8247e21c..5cbcfb170 100644 --- a/docs/en/tutorials/getting-started.rst +++ b/docs/en/tutorials/getting-started.rst @@ -162,7 +162,7 @@ read up on the configuration details in the The third block shows the configuration options required to connect to a database, in my case a file-based sqlite database. All the configuration options for all the shipped drivers are given in the -`DBAL Configuration section of the manual `_. +`DBAL Configuration section of the manual `_. The last block shows how the ``EntityManager`` is obtained from a factory method.