Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable

2020-08-06 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
-+-
 Reporter:  Vlada Macek  |Owner:  Nick Pope
 Type:  New feature  |   Status:  closed
Component:  Core (Other) |  Version:  master
 Severity:  Normal   |   Resolution:  fixed
 Keywords:  paginator, ellipsis  | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by Carlton Gibson ):

 * status:  assigned => closed
 * resolution:   => fixed


Comment:

 In [changeset:"0a306f7da668e53af2516bfad759b52d6c650b69" 0a306f7]:
 {{{
 #!CommitTicketReference repository=""
 revision="0a306f7da668e53af2516bfad759b52d6c650b69"
 Fixed #25513 -- Extracted admin pagination to
 Paginator.get_elided_page_range().
 }}}

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.ce9522ba9b66dbc2c807d8b5f8f6f500%40djangoproject.com.


Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable

2020-08-06 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
-+-
 Reporter:  Vlada Macek  |Owner:  Nick Pope
 Type:  New feature  |   Status:  assigned
Component:  Core (Other) |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  paginator, ellipsis  | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Carlton Gibson ):

 In [changeset:"f35840c19664fed7b6bc4cf561bf0b6fd1a3b463" f35840c1]:
 {{{
 #!CommitTicketReference repository=""
 revision="f35840c19664fed7b6bc4cf561bf0b6fd1a3b463"
 Refs #25513 -- Fixed admin pagination elision bounds.

 It doesn't make sense to elide a single page number which could be a
 clickable link to that page. We only want to elide two or more pages.
 }}}

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.bf9e8d3fed361d7b6c273613dcd56114%40djangoproject.com.


Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable

2020-08-06 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
-+-
 Reporter:  Vlada Macek  |Owner:  Nick Pope
 Type:  New feature  |   Status:  assigned
Component:  Core (Other) |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  paginator, ellipsis  | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Carlton Gibson ):

 In [changeset:"b203ec70fd7ffc4027380940157d1cf9c9e588ad" b203ec70]:
 {{{
 #!CommitTicketReference repository=""
 revision="b203ec70fd7ffc4027380940157d1cf9c9e588ad"
 Refs #25513 -- Adjusted admin pagination to be 1-indexed.
 }}}

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.e63491e4e33a0e6f4ad06a74407b331c%40djangoproject.com.


Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable

2020-08-06 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
-+-
 Reporter:  Vlada Macek  |Owner:  Nick Pope
 Type:  New feature  |   Status:  assigned
Component:  Core (Other) |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  paginator, ellipsis  | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by Carlton Gibson):

 * stage:  Accepted => Ready for checkin


-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.2bd13e32c626e1c96609432e398dc612%40djangoproject.com.


Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable

2020-07-09 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
-+-
 Reporter:  Vlada Macek  |Owner:  Nick Pope
 Type:  New feature  |   Status:  assigned
Component:  Core (Other) |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  paginator, ellipsis  | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by Nick Pope):

 * keywords:  paginator => paginator, ellipsis
 * needs_better_patch:  1 => 0
 * owner:  Sasha Gaevsky => Nick Pope


Comment:

 Updated with a new [https://github.com/django/django/pull/13173 PR].

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.f40469f672b4a38a8972c1fcbe21d0be%40djangoproject.com.


Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable

2018-08-23 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
--+-
 Reporter:  Vlada Macek   |Owner:  Sasha Gaevsky
 Type:  New feature   |   Status:  assigned
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:  paginator | Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  1
Easy pickings:  0 |UI/UX:  0
--+-
Changes (by Tim Graham):

 * needs_better_patch:  0 => 1


-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.bcf0107ccb7377fac262834c55ce05d1%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable

2018-08-22 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
--+-
 Reporter:  Vlada Macek   |Owner:  Sasha Gaevsky
 Type:  New feature   |   Status:  assigned
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:  paginator | Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+-
Changes (by Tim Graham):

 * needs_docs:  1 => 0


Comment:

 [https://github.com/django/django/pull/10328 PR]

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.f45af1db771cceeb801892993dee47eb%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable

2015-12-23 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
--+
 Reporter:  Tuttle|Owner:  sasha0
 Type:  New feature   |   Status:  assigned
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:  paginator | Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  1
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by timgraham):

 * needs_docs:  0 => 1


Comment:

 Looks like it's on the right track, but the new class should be documented
 too.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.bdd7d62f6d43a3914f21c12d82a301c7%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable

2015-12-23 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
--+
 Reporter:  Tuttle|Owner:  sasha0
 Type:  New feature   |   Status:  assigned
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:  paginator | Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by sasha0):

 * has_patch:  0 => 1


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.eb40450db3b85fec472b904948f64449%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable

2015-12-21 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
--+
 Reporter:  Tuttle|Owner:  sasha0
 Type:  New feature   |   Status:  assigned
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:  paginator | Triage Stage:  Accepted
Has patch:  0 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by sasha0):

 * owner:  nobody => sasha0
 * status:  new => assigned


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.8e4943fc45faac705f767b6b9ffa874e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25513: Refactor the admin paginator customizations to make them reuseable (was: Paginator support for large page counts)

2015-10-09 Thread Django
#25513: Refactor the admin paginator customizations to make them reuseable
--+
 Reporter:  Tuttle|Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:  paginator | Triage Stage:  Accepted
Has patch:  0 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by timgraham):

 * version:  1.9a1 => master
 * stage:  Unreviewed => Accepted


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.1a2cd24ffb7c2a6e07ee118468a1ce01%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.