Skip to content

Commit 7ca7ead

Browse files
committed
fixed previous commit
1 parent 6272eec commit 7ca7ead

File tree

21 files changed

+105
-105
lines changed

21 files changed

+105
-105
lines changed

book/controller.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Mapping a URI to a Controller
131131
Our new controller returns a simple HTML page. To render this controller
132132
at a specific URL, we need to create a route to it.
133133

134-
We'll talk about the ``Routing`` component in detail in the :doc:`Routing guide</guides/routing>`,
134+
We'll talk about the ``Routing`` component in detail in the :doc:`Routing guide</book/routing>`,
135135
but let's create a simple route to our controller:
136136

137137
.. configuration-block::
@@ -389,7 +389,7 @@ class, which is designed specifically to redirect the user to another URL::
389389

390390
The ``generateUrl()`` method is just a shortcut that calls ``generate()``
391391
on the ``router`` service. It takes the route name and an array of parameters
392-
as arguments and returns the associated friendly URL. See the :doc:`Routing </guides/routing>`
392+
as arguments and returns the associated friendly URL. See the :doc:`Routing </book/routing>`
393393
guide for more information.
394394

395395
By default, the ``redirect`` method does a 302 (temporary) redirect. To perform
@@ -474,7 +474,7 @@ returns a ``Response`` object with the content from the template::
474474

475475
return $this->render('HelloBundle:Hello:index.html.twig', array('name' => $name));
476476

477-
The Symfony templating engine is explained in great detail in the :doc:`Templating </guides/templating>`
477+
The Symfony templating engine is explained in great detail in the :doc:`Templating </book/templating>`
478478
guide.
479479

480480
.. tip::
@@ -505,7 +505,7 @@ via the ``get()`` method. Here are several common services you might need::
505505
$mailer = $this->get('mailer');
506506

507507
The are countless other services available and you are encouraged to define
508-
your own. For more information, see the :doc:`Extending Symfony </guides/extending_symfony>`
508+
your own. For more information, see the :doc:`Extending Symfony </book/extending_symfony>`
509509
guide.
510510

511511
.. index::

book/doctrine/orm/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ persistence for PHP objects.
1414
official `documentation`_ website.
1515

1616
To get started, enable and configure the :doc:`Doctrine DBAL
17-
</guides/doctrine/dbal/overview>`, then enable the ORM. The minimal
17+
</book/doctrine/dbal/overview>`, then enable the ORM. The minimal
1818
necessary configuration is to specify the bundle name which contains your entities.
1919

2020
.. configuration-block::

book/forms/fields/map.rst.inc

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
* :doc:`BirthdayField </guides/forms/fields/BirthdayField>`
2-
* :doc:`CheckboxField </guides/forms/fields/CheckboxField>`
3-
* :doc:`ChoiceField </guides/forms/fields/ChoiceField>`
4-
* :doc:`CollectionField </guides/forms/fields/CollectionField>`
5-
* :doc:`CountryField </guides/forms/fields/CountryField>`
6-
* :doc:`DateField </guides/forms/fields/DateField>`
7-
* :doc:`DateTimeField </guides/forms/fields/DateTimeField>`
8-
* :doc:`EntityChoiceField </guides/forms/fields/EntityChoiceField>`
9-
* :doc:`FileField </guides/forms/fields/FileField>`
10-
* :doc:`HiddenField </guides/forms/fields/HiddenField>`
11-
* :doc:`IntegerField </guides/forms/fields/IntegerField>`
12-
* :doc:`LanguageField </guides/forms/fields/LanguageField>`
13-
* :doc:`LocaleField </guides/forms/fields/LocaleField>`
14-
* :doc:`MoneyField </guides/forms/fields/MoneyField>`
15-
* :doc:`NumberField </guides/forms/fields/NumberField>`
16-
* :doc:`PasswordField </guides/forms/fields/PasswordField>`
17-
* :doc:`PercentField </guides/forms/fields/PercentField>`
18-
* :doc:`RepeatedField </guides/forms/fields/RepeatedField>`
19-
* :doc:`TextareaField </guides/forms/fields/TextareaField>`
20-
* :doc:`TextField </guides/forms/fields/TextField>`
21-
* :doc:`TimeField </guides/forms/fields/TimeField>`
22-
* :doc:`TimezoneField </guides/forms/fields/TimezoneField>`
23-
* :doc:`UrlField </guides/forms/fields/UrlField>`
1+
* :doc:`BirthdayField </book/forms/fields/BirthdayField>`
2+
* :doc:`CheckboxField </book/forms/fields/CheckboxField>`
3+
* :doc:`ChoiceField </book/forms/fields/ChoiceField>`
4+
* :doc:`CollectionField </book/forms/fields/CollectionField>`
5+
* :doc:`CountryField </book/forms/fields/CountryField>`
6+
* :doc:`DateField </book/forms/fields/DateField>`
7+
* :doc:`DateTimeField </book/forms/fields/DateTimeField>`
8+
* :doc:`EntityChoiceField </book/forms/fields/EntityChoiceField>`
9+
* :doc:`FileField </book/forms/fields/FileField>`
10+
* :doc:`HiddenField </book/forms/fields/HiddenField>`
11+
* :doc:`IntegerField </book/forms/fields/IntegerField>`
12+
* :doc:`LanguageField </book/forms/fields/LanguageField>`
13+
* :doc:`LocaleField </book/forms/fields/LocaleField>`
14+
* :doc:`MoneyField </book/forms/fields/MoneyField>`
15+
* :doc:`NumberField </book/forms/fields/NumberField>`
16+
* :doc:`PasswordField </book/forms/fields/PasswordField>`
17+
* :doc:`PercentField </book/forms/fields/PercentField>`
18+
* :doc:`RepeatedField </book/forms/fields/RepeatedField>`
19+
* :doc:`TextareaField </book/forms/fields/TextareaField>`
20+
* :doc:`TextField </book/forms/fields/TextField>`
21+
* :doc:`TimeField </book/forms/fields/TimeField>`
22+
* :doc:`TimezoneField </book/forms/fields/TimezoneField>`
23+
* :doc:`UrlField </book/forms/fields/UrlField>`

book/forms/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ data.
238238
239239
If any constraint fails, the error is displayed next to the corresponding
240240
form field. You can learn more about constraints in :doc:`Validation
241-
Constraints </guides/validator/constraints>`.
241+
Constraints </book/validator/constraints>`.
242242

