Skip to content

Commit fd00dfa

Browse files
committed
docs: update :ref: ids
1 parent 580a59b commit fd00dfa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

user_guide_src/source/changelogs/v4.4.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ Others
261261
- If a controller is found that corresponds to a URI segment and that controller
262262
does not have a method defined for the URI segment, the default method will
263263
now be executed. This addition allows for more flexible handling of URIs in
264-
auto routing. See :ref:`controller-default-method-fallback` for details.
264+
auto routing. See :ref:`auto-routing-improved-default-method-fallback` for details.
265265
- **Filters:** Now you can use Filter Arguments with :ref:`$filters property <filters-filters-filter-arguments>`.
266266
- **Request:** Added ``IncomingRequest::setValidLocales()`` method to set valid locales.
267267
- **Table:** Added ``Table::setSyncRowsWithHeading()`` method to synchronize row columns with headings. See :ref:`table-sync-rows-with-headings` for details.

user_guide_src/source/changelogs/v4.5.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Routing
6262

6363
- **AutoRouting Improved:** The ``$translateUriToCamelCase`` option has been added
6464
that allows using CamelCase controller and method names. See
65-
:ref:`controller-translate-uri-to-camelcase`.
65+
:ref:`translate-uri-to-camelcase`.
6666
- **Others:**
6767
- Added option ``$multipleSegmentsOneParam``. When this option is
6868
enabled, a placeholder that matches multiple segments, such as ``(:any)``, will

user_guide_src/source/incoming/auto_routing_improved.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If you know it well, these are some changes in **Auto Routing (Improved)**:
5252
in 404.
5353
- It does not support ``_remap()`` method.
5454
- It restricts one-to-one correspondence between controller methods and URIs.
55-
But it has :ref:`controller-default-method-fallback`.
55+
But it has :ref:`auto-routing-improved-default-method-fallback`.
5656
- Can't access controllers in Defined Routes.
5757
- It completely separates controllers accessible via **Auto Routing** from
5858
those accessible via **Defined Routes**.
@@ -220,7 +220,7 @@ By default, the Default Controller is ``Home``.
220220
For more information, please refer to the
221221
:ref:`routing-auto-routing-improved-configuration-options`.
222222

223-
.. _controller-default-method-fallback:
223+
.. _auto-routing-improved-default-method-fallback:
224224

225225
***********************
226226
Default Method Fallback
@@ -389,7 +389,7 @@ controller existed, the ``Products::getListAll()`` method would be executed::
389389
name. In the example above, you can access **example.com/products**, but if
390390
you access **example.com/products/listall**, it will be not found.
391391

392-
.. _controller-translate-uri-to-camelcase:
392+
.. _translate-uri-to-camelcase:
393393

394394
Translate URI To CamelCase
395395
==========================

0 commit comments

Comments
 (0)