Skip to content

Commit 6706eb2

Browse files
committed
Change ordered list to use numbers.
Orderd list was using letters, but sphynx was numbering it. The block after the list was using letters to refer to items in the list. Make everything use numbers.
1 parent 8cde913 commit 6706eb2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/customizing.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2266,27 +2266,27 @@ where tracker root is ``/tracker/`` or ``/cgi-bin/roundup.cgi/tracker/``
22662266
We're looking at "issue", "issue1", "@@file/style.css", "file1" and
22672267
"file1/kitten.png" in the cases above.
22682268

2269-
a. with is no path we are in the "home" context. See `the "home"
2269+
1. with is no path we are in the "home" context. See `the "home"
22702270
context`_ below for details. "index" or "home" paths may also be used
22712271
to switch into "home" context.
2272-
b. for paths starting with "@@file" the additional path entry ("style.css"
2272+
2. for paths starting with "@@file" the additional path entry ("style.css"
22732273
in the example above) specifies the static file to be served
22742274
from the tracker TEMPLATES directory (or STATIC_FILES, if configured).
22752275
This is usually the tracker's "html" directory. Internally this works
22762276
by raising SendStaticFile exception.
2277-
c. if there is something in the path (as in example 1, "issue"), it
2277+
3. if there is something in the path (as in example 1, "issue"), it
22782278
identifies the tracker class to display.
2279-
d. if the path is an item designator (as in examples 2 and 4, "issue1"
2279+
4. if the path is an item designator (as in examples 2 and 4, "issue1"
22802280
and "file1"), then we're to display a specific item.
22812281
:ref:`Note. <strip_zeros>`
2282-
e. if the path starts with an item designator and is longer than one
2282+
5. if the path starts with an item designator and is longer than one
22832283
entry (as in example 5, "file1/kitten.png"), then we're assumed to be
22842284
handling an item of a ``FileClass``, and the extra path information
22852285
gives the filename that the client is going to label the download
22862286
with (i.e. "file1/kitten.png" is nicer to download than "file1").
22872287
This raises a ``SendFile`` exception.
22882288

2289-
Neither b. or e. use templates and stop before the template is
2289+
Neither 2. or 5. use templates and stop before the template is
22902290
determined. For other contexts the template used is specified by the
22912291
``@template`` variable, which defaults to:
22922292

0 commit comments

Comments
 (0)