From 957c46d623c16a660b1dd2841b5b6854e968bf62 Mon Sep 17 00:00:00 2001 From: yositani2002 Date: Sun, 22 Jun 2014 03:09:42 +0900 Subject: [PATCH 1/4] fix typo. --- reference/forms/types/options/method.rst.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/forms/types/options/method.rst.inc b/reference/forms/types/options/method.rst.inc index 592191776a6..85b49840539 100644 --- a/reference/forms/types/options/method.rst.inc +++ b/reference/forms/types/options/method.rst.inc @@ -17,14 +17,14 @@ used to decide whether to process the form submission in the * DELETE * PATCH -.. note: +.. note:: When the method is PUT, PATCH, or DELETE, Symfony will automatically render a ``_method`` hidden field in your form. This is used to "fake" these HTTP methods, as they're not supported on standard browsers. For more information, see :doc:`/cookbook/routing/method_parameters`. -.. note: +.. note:: The PATCH method allows submitting partial data. In other words, if the submitted form data is missing certain fields, those will be ignored From c3734810aa52d5016edb8fdd5dd69e9e8517b1a1 Mon Sep 17 00:00:00 2001 From: Hugo Hamon Date: Mon, 23 Jun 2014 23:21:00 +0200 Subject: [PATCH 2/4] [cookbook] [deployment] removed marketing introduction in Azure Deployment cookbook. --- cookbook/deployment/azure-website.rst | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/cookbook/deployment/azure-website.rst b/cookbook/deployment/azure-website.rst index b410077ae0a..fc3b2d8b15e 100644 --- a/cookbook/deployment/azure-website.rst +++ b/cookbook/deployment/azure-website.rst @@ -4,24 +4,6 @@ Deploying to Microsoft Azure Website Cloud ========================================== -SensioLabs and Microsoft announce their partnership during the upcoming PHP Tour -in Lyon (France). This announcement covers several strategic aspects including -the integration of Symfony into the Microsoft Azure Website Cloud platform -destined to leverage all the devops aspects from Azure Websites to the Symfony2 -developers community. - -The two companies will provide all the needed tutorials allowing both -communities and companies to migrate their Symfony applications to the Microsoft -Azure Cloud platform. - -Additionally, Microsoft and SensioLabs are working on integrating Symfony into -the Azure Website gallery in an effort to simplify the deployment of Symfony -applications and provide a complete offer to satisfy various company's target -markets. - -Objectives ----------- - Simply put, this cookbook illustrates how to deploy a very simple **Symfony2 Standard Edition** web application. You can easily download a copy of the Symfony Standard Edition on the `downloads`_ page. Also, this cookbook assumes From b3f781f076f3bc8d150ded900017eabc9ad18449 Mon Sep 17 00:00:00 2001 From: Malte N Date: Fri, 13 Jun 2014 22:14:30 +0200 Subject: [PATCH 3/4] fix origin of AcmeDemoBundle --- cookbook/console/console_command.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cookbook/console/console_command.rst b/cookbook/console/console_command.rst index 8992d5193f5..92f5a59ebe1 100644 --- a/cookbook/console/console_command.rst +++ b/cookbook/console/console_command.rst @@ -14,8 +14,7 @@ Automatically Registering Commands To make the console commands available automatically with Symfony2, create a ``Command`` directory inside your bundle and create a PHP file suffixed with ``Command.php`` for each command that you want to provide. For example, if you -want to extend the AcmeDemoBundle (available in the Symfony Standard -Edition) to greet you from the command line, create ``GreetCommand.php`` and +want to extend the AcmeDemoBundle (available in the SensioDistributionBundle) to greet you from the command line, create ``GreetCommand.php`` and add the following to it:: // src/Acme/DemoBundle/Command/GreetCommand.php From c5a150f8ec44021d872aca944e7a08435517e376 Mon Sep 17 00:00:00 2001 From: Malte N Date: Sat, 21 Jun 2014 17:57:05 +0200 Subject: [PATCH 4/4] remove origin of AcmeDemoBundle I fixed a line break, too. --- cookbook/console/console_command.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/console/console_command.rst b/cookbook/console/console_command.rst index 92f5a59ebe1..342c3f7d83f 100644 --- a/cookbook/console/console_command.rst +++ b/cookbook/console/console_command.rst @@ -14,8 +14,8 @@ Automatically Registering Commands To make the console commands available automatically with Symfony2, create a ``Command`` directory inside your bundle and create a PHP file suffixed with ``Command.php`` for each command that you want to provide. For example, if you -want to extend the AcmeDemoBundle (available in the SensioDistributionBundle) to greet you from the command line, create ``GreetCommand.php`` and -add the following to it:: +want to extend the AcmeDemoBundle to greet you from the command line, create +``GreetCommand.php`` and add the following to it:: // src/Acme/DemoBundle/Command/GreetCommand.php namespace Acme\DemoBundle\Command;