Changeset 1188
- Timestamp:
- 01/06/08 15:44:21 (11 months ago)
- Files:
-
- trunk/lib/merb/mixins/general_controller.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/merb/mixins/general_controller.rb
r1173 r1188 53 53 # url(:custom_new_blogpost, :action => 'alternate') # => /blogposts/new/alternate 54 54 # 55 # url(:comments, :blogpost => @post) # => /blogposts/1/comments56 # url(:new_comment, :blogpost => @post) # => /blogposts/1/comments/new55 # url(:comments, :blogpost_id => @post) # => /blogposts/1/comments 56 # url(:new_comment, :blogpost_id => @post) # => /blogposts/1/comments/new 57 57 # url(:comment, @comment) # => /blogposts/1/comments/1 58 58 # url(:edit_comment, @comment) # => /blogposts/1/comments/1/edit 59 # url(:custom_new_comment, :blogpost => @post)59 # url(:custom_new_comment, :blogpost_id => @post) 60 60 # 61 61 # url(:page => 2) # => /posts/show/1?page=2
