mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Slightly simplified django.conf.urls.static.static().
This commit is contained in:
		
				
					committed by
					
						 Tim Graham
						Tim Graham
					
				
			
			
				
	
			
			
			
						parent
						
							c37ec5a659
						
					
				
				
					commit
					8ae90c58ac
				
			| @@ -18,10 +18,10 @@ def static(prefix, view=serve, **kwargs): | ||||
|     ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) | ||||
|     """ | ||||
|     # No-op if not in debug mode or an non-local prefix | ||||
|     if not settings.DEBUG or (prefix and '://' in prefix): | ||||
|         return [] | ||||
|     elif not prefix: | ||||
|     if not prefix: | ||||
|         raise ImproperlyConfigured("Empty static prefix not permitted") | ||||
|     elif not settings.DEBUG or '://' in prefix: | ||||
|         return [] | ||||
|     return [ | ||||
|         url(r'^%s(?P<path>.*)$' % re.escape(prefix.lstrip('/')), view, kwargs=kwargs), | ||||
|     ] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user