243243
Creating Form Fields Automatically
244244
----------------------------------

book/forms/view.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Forms in Templates
55
==================
66

7-
A Symfony2 :doc:`Form </guides/forms/overview>` is made of fields. Fields
7+
A Symfony2 :doc:`Form </book/forms/overview>` is made of fields. Fields
88
describe the form semantic, not its end-user representation; it means that a
99
form is not necessarily tied to HTML. Instead, it is the responsibility of the
1010
web designer to display each form field the way he wants. So, displaying a

book/from_flat_php_to_symfony2.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -633,9 +633,9 @@ routing map information to determine which controller to call. Just as in
633633
our sample application, your controller method is responsible for returning
634634
the final ``Response`` object. There's really not much else to it.
635635

636-
In the upcoming guides, we'll learn more about how each piece works and
637-
how the project is organized by default. For now, just realize what we've
638-
gained by migrating the original flat PHP application to Symfony2:
636+
In the upcoming chapters, we'll learn more about how each piece works and how
637+
the project is organized by default. For now, just realize what we've gained
638+
by migrating the original flat PHP application to Symfony2:
639639

640640
* Your application code is clearly and consistently organized (though Symfony
641641
doesn't force you into this) in a way that promotes reusability and allows

book/http_fundamentals.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,8 @@ controller.
362362
v |
363363
Routing
364364
365-
We'll talk a lot more about :doc:`Controllers </guides/controller>` and the
366-
:doc:`Router </guides/routing>` in later chapters.
365+
We'll talk a lot more about :doc:`Controllers </book/controller>` and the
366+
:doc:`Router </book/routing>` in later chapters.
367367

368368
.. tip::
369369

book/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Guides
2-
======
1+
Book
2+
====
33

44
Dive into Symfony2 with the topical guides:
55

book/internals/kernel.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ method::
143143
.. tip::
144144

145145
If you are not yet familiar with the Symfony2 Event Dispatcher, read the
146-
:doc:`dedicated chapter </guides/internals/event_dispatcher>` first.
146+
:doc:`dedicated chapter </book/internals/event_dispatcher>` first.
147147

148148
.. index::
149149
single: Event; core.request

book/internals/overview.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ Dependency Injection component and a powerful plugin system (bundles).
6262
.. seealso::
6363

6464
Read more about the :doc:`HttpKernel <kernel>` component. Read more about
65-
:doc:`Dependency Injection </guides/service_container>` and :doc:`Bundles
66-
</guides/bundles/index>`.
65+
:doc:`Dependency Injection </book/service_container>` and :doc:`Bundles
66+
</book/bundles/index>`.
6767

6868
``FrameworkBundle`` Bundle
6969
--------------------------

0 commit comments

Comments
 (0)