Changeset 3719
- Timestamp:
- 11/19/07 04:08:17 (8 months ago)
- Files:
-
- branches/1.1/CHANGELOG.txt (modified) (1 diff)
- branches/1.1/turbogears/paginate.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/CHANGELOG.txt
r3717 r3719 44 44 and synonyms' attributes. It also supports SQLAlchemy 0.4.1, which 45 45 removed the "properties" accessor on Mapper. 46 47 *Contributors* 48 49 Joel Pearson, Christoph Zwerschke, Roger Demetrescu 46 * Tickets #1605. Ensure paginate links bring the same result when using 47 ordering columns with a custom datagrid template. 48 49 *Contributors* 50 51 Joel Pearson, Christoph Zwerschke, Roger Demetrescu, Juan Germano 50 52 51 53 1.0.4b2 (October, 27, 2007): branches/1.1/turbogears/paginate.py
r3717 r3719 321 321 # to break the API. 322 322 order = order or None 323 self.input_values[self.var_name + '_tgp_no'] = page 323 input_values = self.input_values.copy() 324 input_values[self.var_name + '_tgp_no'] = page 324 325 if order: 325 self.input_values[self.var_name + '_tgp_order'] = order326 327 return turbogears.url('', self.input_values)326 input_values[ self.var_name + '_tgp_order'] = order 327 328 return turbogears.url('', input_values) 328 329 329 330 def _select_pages_to_show(current_page, page_count, max_pages):