Development

Changeset 11181

You must first sign up to be able to contribute.

Changeset 11181

Show
Ignore:
Timestamp:
08/26/08 23:18:17 (3 months ago)
Author:
FabianLange
Message:

doc: fixed yml presentation in sidebar of chapter 9. fixes #4117

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/branches/1.1/book/09-Links-and-the-Routing-System.txt

    r11179 r11181  
    440440>**New in symfony 1.1** named wildcards can be separated by a slash or a dot, so you can write a pattern like: 
    441441> 
    442 >    my_rule:  
    443 >      url:   /foo/:bar.:format  
    444 >      param: { module: mymodule, action: myaction } 
     442>    my_rule: 
     443>      url:   /foo/:bar.:format 
     444>      param: { module: mymodule, action: myaction } 
    445445> 
    446446>That way, an external URL like 'foo/12.xml' will match `my_rule` and execute `mymodule/myaction` with two parameters: `$bar=12` and `$format=xml`. 
  • doc/branches/1.2/book/09-Links-and-the-Routing-System.txt

    r11179 r11181  
    440440>**New in symfony 1.1** named wildcards can be separated by a slash or a dot, so you can write a pattern like: 
    441441> 
    442 >    my_rule: 
    443 >      url:   /foo/:bar.:format 
    444 >      param: { module: mymodule, action: myaction } 
     442>    my_rule: 
     443>      url:   /foo/:bar.:format 
     444>      param: { module: mymodule, action: myaction } 
    445445> 
    446446>That way, an external URL like 'foo/12.xml' will match `my_rule` and execute `mymodule/myaction` with two parameters: `$bar=12` and `$format=xml`.