mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-11-01 00:17:40 +03:00 
			
		
		
		
	Added break_long_headers on templatetags and base template
This commit is contained in:
		
							parent
							
								
									df30b345b1
								
							
						
					
					
						commit
						92b5db5939
					
				|  | @ -115,7 +115,7 @@ | |||
|             </div> | ||||
|             <div class="response-info"> | ||||
|                 <pre class="prettyprint"><div class="meta nocode"><b>HTTP {{ response.status_code }} {{ response.status_text }}</b>{% autoescape off %} | ||||
| {% for key, val in response.items %}<b>{{ key }}:</b> <span class="lit">{{ val|urlize_quoted_links }}</span> | ||||
| {% for key, val in response.items %}<b>{{ key }}:</b> <span class="lit">{{ val|break_long_headers|urlize_quoted_links }}</span> | ||||
| {% endfor %} | ||||
| </div>{{ content|urlize_quoted_links }}</pre>{% endautoescape %} | ||||
|             </div> | ||||
|  |  | |||
|  | @ -260,3 +260,14 @@ def urlize_quoted_links(text, trim_url_limit=None, nofollow=True, autoescape=Tru | |||
|         elif autoescape: | ||||
|             words[i] = escape(word) | ||||
|     return ''.join(words) | ||||
| 
 | ||||
| 
 | ||||
| @register.filter | ||||
| def break_long_headers(header): | ||||
|     """ | ||||
|     Breaks headers longer than 160 characters (~page length) | ||||
|     when possible (are comma separated) | ||||
|     """ | ||||
|     if len(header) > 160: | ||||
|         header = mark_safe('<br> ' + ', <br>'.join(header.split(','))) | ||||
|     return header | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user