diff options
| author | Gabriel Hurley <gabehr@gmail.com> | 2010-11-07 01:42:55 +0000 |
|---|---|---|
| committer | Gabriel Hurley <gabehr@gmail.com> | 2010-11-07 01:42:55 +0000 |
| commit | 7f2b36050ee0c9e939d88f9ce368d1ccc2f67266 (patch) | |
| tree | 9586b7c0bf1ac77359da3028c7d3db40afebfd9d /docs/ref/templates | |
| parent | 1a878f30b0910bce4049643740bea2c693f9a1a0 (diff) | |
Fixed #10904 -- Corrected inappropriate usage of the term "absolute URL" throughout the docs. Replaced with the (RFC 2396-compliant) terms "absolute path reference" or "absolute path" as appropriate for the context. Thanks to sharan666 for the report, and Malcolm, Chris, and dwillis for their work in supplying a solution and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14482 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/templates')
| -rw-r--r-- | docs/ref/templates/builtins.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index 5fdef71a5f..9839fc7d5c 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -868,9 +868,10 @@ The argument tells which template bit to output: url ~~~ -Returns an absolute URL (i.e., a URL without the domain name) matching a given -view function and optional parameters. This is a way to output links without -violating the DRY principle by having to hard-code URLs in your templates:: +Returns an absolute path reference (a URL without the domain name) matching a +given view function and optional parameters. This is a way to output links +without violating the DRY principle by having to hard-code URLs in your +templates:: {% url path.to.some_view v1 v2 %} |
