Skip to content

Commit d905503

Browse files
committed
complete component cross references
1 parent a0b1aeb commit d905503

19 files changed

+119
-8
lines changed

components/asset.rst

+3
Original file line numberDiff line numberDiff line change
@@ -324,4 +324,7 @@ document inside a template::
324324
echo $packages->getUrl('/resume.pdf', 'doc');
325325
// result: /somewhere/deep/for/documents/resume.pdf?v1
326326

327+
Learn more
328+
----------
329+
327330
.. _Packagist: https://packagist.org/packages/symfony/asset

components/browser_kit.rst

+7
Original file line numberDiff line numberDiff line change
@@ -224,5 +224,12 @@ also delete all the cookies::
224224
// delete history
225225
$client->restart();
226226

227+
Learn more
228+
----------
229+
230+
* :doc:`/testing`
231+
* :doc:`/components/css_selector`
232+
* :doc:`/components/dom_crawler`
233+
227234
.. _`Packagist`: https://packagist.org/packages/symfony/browser-kit
228235
.. _`Goutte`: https://github.com/fabpot/Goutte

components/config.rst

+3
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,8 @@ Learn More
2828
:glob:
2929

3030
config/*
31+
/bundles/configuration
32+
/bundles/extension
33+
/bundles/prepend_extension
3134

3235
.. _Packagist: https://packagist.org/packages/symfony/config

components/console.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Then, you can register the commands using
4949

5050
See the :doc:`/console` article for information about how to create commands.
5151

52-
Learn More
52+
Learn more
5353
----------
5454

5555
.. toctree::
@@ -59,5 +59,6 @@ Learn More
5959
/console
6060
/components/console/*
6161
/components/console/helpers/index
62+
/console/*
6263

6364
.. _Packagist: https://packagist.org/packages/symfony/console

components/css_selector.rst

+6
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,9 @@ Several pseudo-classes are not yet supported:
9292
name (e.g. ``li:first-of-type``) but not with ``*``.
9393

9494
.. _Packagist: https://packagist.org/packages/symfony/css-selector
95+
96+
Learn more
97+
----------
98+
99+
* :doc:`/testing`
100+
* :doc:`/components/dom_crawler`

components/dependency_injection.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ Learn More
293293
:maxdepth: 1
294294
:glob:
295295

296-
dependency_injection/*
296+
/components/dependency_injection/*
297+
/dependency_injection/*
297298

298299
.. _Packagist: https://packagist.org/packages/symfony/dependency-injection

components/dom_crawler.rst

+6
Original file line numberDiff line numberDiff line change
@@ -467,3 +467,9 @@ the whole form or specific field(s)::
467467

468468
.. _`Goutte`: https://github.com/FriendsOfPHP/Goutte
469469
.. _Packagist: https://packagist.org/packages/symfony/dom-crawler
470+
471+
Learn more
472+
----------
473+
474+
* :doc:`/testing`
475+
* :doc:`/components/css_selector`

components/event_dispatcher.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,11 @@ Learn More
519519
:maxdepth: 1
520520
:glob:
521521

522-
event_dispatcher/*
522+
/components/event_dispatcher/*
523+
/event_dispatcher/*
524+
525+
* :ref:`The kernel.event_listener tag <dic-tags-kernel-event-listener>`
526+
* :ref:`The kernel.event_subscriber tag <dic-tags-kernel-event-subscriber>`
523527

524528
.. _Mediator: https://en.wikipedia.org/wiki/Mediator_pattern
525529
.. _Closures: http://php.net/manual/en/functions.anonymous.php

components/expression_language.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ Learn More
119119
:maxdepth: 1
120120
:glob:
121121

122-
expression_language/*
122+
/expressions
123+
/components/expression_language/*
124+
/service_container/expression_language
125+
/reference/constraints/Expression
123126

124127
.. _Packagist: https://packagist.org/packages/symfony/expression-language

components/form.rst

+9
Original file line numberDiff line numberDiff line change
@@ -702,6 +702,15 @@ method to access the list of errors. It returns a
702702
This is useful, for example, if you want to use PHP's ``array_`` function
703703
on the form errors.
704704

705+
Learn more
706+
----------
707+
708+
.. toctree::
709+
:maxdepth: 1
710+
:glob:
711+
712+
/form/*
713+
705714
.. _Packagist: https://packagist.org/packages/symfony/form
706715
.. _Twig: http://twig.sensiolabs.org
707716
.. _`Twig Configuration`: http://twig.sensiolabs.org/doc/intro.html

components/http_foundation.rst

+6-1
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,12 @@ Learn More
603603
:maxdepth: 1
604604
:glob:
605605

606-
http_foundation/*
606+
/components/http_foundation/*
607+
/controller
608+
/controller/*
609+
/request/*
610+
/session/*
611+
/http_cache/*
607612

608613
.. _Packagist: https://packagist.org/packages/symfony/http-foundation
609614
.. _Nginx: http://wiki.nginx.org/XSendfile

components/http_kernel.rst

+9
Original file line numberDiff line numberDiff line change
@@ -701,6 +701,15 @@ look like this::
701701
// ...
702702
}
703703

704+
Learn more
705+
----------
706+
707+
.. toctree::
708+
:maxlength: 1
709+
:glob:
710+
711+
/reference/events
712+
704713
.. _Packagist: https://packagist.org/packages/symfony/http-kernel
705714
.. _reflection: http://php.net/manual/en/book.reflection.php
706715
.. _FOSRestBundle: https://github.com/friendsofsymfony/FOSRestBundle

components/intl.rst

+12
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,18 @@ to the current default locale::
337337

338338
That's all you need to know for now. Have fun coding!
339339

340+
Learn more
341+
----------
342+
343+
.. toctree::
344+
:maxdepth: 1
345+
:glob:
346+
347+
/reference/forms/types/country
348+
/reference/forms/types/currency
349+
/reference/forms/types/language
350+
/reference/forms/types/locale
351+
340352
.. _Packagist: https://packagist.org/packages/symfony/intl
341353
.. _Icu component: https://packagist.org/packages/symfony/icu
342354
.. _intl extension: http://www.php.net/manual/en/book.intl.php

components/routing.rst

+13
Original file line numberDiff line numberDiff line change
@@ -346,4 +346,17 @@ automatically in the background if you want to use it. A basic example of the
346346
are saved in the ``cache_dir``. This means your script must have write
347347
permissions for that location.
348348

349+
Learn more
350+
----------
351+
352+
.. toctree::
353+
:maxdepth: 1
354+
:glob:
355+
356+
/routing
357+
/routing/*
358+
/controller
359+
/controller/*
360+
/configuration/apache_router
361+
349362
.. _Packagist: https://packagist.org/packages/symfony/routing

components/security.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ Learn More
4545
:maxdepth: 1
4646
:glob:
4747

48-
security/*
48+
/components/security/*
49+
/security
50+
/security/*
51+
/reference/configuration/security
52+
/reference/constraints/UserPassword
4953

5054
.. _Packagist: https://packagist.org/packages/symfony/security
5155
.. _`CSRF attacks`: https://en.wikipedia.org/wiki/Cross-site_request_forgery

components/serializer.rst

+9
Original file line numberDiff line numberDiff line change
@@ -637,5 +637,14 @@ having unique identifiers::
637637
A popular alternative to the Symfony Serializer Component is the third-party
638638
library, `JMS serializer`_ (released under the Apache license, so incompatible with GPLv2 projects).
639639

640+
Learn more
641+
----------
642+
643+
.. toctree::
644+
:maxdepth: 1
645+
:glob:
646+
647+
/serializer
648+
640649
.. _`JMS serializer`: https://github.com/schmittjoh/serializer
641650
.. _Packagist: https://packagist.org/packages/symfony/serializer

components/templating.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,8 @@ Learn More
208208
:maxdepth: 1
209209
:glob:
210210

211-
templating/*
211+
/components/templating/*
212+
/templating
213+
/templating/*
212214

213215
.. _Packagist: https://packagist.org/packages/symfony/templating

components/translation.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,10 @@ Learn More
219219
:maxdepth: 1
220220
:glob:
221221

222-
translation/*
222+
/components/translation/*
223+
/translation
224+
/translation/*
225+
/validation/translation
223226

224227
.. _Packagist: https://packagist.org/packages/symfony/translation
225228
.. _`ISO 3166-1 alpha-2`: https://en.wikipedia.org/wiki/ISO_3166-1#Current_codes

components/validator.rst

+11
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,15 @@ You can install the component in 2 different ways:
1717

1818
For more information, see the code in the Git Repository.
1919

20+
Learn more
21+
----------
22+
23+
.. toctree::
24+
:maxdepth: 1
25+
:glob:
26+
27+
/validation
28+
/validation/*
29+
/reference/constraints/*
30+
2031
.. _Packagist: https://packagist.org/packages/symfony/validator

0 commit comments

Comments
 (0)