Skip to content

Commit cff094e

Browse files
committed
Merge branch '5.4' into 6.3
* 5.4: Remove hidden toctree
2 parents d5a33d8 + ff219f6 commit cff094e

File tree

11 files changed

+1
-227
lines changed

11 files changed

+1
-227
lines changed

components/console/helpers/index.rst

-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,6 @@
11
The Console Helpers
22
===================
33

4-
.. toctree::
5-
:hidden:
6-
7-
formatterhelper
8-
processhelper
9-
progressbar
10-
questionhelper
11-
table
12-
debug_formatter
13-
cursor
14-
154
The Console component comes with some useful helpers. These helpers contain
165
functions to ease some common tasks.
176

contributing/index.rst

-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,4 @@
11
Contributing
22
============
33

4-
.. toctree::
5-
:hidden:
6-
7-
code_of_conduct/index
8-
code/index
9-
documentation/index
10-
translations/index
11-
community/index
12-
diversity/index
13-
144
.. include:: /contributing/map.rst.inc

controller.rst

-5
Original file line numberDiff line numberDiff line change
@@ -759,11 +759,6 @@ Next, learn all about :doc:`rendering templates with Twig </templates>`.
759759
Learn more about Controllers
760760
----------------------------
761761

762-
.. toctree::
763-
:hidden:
764-
765-
templates
766-
767762
.. toctree::
768763
:maxdepth: 1
769764
:glob:

frontend.rst

+1-5
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,9 @@ Other Front-End Articles
136136
* :doc:`/frontend/custom_version_strategy`
137137

138138
.. toctree::
139-
:hidden:
139+
:maxdepth: 1
140140
:glob:
141141

