Skip to content

Commit 41b4bb9

Browse files
committed
Merge pull request symfony#1516 from richardmiller/fixing_index_inconsistencies
Fixing index inconsistencies
2 parents 1690c93 + 76a7153 commit 41b4bb9

File tree

19 files changed

+36
-36
lines changed

19 files changed

+36
-36
lines changed

book/controller.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ itself.
384384
</cookbook/controller/service>`.
385385

386386
.. index::
387-
single: Controller; Common Tasks
387+
single: Controller; Common tasks
388388

389389
Common Controller Tasks
390390
-----------------------
@@ -623,7 +623,7 @@ These attributes will remain on the user for the remainder of that user's
623623
session.
624624

625625
.. index::
626-
single Session; Flash messages
626+
single: Session; Flash messages
627627

628628
Flash Messages
629629
~~~~~~~~~~~~~~

book/doctrine.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1305,7 +1305,7 @@ and ``nullable``. Take a few examples:
13051305
Doctrine's `Property Mapping documentation`_
13061306

13071307
.. index::
1308-
single: Doctrine; ORM Console Commands
1308+
single: Doctrine; ORM console commands
13091309
single: CLI; Doctrine ORM
13101310

13111311
Console Commands

book/forms.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ Validation is a very powerful feature of Symfony2 and has its own
369369
:doc:`dedicated chapter</book/validation>`.
370370

371371
.. index::
372-
single: Forms; Validation Groups
372+
single: Forms; Validation groups
373373

374374
.. _book-forms-validation-groups:
375375

@@ -404,7 +404,7 @@ In both of these cases, *only* the ``registration`` validation group will
404404
be used to validate the underlying object.
405405

406406
.. index::
407-
single: Forms; Built-in Field Types
407+
single: Forms; Built-in field types
408408

409409
.. _book-forms-type-reference:
410410

@@ -543,7 +543,7 @@ passing the option in the options field array::
543543
->add('task', null, array('max_length' => 4))
544544

545545
.. index::
546-
single: Forms; Rendering in a Template
546+
single: Forms; Rendering in a template
547547

548548
.. _form-rendering-template:
549549

@@ -1172,7 +1172,7 @@ customize (e.g. ``widget``), you can construct the fragment name that needs
11721172
to be overridden (e.g. ``textarea_widget``).
11731173

11741174
.. index::
1175-
single: Forms; Template Fragment Inheritance
1175+
single: Forms; Template fragment inheritance
11761176

11771177
Template Fragment Inheritance
11781178
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -1335,7 +1335,7 @@ Any fragments inside the ``Acme/TaskBundle/Resources/views/Form`` directory
13351335
are now used globally to define form output.
13361336

13371337
.. index::
1338-
single: Forms; CSRF Protection
1338+
single: Forms; CSRF protection
13391339

13401340
.. _forms-csrf:
13411341

book/http_cache.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Nottingham's `Cache Tutorial`_.
6363

6464
.. index::
6565
single: Cache; Proxy
66-
single: Cache; Reverse Proxy
66+
single: Cache; Reverse proxy
6767
single: Cache; Gateway
6868

6969
.. _gateway-caches:
@@ -126,7 +126,7 @@ the first two cache types. These caches are outside of your control but follow
126126
the HTTP cache directions set in the response.
127127

128128
.. index::
129-
single: Cache; Symfony2 Reverse Proxy
129+
single: Cache; Symfony2 reverse proxy
130130

131131
.. _`symfony-gateway-cache`:
132132

@@ -428,7 +428,7 @@ on a cache to store and return "fresh" responses.
428428
are much more beautiful than its cover.
429429

430430
.. index::
431-
single: Cache; HTTP Expiration
431+
single: Cache; HTTP expiration
432432

433433
Expiration
434434
~~~~~~~~~~

book/internals.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Every Symfony2 Kernel implements
8888
function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true)
8989

9090
.. index::
91-
single: Internals; Controller Resolver
91+
single: Internals; Controller resolver
9292

9393
Controllers
9494
~~~~~~~~~~~
@@ -139,7 +139,7 @@ the Request attributes.
139139
}
140140

141141
.. index::
142-
single: Internals; Request Handling
142+
single: Internals; Request handling
143143

144144
Handling Requests
145145
~~~~~~~~~~~~~~~~~
@@ -181,7 +181,7 @@ instance), disable the ``kernel.exception`` event by passing ``false`` as the
181181
third argument to the ``handle()`` method.
182182

183183
.. index::
184-
single: Internals; Internal Requests
184+
single: Internals; Internal requests
185185

186186
Internal Requests
187187
~~~~~~~~~~~~~~~~~

book/service_container.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ classes is a well-known and trusted object-oriented best-practice. These skills
6262
are key to being a good developer in almost any language.
6363

6464
.. index::
65-
single: Service Container; What is a Service Container?
65+
single: Service Container; What is a service container?
6666

6767
What is a Service Container?
6868
----------------------------

book/templating.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,8 @@ When working with template inheritance, here are some tips to keep in mind:
355355
{% endblock %}
356356

357357
.. index::
358-
single: Templating; Naming Conventions
359-
single: Templating; File Locations
358+
single: Templating; Naming conventions
359+
single: Templating; File locations
360360

361361
.. _template-naming-locations:
362362

@@ -444,7 +444,7 @@ section.
444444
See :ref:`Templating Configuration<template-configuration>` for more details.
445445

446446
.. index::
447-
single: Templating; Tags and Helpers
447+
single: Templating; Tags and helpers
448448
single: Templating; Helpers
449449

450450
Tags and Helpers
@@ -790,7 +790,7 @@ configuration option.
790790
.. index::
791791
single: Templating; Including stylesheets and Javascripts
792792
single: Stylesheets; Including stylesheets
793-
single: Javascripts; Including Javascripts
793+
single: Javascript; Including Javascripts
794794

795795
Including Stylesheets and Javascripts in Twig
796796
---------------------------------------------
@@ -969,7 +969,7 @@ Several configuration options are available and are covered in the
969969
third-party bundles).
970970

971971
.. index::
972-
single; Template; Overriding templates
972+
single: Template; Overriding templates
973973

974974
.. _overriding-bundle-templates:
975975

@@ -1032,7 +1032,7 @@ subdirectory.
10321032
.. _templating-overriding-core-templates:
10331033

10341034
.. index::
1035-
single; Template; Overriding exception templates
1035+
single: Template; Overriding exception templates
10361036

10371037
Overriding Core Templates
10381038
~~~~~~~~~~~~~~~~~~~~~~~~~

book/testing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ file.
3838
Code coverage can be generated with the ``--coverage-html`` option.
3939

4040
.. index::
41-
single: Tests; Unit Tests
41+
single: Tests; Unit tests
4242

4343
Unit Tests
4444
----------
@@ -105,7 +105,7 @@ Running tests for a given file or directory is also very easy:
105105
$ phpunit -c app src/Acme/DemoBundle/
106106
107107
.. index::
108-
single: Tests; Functional Tests
108+
single: Tests; Functional tests
109109

110110
Functional Tests
111111
----------------

components/dependency_injection/definitions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. index::
2-
single: Dependency Injection; Service Definitions
2+
single: Dependency Injection; Service definitions
33

44

55
Working with Container Parameters and Definitions

components/dependency_injection/parentservices.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. index::
2-
single: Dependency Injection; Parent Services
2+
single: Dependency Injection; Parent services
33

44
Managing Common Dependencies with Parent Services
55
=================================================

0 commit comments

Comments
 (0)