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

Fixed Controller matching in the access control rules section #102

Closed
wants to merge 23 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
540223e
updated access control rules for matching a controller
Feb 14, 2011
e738be1
fixed the regex
Feb 14, 2011
1eed3e7
added Japanese translation of 01-The-Big-Picture.markdown
masakielastic Mar 17, 2010
5522f3d
[service_container] Initial import of the service container guide and…
weaverryan Feb 12, 2011
45e44a3
[reference] Bootstrapping the reference section.
weaverryan Feb 13, 2011
2b6003b
[service_container] Renaming everything to "Service Container", which…
weaverryan Feb 14, 2011
d6cb61a
[service_container] Fixing typo per Stof.
weaverryan Feb 14, 2011
7b1daa2
added missing files in the sandbox
fabpot Jun 30, 2010
543441b
added missing assets
fabpot Sep 16, 2010
c963d90
updated Templates and Final Thoughts
chaffneue Feb 6, 2011
27bf398
rephrasing Creating your first Application
ckwalsh Feb 5, 2011
c2998e9
updated Configuration
chaffneue Feb 5, 2011
bea2a8a
Improving Working with Environments
ckwalsh Feb 6, 2011
450e764
Better describing controllers
ckwalsh Feb 6, 2011
5aa1cde
updated Checking the Configuration
chaffneue Feb 5, 2011
0642e48
[Testing] fixed Form object retrieval with the Crawler instance
Feb 11, 2011
c31d60a
fixed typo
hidenorigoto Feb 12, 2011
80849f0
[Forms] Fixing an inline link by using the :ref: linking syntax.
weaverryan Feb 13, 2011
de617f6
[markup] Fixing two minor markup issues.
weaverryan Feb 13, 2011
2f97910
[Forms] Adding missing link to the form fields guide.
weaverryan Feb 13, 2011
1b0399c
[Forms] Reorganizing the form fields section to use a map file and ad…
weaverryan Feb 13, 2011
57bd1aa
updated Routing
chaffneue Feb 6, 2011
0f66b96
[quick_tour] Clarifying the namespace versus bundle name use in the c…
weaverryan Feb 11, 2011
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
Prev Previous commit
Next Next commit
rephrasing Creating your first Application
ckwalsh authored and srohweder committed Feb 14, 2011

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 27bf3982a035a2cd3ac0f5f1f195a0db25d9f515
8 changes: 4 additions & 4 deletions quick_tour/the_big_picture.rst
Original file line number Diff line number Diff line change
@@ -67,9 +67,9 @@ Symfony2 should congratulate you for your hard work so far!
Creating your first Application
-------------------------------

The sandbox comes with a simple Hello World ":term:`application`" and that's
the application we will use to learn more about Symfony2. Go to the following
URL to be greeted by Symfony2 (replace Fabien with your first name):
The sandbox comes with a simple Hello World ":term:`application`" we will use
to learn more about Symfony2. Go to the following URL to be greeted by Symfony2
(replace Fabien with your first name):

http://localhost/sandbox/web/app_dev.php/hello/Fabien

@@ -80,7 +80,7 @@ What's going on here? Let's dissect the URL:
* ``app_dev.php``: This is a "front controller". It is the unique entry point
of the application and it responds to all user requests;

* ``/hello/Fabien``: This is the "virtual" path to the resource the user wants
* ``/hello/Fabien``: This is the virtual path to the resource the user wants
to access.

Your responsibility as a developer is to write the code that maps the user