Roundup Tracker - Issues

Issue 687771

classification
:startwith w/o @startwith still exists in templating.py
Type: Severity: normal
Components: Web interface Versions:
process
Status: closed fixed
:
: richard : richard, rouilj
Priority: normal :

Created on 2003-02-17 06:18 by rouilj, last changed 2003-02-17 06:18 by rouilj.

Messages
msg652 Author: [hidden] (rouilj) Date: 2003-02-17 06:18
The conversion to dual :/@ form in templating.py isn't 
complete.

indexargs_url still has support for only : form 
of:
search_text, pagesize, startwith.

Code:

    if 
self.search_text and not args.has_key(':search_text'):
            
l.append(sc+'search_text=%s'%self.search_text)
        if not 
args.has_key(':pagesize'):
            
l.append(sc+'pagesize=%s'%self.pagesize)
        if not 
args.has_key(':startwith'):
            
l.append(sc+'startwith=%s'%self.startwith)
        return 
'%s?%s'%(url, '&'.join(l))
msg653 Author: [hidden] (rouilj) Date: 2003-02-17 06:21
Logged In: YES 
user_id=707416

Actually add:

  :columns, :sort and :group and :filter to the 
list
of non @ supported parameters.
History
Date User Action Args
2003-02-17 06:18:46rouiljcreate