Skip to content

Commit 1324fc0

Browse files
weaverryanwouterj
authored andcommitted
Deleting index files - using globbing
1 parent dc97c65 commit 1324fc0

File tree

32 files changed

+138
-348
lines changed

32 files changed

+138
-348
lines changed

components/class_loader.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,16 @@ You can install the component in 2 different ways:
5050

5151
.. include:: /components/require_autoload.rst.inc
5252

53+
Learn More
54+
----------
55+
56+
.. toctree::
57+
:glob:
58+
:maxdepth: 1
59+
60+
class_loader/class_loader
61+
class_loader/*
62+
5363
.. _PSR-0: http://www.php-fig.org/psr/psr-0/
5464
.. _PSR-4: http://www.php-fig.org/psr/psr-4/
5565
.. _`autoloading mechanism`: http://php.net/manual/en/language.oop5.autoload.php

components/class_loader/index.rst

Lines changed: 0 additions & 16 deletions
This file was deleted.

components/config.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,13 @@ You can install the component in 2 different ways:
2020

2121
.. include:: /components/require_autoload.rst.inc
2222

23-
Sections
24-
--------
23+
Learn More
24+
----------
2525

26-
* :doc:`/components/config/resources`
27-
* :doc:`/components/config/caching`
28-
* :doc:`/components/config/definition`
26+
.. toctree::
27+
:maxdepth: 1
28+
:glob:
29+
30+
config/*
2931

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

components/config/index.rst

Lines changed: 0 additions & 9 deletions
This file was deleted.

components/console.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -571,14 +571,14 @@ returns the returned code from the command (return value from command's
571571
command from the Web, refactor your code and move the logic to a new
572572
class.
573573

574-
Learn More!
575-
-----------
576-
577-
* :doc:`/components/console/usage`
578-
* :doc:`/components/console/single_command_tool`
579-
* :doc:`/components/console/changing_default_command`
580-
* :doc:`/components/console/events`
581-
* :doc:`/components/console/console_arguments`
574+
Learn More
575+
----------
576+
577+
.. toctree::
578+
:maxdepth: 1
579+
:glob:
580+
581+
console/*
582582

583583
.. _Packagist: https://packagist.org/packages/symfony/console
584584
.. _Cmder: http://cmder.net/

components/console/index.rst

Lines changed: 0 additions & 13 deletions
This file was deleted.

components/dependency_injection.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,5 +286,13 @@ config files:
286286
->register('newsletter_manager', 'NewsletterManager')
287287
->addMethodCall('setMailer', array(new Reference('mailer')));
288288
289-
.. _Packagist: https://packagist.org/packages/symfony/dependency-injection
289+
Learn More
290+
----------
291+
292+
.. toctree::
293+
:maxdepth: 1
294+
:glob:
290295

296+
dependency_injection/*
297+
298+
.. _Packagist: https://packagist.org/packages/symfony/dependency-injection

components/dependency_injection/index.rst

Lines changed: 0 additions & 18 deletions
This file was deleted.

components/event_dispatcher.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,15 @@ with some other dispatchers:
512512
* :doc:`/components/event_dispatcher/traceable_dispatcher` (provided by the
513513
:doc:`HttpKernel component </components/http_kernel>`)
514514

515+
Learn More
516+
----------
517+
518+
.. toctree::
519+
:maxdepth: 1
520+
:glob:
521+
522+
event_dispatcher/*
523+
515524
.. _Mediator: https://en.wikipedia.org/wiki/Mediator_pattern
516525
.. _Closures: http://php.net/manual/en/functions.anonymous.php
517526
.. _PHP callable: http://www.php.net/manual/en/language.pseudo-types.php#language.types.callback

components/event_dispatcher/index.rst

Lines changed: 0 additions & 10 deletions
This file was deleted.

components/expression_language.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,13 @@ Caching
112112
The component provides some different caching strategies, read more about them
113113
in :doc:`/components/expression_language/caching`.
114114

115+
Learn More
116+
----------
117+
118+
.. toctree::
119+
:maxdepth: 1
120+
:glob:
121+
122+
expression_language/*
123+
115124
.. _Packagist: https://packagist.org/packages/symfony/expression-language

components/expression_language/index.rst

Lines changed: 0 additions & 9 deletions
This file was deleted.

components/filesystem.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,4 +266,13 @@ Whenever something wrong happens, an exception implementing
266266
An :class:`Symfony\\Component\\Filesystem\\Exception\\IOException` is
267267
thrown if directory creation fails.
268268

269+
Learn More
270+
----------
271+
272+
.. toctree::
273+
:maxdepth: 1
274+
:glob:
275+
276+
filesystem/*
277+
269278
.. _`Packagist`: https://packagist.org/packages/symfony/filesystem

components/filesystem/index.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

components/form.rst

Lines changed: 9 additions & 0 deletions
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/form/index.rst

Lines changed: 0 additions & 8 deletions
This file was deleted.

components/http_foundation.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,15 @@ Session
596596

597597
The session information is in its own document: :doc:`/components/http_foundation/sessions`.
598598

599+
Learn More
600+
----------
601+
602+
.. toctree::
603+
:maxdepth: 1
604+
:glob:
605+
606+
http_foundation/*
607+
599608
.. _Packagist: https://packagist.org/packages/symfony/http-foundation
600609
.. _Nginx: http://wiki.nginx.org/XSendfile
601610
.. _Apache: https://tn123.org/mod_xsendfile/

components/http_foundation/index.rst

Lines changed: 0 additions & 11 deletions
This file was deleted.

components/index.rst

Lines changed: 4 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -2,51 +2,8 @@ The Components
22
==============
33

44
.. toctree::
5-
:hidden:
6-
5+
:maxdepth: 1
6+
:glob:
7+
78
using_components
8-
asset
9-
browser_kit
10-
class_loader
11-
class_loader/index
12-
config
13-
config/index
14-
console
15-
console/index
16-
css_selector
17-
debug
18-
dependency_injection
19-
dependency_injection/index
20-
dom_crawler
21-
event_dispatcher
22-
event_dispatcher/index
23-
expression_language
24-
expression_language/index
25-
filesystem
26-
filesystem/index
27-
finder
28-
form
29-
form/index
30-
http_foundation
31-
http_foundation/index
32-
http_kernel
33-
intl
34-
options_resolver
35-
phpunit_bridge
36-
process
37-
property_access
38-
routing
39-
security
40-
security/index
41-
serializer
42-
stopwatch
43-
templating
44-
templating/index
45-
translation
46-
translation/index
47-
var_dumper
48-
var_dumper/index
49-
yaml
50-
yaml/index
51-
52-
.. include:: /components/map.rst.inc
9+
*

0 commit comments

Comments
 (0)