142-
frontend/encore/installation
143-
frontend/encore/simple-example
144-
frontend/encore/*
145-
frontend/asset_mapper
146142
frontend/*
147143

148144
.. _`Webpack Encore`: https://www.npmjs.com/package/@symfony/webpack-encore

index.rst

-25
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ Quick Tour
88

99
Get started fast with the Symfony :doc:`Quick Tour <quick_tour/index>`:
1010

11-
.. toctree::
12-
:hidden:
13-
14-
quick_tour/index
15-
1611
* :doc:`quick_tour/the_big_picture`
1712
* :doc:`quick_tour/flex_recipes`
1813
* :doc:`quick_tour/the_architecture`
@@ -68,45 +63,25 @@ Topics
6863
Components
6964
----------
7065

71-
.. toctree::
72-
:hidden:
73-
74-
components/
75-
7666
Read the :doc:`Components </components/>` documentation.
7767

7868
Reference Documents
7969
-------------------
8070

8171
Get answers quickly with reference documents:
8272

83-
.. toctree::
84-
:hidden:
85-
86-
reference/index
87-
8873
.. include:: /reference/map.rst.inc
8974

9075
Contributing
9176
------------
9277

9378
Contribute to Symfony:
9479

95-
.. toctree::
96-
:hidden:
97-
98-
contributing/index
99-
10080
.. include:: /contributing/map.rst.inc
10181

10282
Create your Own Framework
10383
-------------------------
10484

10585
Want to create your own framework based on Symfony?
10686

107-
.. toctree::
108-
:hidden:
109-
110-
create_framework/index
111-
11287
.. include:: /create_framework/map.rst.inc

page_creation.rst

-5
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,6 @@ Have fun!
290290
Go Deeper with HTTP & Framework Fundamentals
291291
--------------------------------------------
292292

293-
.. toctree::
294-
:hidden:
295-
296-
routing
297-
298293
.. toctree::
299294
:maxdepth: 1
300295
:glob:

reference/constraints.rst

-83
Original file line numberDiff line numberDiff line change
@@ -1,89 +1,6 @@
11
Validation Constraints Reference
22
================================
33

4-
.. toctree::
5-
:maxdepth: 1
6-
:hidden:
7-
8-
constraints/NotBlank
9-
constraints/Blank
10-
constraints/NotNull
11-
constraints/IsNull
12-
constraints/IsTrue
13-
constraints/IsFalse
14-
constraints/Type
15-
16-
constraints/Email
17-
constraints/ExpressionSyntax
18-
constraints/Length
19-
constraints/Url
20-
constraints/Regex
21-
constraints/Hostname
22-
constraints/Ip
23-
constraints/Uuid
24-
constraints/Ulid
25-
constraints/Json
26-
27-
constraints/EqualTo
28-
constraints/NotEqualTo
29-
constraints/IdenticalTo
30-
constraints/NotIdenticalTo
31-
constraints/LessThan
32-
constraints/LessThanOrEqual
33-
constraints/GreaterThan
34-
constraints/GreaterThanOrEqual
35-
constraints/Range
36-
constraints/DivisibleBy
37-
constraints/Unique
38-
39-
constraints/Positive
40-
constraints/PositiveOrZero
41-
constraints/Negative
42-
constraints/NegativeOrZero
43-
44-
constraints/Date
45-
constraints/DateTime
46-
constraints/Time
47-
constraints/Timezone
48-
49-
constraints/Choice
50-
constraints/Collection
51-
constraints/Count
52-
constraints/UniqueEntity
53-
constraints/Language
54-
constraints/Locale
55-
constraints/Country
56-
57-
constraints/File
58-
constraints/Image
59-
60-
constraints/CardScheme
61-
constraints/Currency
62-
constraints/Luhn
63-
constraints/Iban
64-
constraints/Bic
65-
constraints/Isbn
66-
constraints/Issn
67-
constraints/Isin
68-
69-
constraints/AtLeastOneOf
70-
constraints/Sequentially
71-
constraints/Compound
72-
constraints/Callback
73-
constraints/Expression
74-
constraints/When
75-
constraints/All
76-
constraints/UserPassword
77-
constraints/NotCompromisedPassword
78-
constraints/PasswordStrength
79-
constraints/Valid
80-
constraints/Traverse
81-
constraints/CssColor
82-
constraints/Cascade
83-
constraints/EnableAutoMapping
84-
constraints/DisableAutoMapping
85-
constraints/NoSuspiciousCharacters
86-
874
The Validator is designed to validate objects against *constraints*.
885
In real life, a constraint could be: "The cake must not be burned". In
896
Symfony, constraints are similar: They are assertions that a condition is

reference/forms/types.rst

-52
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,6 @@
11
Form Types Reference
22
====================
33

4-
.. toctree::
5-
:maxdepth: 1
6-
:hidden:
7-
8-
types/text
9-
types/textarea
10-
types/email
11-
types/integer
12-
types/money
13-
types/number
14-
types/password
15-
types/percent
16-
types/search
17-
types/url
18-
types/range
19-
types/tel
20-
types/color
21-
22-
types/choice
23-
types/enum
24-
types/entity
25-
types/country
26-
types/language
27-
types/locale
28-
types/timezone
29-
types/currency
30-
31-
types/date
32-
types/dateinterval
33-
types/datetime
34-
types/time
35-
types/birthday
36-
types/week
37-
38-
types/checkbox
39-
types/file
40-
types/radio
41-
42-
types/uuid
43-
types/ulid
44-
45-
types/collection
46-
types/repeated
47-
48-
types/hidden
49-
50-
types/button
51-
types/reset
52-
types/submit
53-
54-
types/form
55-
564
A form is composed of *fields*, each of which are built with the help of
575
a field *type* (e.g. ``TextType``, ``ChoiceType``, etc). Symfony comes
586
standard with a large list of field types that can be used in your application.

reference/index.rst

-21
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,4 @@
11
Reference Documents
22
===================
33

4-
.. toctree::
5-
:hidden:
6-
7-
configuration/framework
8-
configuration/doctrine
9-
configuration/security
10-
configuration/twig
11-
configuration/monolog
12-
configuration/web_profiler
13-
configuration/debug
14-
15-
configuration/kernel
16-
17-
forms/types
18-
constraints
19-
20-
twig_reference
21-
22-
dic_tags
23-
events
24-
254
.. include:: /reference/map.rst.inc

routing.rst

-5
Original file line numberDiff line numberDiff line change
@@ -2731,11 +2731,6 @@ or, in Twig:
27312731
Learn more about Routing
27322732
------------------------
27332733

2734-
.. toctree::
2735-
:hidden:
2736-
2737-
controller
2738-
27392734
.. toctree::
27402735
:maxdepth: 1
27412736
:glob:

setup.rst

-5
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,6 @@ With setup behind you, it's time to :doc:`Create your first page in Symfony </pa
301301
Learn More
302302
----------
303303

304-
.. toctree::
305-
:hidden:
306-
307-
page_creation
308-
309304
.. toctree::
310305
:maxdepth: 1
311306
:glob:

0 commit comments

Comments
 (0)