@@ -43,7 +43,7 @@ Logging of internal messages
4343Roundup's previously ad-hoc logging of events has been cleaned up and is
4444now configured in a single place in the tracker configuration file.
4545
46- The `customisation documentation`_ has more details on how this is
46+ The `customization documentation`_ has more details on how this is
4747configured.
4848
4949
@@ -102,22 +102,22 @@ In both cases, the value is a valid charset name (eg. ``utf-8`` or
102102
103103Inside Roundup, all strings are stored and processed in utf-8.
104104Unfortunately, some older browsers do not work properly with
105- utf8 -encoded pages (e.g. Netscape Navigator 4 displays wrong
105+ utf-8 -encoded pages (e.g. Netscape Navigator 4 displays wrong
106106characters in form fields). This version allows to change
107107the character set for http transfers. To do so, you may add
108108the following code to your ``page.html`` template::
109109
110110 <tal:block define="uri string:${request/base}${request/env/PATH_INFO}">
111- <a tal:attributes="href python:request.indexargs_href (uri,
111+ <a tal:attributes="href python:request.indexargs_url (uri,
112112 {'@charset':'utf-8'})">utf-8</a>
113- <a tal:attributes="href python:request.indexargs_href (uri,
113+ <a tal:attributes="href python:request.indexargs_url (uri,
114114 {'@charset':'koi8-r'})">koi8-r</a>
115115 </tal:block>
116116
117- (substitute ``koi8-r`` with appropriate charset for your language).
117+ (substitute ``koi8-r`` with the appropriate charset for your language).
118118Charset preference is kept in the browser cookie ``roundup_charset``.
119119
120- Lines ``meta http-equiv`` added to the tracker templates in version 0.6.0
120+ ``meta http-equiv`` lines added to the tracker templates in version 0.6.0
121121should be changed to include actual character set name::
122122
123123 <meta http-equiv="Content-Type"
@@ -154,4 +154,4 @@ Web server
154154 The builtin web server may now perform HTTP Basic Authentication by
155155 itself.
156156
157- .. _`customisation documentation`: customizing.html
157+ .. _`customization documentation`: customizing.html
0 commit comments