Skip to content

Commit 2c100cc

Browse files
committed
Fixing some rendering errors - creating a few placeholder chapters
1 parent 4bebebf commit 2c100cc

File tree

9 files changed

+19
-9
lines changed

9 files changed

+19
-9
lines changed

book/forms.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,8 @@ the common form fields and data types you'll encounter:
368368
.. include:: /reference/forms/types/map.rst.inc
369369

370370
Of course, you can also create your own custom field types. This topic is
371-
covered in the ":doc:`/cookbook/forms/create_custom_fields`" article of the
372-
cookbook.
371+
covered in the ":doc:`/cookbook/forms/create_custom_field_type`" article
372+
of the cookbook.
373373

374374
.. index::
375375
single: Forms; Field type options
@@ -1149,7 +1149,6 @@ Learn more from the Cookbook
11491149

11501150
* :doc:`Handling File Uploads </cookbook/forms/file_uploads>`
11511151
* :doc:`Creating Custom Field Types </cookbook/forms/custom_field_types>`
1152-
* :doc:`Dynamically adding Fields to a Form </cookbook/forms/dynamically_adding_fields>`
11531152
* :doc:`/cookbook/form/twig_form_customization`
11541153

11551154
.. _`Symfony2 Form Component`: https://github.com/symfony/Form

book/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Book
1717
security/index
1818
http_cache
1919
translation
20-
console
2120
bundles
2221
service_container
2322
internals/index

book/internals/overview.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ variables:
4343
:class:`Symfony\\Component\\HttpFoundation\\SessionStorage\\SessionStorageInterface`
4444
interface abstract session management ``session_*()`` functions.
4545

46-
.. seealso::
47-
48-
Read more about the :doc:`HttpFoundation <http_foundation>` component.
49-
5046
``HttpKernel`` Component
5147
------------------------
5248

book/security/authorization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Access Control in Controllers
174174
-----------------------------
175175

176176
If you want to check a user role in your controller, you use the
177-
``isGranted``method of the security context:
177+
``isGranted`` method of the security context:
178178

179179
.. code-block:: php
180180

cookbook/cache/varnish.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,5 @@ that will invalidate the cache for a given resource:
8888

8989
You must protect the ``PURGE`` HTTP method somehow to avoid random people
9090
purging your cached data.
91+
92+
.. _`Edge Architecture`: http://www.w3.org/TR/edge-arch
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
How to Create a Custom Form Field Type
2+
======================================
3+
4+
This article has not been written yet, but will soon. If you're interested
5+
in writing this entry, see :doc:`/contributing/documentation/overview`.

cookbook/form/file_uploads.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
How to handle File Uploads
2+
==========================
3+
4+
This article has not been written yet, but will soon. If you're interested
5+
in writing this entry, see :doc:`/contributing/documentation/overview`.

cookbook/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Cookbook
1313
controller/service
1414
validation/custom_constraint
1515
form/twig_form_customization
16+
form/create_custom_field_type
17+
form/file_uploads
1618
tools/autoloader
1719
tools/finder
1820
logging/monolog

cookbook/map.rst.inc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* :doc:`/cookbook/controller/service`
77
* :doc:`/cookbook/validation/custom_constraint`
88
* :doc:`/cookbook/form/twig_form_customization`
9+
* :doc:`/cookbook/form/create_custom_field_type`
10+
* :doc:`/cookbook/form/file_uploads`
911
* :doc:`/cookbook/tools/autoloader`
1012
* :doc:`/cookbook/tools/finder`
1113
* :doc:`/cookbook/logging/monolog`

0 commit comments

Comments
 (0)