Displaying 2 results from an estimated 2 matches for "article_url".
Did you mean:
articles_url
2006 May 27
0
Typo 1055 created_at Vs. published_at
...hed_at date,
instead of the created_at date. The admin interface only allows changes
to the published_at date. Using the published_at date in the user
interface gives you more control over your blog and how the articles are
presented.
Here are my suggestions:
app/models/blog.rb
line 140
def article_url(article, only_path = true, anchor = nil)
# Changed from created_at to published_at - Ed Gard 5/27/06
#url_for(:year => article.created_at.year,
# :month => sprintf("%.2d", article.created_at.month),
# :day => sprintf("%.2d", article.created_a...
2006 Jul 22
12
Community request - can someone show me REST?
I mentioned this in another thread, but I''ve got a formal request now.
After reading tons of stuff about REST, I don''t really get it. I
need to see an example.
I''d like someone to write up an example blog app with these requirements
- RESTful using the simply_restful plugin (or edge rails)
- allows posting of comments to articles
- has categories for posts
No need