Skip to content

Commit 60c2a1f

Browse files
author
Richard Jones
committed
oops, double-@
1 parent a2d60f0 commit 60c2a1f

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

doc/customizing.txt

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.144 $
5+
:Version: $Revision: 1.145 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -982,21 +982,23 @@ identifier is examined. Typical URL paths look like:
982982

983983
1. ``/tracker/issue``
984984
2. ``/tracker/issue1``
985-
3. ``/tracker/@file/style.css``
985+
3. ``/tracker/@@file/style.css``
986986
4. ``/cgi-bin/roundup.cgi/tracker/file1``
987987
5. ``/cgi-bin/roundup.cgi/tracker/file1/kitten.png``
988988

989989
where the "tracker identifier" is "tracker" in the above cases. That means
990-
we're looking at "issue", "issue1", "@file/style.css", "file1" and
990+
we're looking at "issue", "issue1", "@@file/style.css", "file1" and
991991
"file1/kitten.png" in the cases above. The path is generally only one
992992
entry long - longer paths are handled differently.
993993

994994
a. if there is no path, then we are in the "home" context. See `the "home"
995995
context`_ below for more information about how it may be used.
996-
b. if the path starts with "@file" (as in example 3,
997-
"/tracker/@file/style.css"), then the additional path entry,
996+
b. if the path starts with "@@file" (as in example 3,
997+
"/tracker/@@file/style.css"), then the additional path entry,
998998
"style.css" specifies the filename of a static file we're to serve up
999-
from the tracker "html" directory. Raises a SendStaticFile exception.
999+
from the tracker TEMPLATES (or STATIC_FILES, if configured) directory.
1000+
This is usually the tracker's "html" directory. Raises a SendStaticFile
1001+
exception.
10001002
c. if there is something in the path (as in example 1, "issue"), it
10011003
identifies the tracker class we're to display.
10021004
d. if the path is an item designator (as in examples 2 and 4, "issue1"
@@ -1041,7 +1043,7 @@ Serving static content
10411043
----------------------
10421044

10431045
See the previous section `determining web context`_ where it describes
1044-
``@file`` paths.
1046+
``@@file`` paths.
10451047

10461048

10471049
Performing actions in web requests

0 commit comments

Comments
 (0)