Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update doc url #7435

Merged
merged 3 commits into from
Aug 16, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cookbook/recipe_sortable_listing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is a full working example of how to implement a sortable feature in your So
Background
----------

A sortable behavior is already available for one-to-many relationships (https://sonata-project.org/bundles/doctrine-orm-admin/master/doc/reference/form_field_definition.html#advanced-usage-one-to-many).
A sortable behavior is already available for one-to-many relationships (https://docs.sonata-project.org/projects/SonataDoctrineORMAdminBundle/en/3.x/reference/form_field_definition/#advanced-usage-one-to-many).
However there is no packaged solution to have some up and down arrows to sort
your records such as showed in the following screen

Expand Down
6 changes: 3 additions & 3 deletions docs/getting_started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,6 @@ provided admin functionality for the admin bundle yet. Fortunately, you'll
learn how to do this in the :doc:`next chapter <creating_an_admin>`.

.. _`installation chapter`: https://getcomposer.org/doc/00-intro.md
.. _SonataDoctrineORMAdminBundle: https://sonata-project.org/bundles/doctrine-orm-admin/master/doc/index.html
.. _SonataDoctrineMongoDBAdminBundle: https://sonata-project.org/bundles/mongo-admin/master/doc/index.html
.. _SonataDoctrinePhpcrAdminBundle: https://sonata-project.org/bundles/doctrine-phpcr-admin/master/doc/index.html
.. _SonataDoctrineORMAdminBundle: https://docs.sonata-project.org/projects/SonataDoctrineORMAdminBundle/en/3.x/
.. _SonataDoctrineMongoDBAdminBundle: https://docs.sonata-project.org/projects/SonataDoctrineMongoDBAdminBundle/en/3.x/
.. _SonataDoctrinePhpcrAdminBundle: https://docs.sonata-project.org/projects/SonataDoctrinePhpcrAdminBundle/en/2.x/
3 changes: 1 addition & 2 deletions docs/reference/action_list.rst
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,5 @@ Combine this with configuring a custom template and you'll have a list column fu
]);
}

.. _`SonataDoctrineORMAdminBundle Documentation`: https://sonata-project.org/bundles/doctrine-orm-admin/master/doc/reference/list_field_definition.html
.. _`SonataDoctrineORMAdminBundle Documentation`: https://docs.sonata-project.org/projects/SonataDoctrineORMAdminBundle/en/3.x/reference/list_field_definition
.. _`here`: https://github.com/sonata-project/form-extensions/tree/1.x/src/Type

2 changes: 1 addition & 1 deletion docs/reference/advanced_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -466,4 +466,4 @@ adding the following in the configuration:
sonata_admin:
default_controller: App\Controller\DefaultCRUDController

.. _`Core's documentation`: https://sonata-project.org/bundles/core/master/doc/reference/form_types.html#sonata-type-translatable-choice
.. _`Core's documentation`: https://docs.sonata-project.org/projects/SonataDoctrineORMAdminBundle/en/3.x/reference/form_types.html#sonata-type-translatable-choice
2 changes: 1 addition & 1 deletion docs/reference/dashboard.rst
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ suit this scenario.
In this example, you would have two ``admin_list`` blocks on your dashboard, each
of them containing the respectively configured groups.

.. _`SonataBlock documentation page`: https://sonata-project.org/bundles/block/master/doc/index.html
.. _`SonataBlock documentation page`: https://docs.sonata-project.org/projects/SonataBlockBundle/en/3.x/

Statistic Block
~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/events.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ Block events help you customize your templates. Available events are :
- ``sonata.admin.show.bottom``

If you want more information about block events, you should check the
`"Event" section of block bundle documentation <https://sonata-project.org/bundles/block/master/doc/reference/events.html>`_.
`"Event" section of block bundle documentation <https://docs.sonata-project.org/projects/SonataBlockBundle/en/3.x/reference/events>`_.
6 changes: 3 additions & 3 deletions docs/reference/form_types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -823,6 +823,6 @@ Symfony\\Component\\Form\\Extension\\Core\\Type\\ChoiceType
.. _`Symfony field types`: https://symfony.com/doc/4.4/reference/forms/types.html
.. _`Symfony choice Field Type docs`: https://symfony.com/doc/4.4/reference/forms/types.html#choice-fields
.. _`Symfony PropertyPath`: https://github.com/symfony/property-access/blob/4.4/PropertyPath.php
.. _`ORM`: https://sonata-project.org/bundles/doctrine-orm-admin/master/doc/reference/form_field_definition.html
.. _`PHPCR`: https://sonata-project.org/bundles/doctrine-phpcr-admin/master/doc/reference/form_field_definition.html
.. _`MongoDB`: https://sonata-project.org/bundles/mongo-admin/master/doc/reference/form_field_definition.html
.. _`ORM`: https://docs.sonata-project.org/projects/SonataDoctrineORMAdminBundle/en/3.x/reference/form_field_definition/
.. _`PHPCR`: https://docs.sonata-project.org/projects/SonataDoctrinePhpcrAdminBundle/en/2.x/reference/form_field_definition/
.. _`MongoDB`: https://docs.sonata-project.org/projects/SonataDoctrineMongoDBAdminBundle/en/3.x/reference/form_field_definition/
2 changes: 1 addition & 1 deletion docs/reference/security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -788,6 +788,6 @@ return an iterable collection of roles::
}


.. _`SonataUserBundle's documentation area`: https://sonata-project.org/bundles/user/master/doc/reference/installation.html
.. _`SonataUserBundle's documentation area`: https://docs.sonata-project.org/projects/SonataUserBundle/en/4.x/reference/installation
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing /

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

.. _`changing the access decision strategy`: https://symfony.com/doc/4.4/security/voters.html#changing-the-access-decision-strategy
.. _`create your own voter`: https://symfony.com/doc/4.4/security/voters.html