Re: Admin css question for 1.10.7

2017-05-09 Thread Melvyn Sopacua
On Tuesday 09 May 2017 17:48:43 Mike Dewhirst wrote: > On 9/05/2017 11:45 AM, Mike Dewhirst wrote: > > On 8/05/2017 11:02 PM, Melvyn Sopacua wrote: > >> On Monday 08 May 2017 03:57:01 Tim Graham wrote: > >> > You need to clone the Django repository and run the bisect > >> > command > > >> > from t

Re: Admin css question for 1.10.7

2017-05-09 Thread Mike Dewhirst
On 9/05/2017 11:45 AM, Mike Dewhirst wrote: On 8/05/2017 11:02 PM, Melvyn Sopacua wrote: On Monday 08 May 2017 03:57:01 Tim Graham wrote: > You need to clone the Django repository and run the bisect command > from there: snip running /home/melvyn/hg/django-project/invert.sh Bisecting:

Re: Admin css question for 1.10.7

2017-05-08 Thread Mike Dewhirst
On 8/05/2017 11:02 PM, Melvyn Sopacua wrote: On Monday 08 May 2017 03:57:01 Tim Graham wrote: > You need to clone the Django repository and run the bisect command > from there: Simplicity in Unix: 1 #!/bin/sh 2 3 # Basically, make grep -qv behave like I want it to 4 5 file='django/contri

Re: Admin css question for 1.10.7

2017-05-08 Thread Melvyn Sopacua
On Monday 08 May 2017 03:57:01 Tim Graham wrote: > You need to clone the Django repository and run the bisect command > from there: Simplicity in Unix: 1 #!/bin/sh 2 3 # Basically, make grep -qv behave like I want it to 4 5 file='django/contrib/admin/static/admin/css/f

Re: Admin css question for 1.10.7

2017-05-08 Thread Tim Graham
You need to clone the Django repository and run the bisect command from there: https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/ That said, you might have some luck using the "Blame" button on https://github.com/django/django/blob/stable/1.9.x/django/contrib/

Re: Admin css question for 1.10.7

2017-05-07 Thread Mike Dewhirst
Tim The problem does not exist in 1.8.18 and does exist in 1.9 Here is the test I wrote to see if the css file contains the problem (which I established by trial and error) ... # -*- coding: utf-8 -*- import os from django.test import TestCase from django.contrib import admin expected = "fo

Re: Admin css question for 1.10.7

2017-05-07 Thread Mike Dewhirst
On 7/05/2017 8:12 PM, Tim Graham wrote: You can use git bisect to find the Django commit where the behavior changed: https://docs.djangoproject.com/en/dev/internals/contributing/triaging-tickets/#bisecting-a-regression Just read this and I have two problems ... 1. It is a css problem resultin

Re: Admin css question for 1.10.7

2017-05-07 Thread Tim Graham
You can use git bisect to find the Django commit where the behavior changed: https://docs.djangoproject.com/en/dev/internals/contributing/triaging-tickets/#bisecting-a-regression On Saturday, May 6, 2017 at 11:05:14 PM UTC-4, Mike Dewhirst wrote: > > I'm just (slowly) advancing from 1.8 to 1.11 an