Skip to content

Commit 6561996

Browse files
committed
Set min python version for release 1.6. Login changes now required,
fix incorrect file name, add filename for keyword entry improvement.
1 parent 668a1a9 commit 6561996

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

doc/upgrading.txt

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ then you don't need to do anything. If you're upgrading from 0.5.6 to
1111
0.6.8 though, you'll need to check the "0.5 to 0.6" and "0.6.x to 0.6.3"
1212
steps.
1313

14-
**IMPORTANT** The v1.5.x releases of Roundup will be the last to support Python
15-
v2.5. Support for Python v2.5 will be dropped with the v1.6 release of Roundup,
16-
at which point users will need to run Roundup using either Python v2.6 or v2.7.
14+
**IMPORTANT** The v1.5.x releases of Roundup will be the last to
15+
support Python v2.5. Support for Python v2.5 and v2.66 will be dropped
16+
with the v1.6 release of Roundup. Roundup 1.6 and newer require
17+
Python v2.7.
1718

1819
Contents:
1920

@@ -248,8 +249,8 @@ the email entry in the tracker section::
248249
# Default:
249250
replyto_address =
250251

251-
Login from a search or after logout works better
252-
------------------------------------------------
252+
Login from a search or after logout works better (REQUIRED)
253+
-----------------------------------------------------------
253254

254255
The login form has been improved to work with some back end code
255256
changes. Now when a user logs in they stay on the same page where they
@@ -289,6 +290,13 @@ or with::
289290
the important part is that the action field **must not** include any query
290291
parameters ('#' includes query params).
291292

293+
One symptom of failing to do this is getting an error:
294+
295+
Unrecognized scheme in ....
296+
297+
where the .... changes depending on the url path. You can see this
298+
when logging in from any screen other than the main index.
299+
292300
Option to make adding multiple keywords more convenient
293301
-------------------------------------------------------
294302

@@ -300,7 +308,7 @@ a new checkbox (checked by default) that keeps you on the same page so
300308
you can add a new keywords one after the other.
301309

302310
To add this to your own tracker, add the following code (prefixed with
303-
a +) after the entry box for the new keyword::
311+
a +) after the entry box for the new keyword in html/keyword.item.html::
304312

305313
<tr>
306314
<th i18n:translate="">Keyword</th>
@@ -328,7 +336,7 @@ property. It is a url which can be used when creating any new item
328336
(issue, user, keyword ....). It controls the next page displayed after
329337
creating the item. If '__redirect_to' is not set, then you end up on
330338
the page for the newly created item. The url value assigned to
331-
__redirect_to must be under the tracker's base url and must be properly
339+
__redirect_to must start with the tracker's base url and must be properly
332340
url encoded.
333341

334342
Helper popups trigger change events on the original page
@@ -549,7 +557,7 @@ page when the search is triggered. This is usually correct since the
549557
user expects to see the results of the query. But now that
550558
the code properly checks for duplicate search names, the user should
551559
stay on the search page if there is an error. To add this to your
552-
existing index.search.html page, add the following line after the
560+
existing issue.search.html page, add the following line after the
553561
hidden field @old-queryname:
554562

555563
<input type="hidden" name="@template" value="index|search"/>

0 commit comments

Comments
 (0)