Django

Code

Changeset 2871

Show
Ignore:
Timestamp:
05/09/06 10:31:03 (2 years ago)
Author:
adrian
Message:

Fixed #1811 -- Fixed inconsistencies in docs/overview.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/overview.txt

    r2867 r2871  
    184184 
    185185For example, if a user requested the URL "/articles/2005/05/39323/", Django 
    186 would call the function ``mysite.news.views.article_detail(request, 
     186would call the function ``mysite.views.article_detail(request, 
    187187'2005', '05', '39323')``. 
    188188 
     
    235235means "Output the value of the article's headline attribute." But dots aren't 
    236236used only for attribute lookup: They also can do dictionary-key lookup, index 
    237 lookup and function calls (as is the case with ``article.get_reporter``)
     237lookup and function calls
    238238 
    239239Note ``{{ article.pub_date|date:"F j, Y" }}`` uses a Unix-style "pipe" (the "|"