Skip to content

Commit 33db485

Browse files
author
Richard Jones
committed
*** empty log message ***
1 parent 048cdbc commit 33db485

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

doc/whatsnew-0.7.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ you're not sure whether you have support, run::
3434

3535
python run_tests.py
3636

37-
and if you see a line saynig "Including XXXX tests" where XXXX is the
37+
and if you see a line saying "Including XXXX tests" where XXXX is the
3838
backend you wish to try, then you're on your way. The mysql and postgresql
3939
require their test environments to be set up. Read their respective
4040
documents in the "doc" directory to do that.
@@ -83,7 +83,7 @@ highly recommended, as the effort is minimal.
8383
url=String(), private_for=Link('user'))
8484

8585
That is, add the "private_for" property, and remove the line that says
86-
``query.setkey("name")``. The latter is the most important edit here.
86+
``query.setkey("name")``.
8787

8888
2. You will also need to copy the ``query.edit.html`` template page from the
8989
``templates/classic/html/`` directory of the source to your tracker's
@@ -152,10 +152,10 @@ Added CSV export action
152152
A new action has been added which exports the current index page or search
153153
result as a comma-separated-value (CSV) file.
154154

155-
To use it, add this to your "index" templates:
155+
To use it, add this to your "index" templates::
156156

157-
<a tal:attributes="href python:request.indexargs_url('issue',
158-
{'@action':'csv_export'})">Download as CSV</a>
157+
<a tal:attributes="href python:request.indexargs_url('issue',
158+
{'@action':'export_csv'})">Download as CSV</a>
159159

160160
Making sure that the ``'issue'`` part matches the class name of the page
161161
you're editing.

templates/classic/html/issue.index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
</table>
8484

8585
<a tal:attributes="href python:request.indexargs_url('issue',
86-
{'@action':'csv_export'})">Download as CSV</a>
86+
{'@action':'export_csv'})">Download as CSV</a>
8787

8888
<form method="GET" id="index-controls" tal:attributes="action request/classname">
8989

0 commit comments

Comments
 (0)