From d43daccd2c9387259ecc8a601b5c4934f5375cac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20R=C3=ADos=20Francia?= Date: Tue, 2 Dec 2014 13:17:11 +0100 Subject: [PATCH 1/3] fixed little typo --- reference/twig_reference.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/twig_reference.rst b/reference/twig_reference.rst index d9ac5c386a8..8de5a7e4b69 100644 --- a/reference/twig_reference.rst +++ b/reference/twig_reference.rst @@ -403,7 +403,7 @@ transchoice .. code-block:: jinja - {{ message|transchoice(count, arguments, domai, locale) }} + {{ message|transchoice(count, arguments, domain, locale) }} ``message`` **type**: ``string`` From dd9de4efa1757793d38a80cc5f8d4d18cdbe974d Mon Sep 17 00:00:00 2001 From: xelaris Date: Sat, 29 Nov 2014 10:51:05 +0100 Subject: [PATCH 2/3] Add command to make symfony.phar executable. --- quick_tour/the_big_picture.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quick_tour/the_big_picture.rst b/quick_tour/the_big_picture.rst index bf10f772f1a..dab80a960bb 100644 --- a/quick_tour/the_big_picture.rst +++ b/quick_tour/the_big_picture.rst @@ -32,6 +32,7 @@ On **Linux** and **Mac OS X** systems, execute the following console commands: .. code-block:: bash $ curl -LsS http://symfony.com/installer > symfony.phar + $ chmod +x symfony.phar $ sudo mv symfony.phar /usr/local/bin/symfony .. note:: @@ -42,6 +43,7 @@ On **Linux** and **Mac OS X** systems, execute the following console commands: .. code-block:: bash $ php -r "readfile('http://symfony.com/installer');" > symfony.phar + $ chmod +x symfony.phar $ sudo mv symfony.phar /usr/local/bin/symfony After installing the Symfony installer, you'll have to open a new console window From 4257a2749cd59bce4315e7028a9e885101da77fd Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Thu, 4 Dec 2014 16:03:06 -0500 Subject: [PATCH 3/3] Updating the installer docs to exactly match that repository's README - see #4533 --- quick_tour/the_big_picture.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quick_tour/the_big_picture.rst b/quick_tour/the_big_picture.rst index dab80a960bb..361bfb1b84a 100644 --- a/quick_tour/the_big_picture.rst +++ b/quick_tour/the_big_picture.rst @@ -32,8 +32,8 @@ On **Linux** and **Mac OS X** systems, execute the following console commands: .. code-block:: bash $ curl -LsS http://symfony.com/installer > symfony.phar - $ chmod +x symfony.phar $ sudo mv symfony.phar /usr/local/bin/symfony + $ chmod a+x /usr/local/bin/symfony .. note:: @@ -43,8 +43,8 @@ On **Linux** and **Mac OS X** systems, execute the following console commands: .. code-block:: bash $ php -r "readfile('http://symfony.com/installer');" > symfony.phar - $ chmod +x symfony.phar $ sudo mv symfony.phar /usr/local/bin/symfony + $ chmod a+x /usr/local/bin/symfony After installing the Symfony installer, you'll have to open a new console window to be able to execute the new ``symfony`` command: