From 6e72acccc658b0cc19a0373df485c03771a53900 Mon Sep 17 00:00:00 2001 From: Ha!*!*y Date: Mon, 9 Jun 2014 19:45:11 -0700 Subject: [PATCH 1/4] Update remove.rst Add note about removing web/bundles/acmedemo directory --- cookbook/bundles/remove.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cookbook/bundles/remove.rst b/cookbook/bundles/remove.rst index 0a814d70d40..b8807bd0361 100644 --- a/cookbook/bundles/remove.rst +++ b/cookbook/bundles/remove.rst @@ -73,6 +73,12 @@ should remove the bundle from the filesystem. The bundle is located in the ``src/Acme/DemoBundle`` directory. You should remove this directory and you can remove the ``Acme`` directory as well. +3.1 Remove bundle resources +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Remove the Acme resource directory from the applications web folder. It can be found in ``web/bundles/acmedemo``. + + .. tip:: If you don't know the location of a bundle, you can use the From ec568daab96b6baaf75f90062843b74e504c87b9 Mon Sep 17 00:00:00 2001 From: Ha!*!*y Date: Wed, 11 Jun 2014 00:00:04 -0700 Subject: [PATCH 2/4] Update remove.rst --- cookbook/bundles/remove.rst | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/cookbook/bundles/remove.rst b/cookbook/bundles/remove.rst index b8807bd0361..d34be404880 100644 --- a/cookbook/bundles/remove.rst +++ b/cookbook/bundles/remove.rst @@ -73,12 +73,6 @@ should remove the bundle from the filesystem. The bundle is located in the ``src/Acme/DemoBundle`` directory. You should remove this directory and you can remove the ``Acme`` directory as well. -3.1 Remove bundle resources -~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Remove the Acme resource directory from the applications web folder. It can be found in ``web/bundles/acmedemo``. - - .. tip:: If you don't know the location of a bundle, you can use the @@ -87,6 +81,11 @@ Remove the Acme resource directory from the applications web folder. It can be f echo $this->container->get('kernel')->getBundle('AcmeDemoBundle')->getPath(); +3.1 Remove bundle resources +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Remove the Acme resource directory from the application's web folder. It can be found in ``web/bundles/acmedemo``. + 4. Remove Integration in other Bundles -------------------------------------- From d16e21eec9d7900e071c4c746b2151015be74d9f Mon Sep 17 00:00:00 2001 From: Ha!*!*y Date: Wed, 11 Jun 2014 00:01:28 -0700 Subject: [PATCH 3/4] Update remove.rst --- cookbook/bundles/remove.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/bundles/remove.rst b/cookbook/bundles/remove.rst index d34be404880..9ba95fee76d 100644 --- a/cookbook/bundles/remove.rst +++ b/cookbook/bundles/remove.rst @@ -81,7 +81,7 @@ can remove the ``Acme`` directory as well. echo $this->container->get('kernel')->getBundle('AcmeDemoBundle')->getPath(); -3.1 Remove bundle resources +3.1 Remove Bundle Resources ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Remove the Acme resource directory from the application's web folder. It can be found in ``web/bundles/acmedemo``. From 6f5c67c3212a4169a3355f01248a0928c71f654b Mon Sep 17 00:00:00 2001 From: WouterJ Date: Tue, 16 Sep 2014 15:37:44 +0200 Subject: [PATCH 4/4] Applied comments --- cookbook/bundles/remove.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cookbook/bundles/remove.rst b/cookbook/bundles/remove.rst index 9ba95fee76d..f289ecd144c 100644 --- a/cookbook/bundles/remove.rst +++ b/cookbook/bundles/remove.rst @@ -81,10 +81,11 @@ can remove the ``Acme`` directory as well. echo $this->container->get('kernel')->getBundle('AcmeDemoBundle')->getPath(); -3.1 Remove Bundle Resources -~~~~~~~~~~~~~~~~~~~~~~~~~~~ +3.1 Remove Bundle Assets +~~~~~~~~~~~~~~~~~~~~~~~~ -Remove the Acme resource directory from the application's web folder. It can be found in ``web/bundles/acmedemo``. +Remove the assets of the bundle in the web/ directory (e.g. +``web/bundles/acmedemo`` for the AcmeDemoBundle). 4. Remove Integration in other Bundles --------------------------------------