equal
deleted
inserted
replaced
168 if formgroups: |
168 if formgroups: |
169 match = inputurl.match(uri) |
169 match = inputurl.match(uri) |
170 for key in formgroups: |
170 for key in formgroups: |
171 form2[key] = match.group(key) |
171 form2[key] = match.group(key) |
172 if "vtitle" in form2: |
172 if "vtitle" in form2: |
173 form2['vtitle'] = req._(form2['vtitle']) |
173 form2['vtitle'] = req.__(form2['vtitle']) |
174 if form2: |
174 if form2: |
175 req.form.update(form2) |
175 req.form.update(form2) |
176 return controller, rset |
176 return controller, rset |
177 return do_build_rset |
177 return do_build_rset |
178 |
178 |