Re: Django Error Display Page

2011-06-11 Thread Mateusz Harasymczuk
Why not to give ability to chose by the developer?

if settings.VERBOSE_DEBUG:
as it is
else:
tabbed view

or

DEBUG_VIEW = 'tabbed'
DEBUG_VIEW = 'default'
etc...

IMHO: DEBUG_VIEW is better and more extensible in future.


--
Matt Harasymczuk
http://www.matt.harasymczuk.pl

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-developers/-/DCJeGXfO8s0J.
To post to this group, send email to django-developers@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.



Re: Deprecation policy for IE6

2011-06-11 Thread Javier Guerra Giraldez
On Sat, Jun 11, 2011 at 1:14 AM, Mateusz Harasymczuk
 wrote:
> If someone moved out of the IE 6, then he/she move out of the IE 7, too.

while i agree, i found microsoft's tortuous path to standards full of
dark corners.

case in point: some time ago, i was using some simple  pages.
of course, to get them to work on IE6 & 7 i used excanvas.js, which
made a not-so-bad job.  some things were missing, but it was doable.

also, on IE7 i preferred to use 'standards mode', since it made some
CSS and box layouts not as bad as IE6

when IE8 came out, i tried it.  the new 'standards mode' was slightly
more standard CSS and box layouts; but excanvas.js just didn't work.
after some reading, i found that IE8 standards killed VML (the MS
alternative to SVG), which excanvas used to fake the canvas element.

finally, i had to force "IE7-standards mode"  everywhere.  effectively
disabling any IE8 advantage (nothing to weep about, fortunately).

tl;dr;  in my case, IE8 is less useful than IE7

-- 
Javier

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.