Re: [Django] #18225: Staticfiles template tag does not fail silently

2014-04-26 Thread Django
#18225: Staticfiles template tag does not fail silently
-+
 Reporter:  bouke|Owner:  moritzs
 Type:  Bug  |   Status:  closed
Component:  contrib.staticfiles  |  Version:  1.4
 Severity:  Normal   |   Resolution:  wontfix
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  1|UI/UX:  0
-+

Comment (by anon0405@…):

 It would be nice if there were a setting that toggled whether this fails
 loudly or silently -- often it is better to serve an html file with broken
 formatting (missing css), missing functionality (missing js), or missing
 niceties (missing .ico) than to throw up a server error and prevent any
 information from reaching the end user.

 Especially where the behavior of {% static %} is explicitly to not raise
 errors in development, the current behavior creates time bombs that are
 out of step with the rest of django's template error philosophy -- fail
 silently whenever possible.

 Two options are:
 * {% static 'file/path.stuff' True %} -- passing an optional parameter of
 whether to fail silently, so this can be turned on/off as needed
 * STATIC_TAG_FAILS_SILENTLY=True -- an option in settings.py

 If there isn't a way to make it fail silently in production, then the
 errors should somehow be raised in DEV so they are caught and fixed.

-- 
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/063.6490c7eb7ef3b00dc9b035a2f20c069b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #18225: Staticfiles template tag does not fail silently

2012-05-10 Thread Django
#18225: Staticfiles template tag does not fail silently
-+
 Reporter:  bouke|Owner:  moritzs
 Type:  Bug  |   Status:  closed
Component:  contrib.staticfiles  |  Version:  1.4
 Severity:  Normal   |   Resolution:  wontfix
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  1|UI/UX:  0
-+
Changes (by jezdez):

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


Comment:

 First of all, please don't accept your own tickets, we have a community of
 ticket triagers that didn't have a chance to see this ticket since you
 didn't leave it at the Unreviewed state.

 Secondly, I'm sorry but this isn't Django's fault, if you're missing a
 file, it's good to raise an exception. You quoted a part of the
 documentation of how to write the render method of custom template tags,
 not how template tags should work in general. It is an error to refer to a
 file with the staticfiles' static template tag as it uses a storage
 backend to calculate the URL of the static files. If you just want to
 generate a URL that is concatenated with STATIC_URL, use the core static
 template tag:
 https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs#std
 :templatetag-static

-- 
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 post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #18225: Staticfiles template tag does not fail silently

2012-05-02 Thread Django
#18225: Staticfiles template tag does not fail silently
-+
 Reporter:  bouke|Owner:  moritzs
 Type:  Bug  |   Status:  assigned
Component:  contrib.staticfiles  |  Version:  1.4
 Severity:  Normal   |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  1|UI/UX:  0
-+
Changes (by moritzs):

 * has_patch:  0 => 1


Comment:

 Added patch ([https://github.com/django/django/pull/37 Github Pull
 Request])

-- 
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 post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #18225: Staticfiles template tag does not fail silently

2012-05-02 Thread Django
#18225: Staticfiles template tag does not fail silently
-+
 Reporter:  bouke|Owner:  moritzs
 Type:  Bug  |   Status:  assigned
Component:  contrib.staticfiles  |  Version:  1.4
 Severity:  Normal   |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  1|UI/UX:  0
-+
Changes (by moritzs):

 * status:  new => assigned
 * cc: moritz.sichert@… (added)
 * owner:  nobody => moritzs


-- 
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 post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #18225: Staticfiles template tag does not fail silently

2012-05-01 Thread Django
#18225: Staticfiles template tag does not fail silently
-+
 Reporter:  bouke|Owner:  nobody
 Type:  Bug  |   Status:  new
Component:  contrib.staticfiles  |  Version:  1.4
 Severity:  Normal   |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  1|UI/UX:  0
-+
Changes (by moritzs):

 * needs_docs:   => 0
 * needs_better_patch:   => 0
 * needs_tests:   => 0
 * easy:  0 => 1
 * 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 post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.