mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #14598 -- Changed some 'domain.com' uses to 'example.com'
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14440 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -21,7 +21,7 @@ DEBUG_PROPAGATE_EXCEPTIONS = False | |||||||
| USE_ETAGS = False | USE_ETAGS = False | ||||||
|  |  | ||||||
| # People who get code error notifications. | # People who get code error notifications. | ||||||
| # In the format (('Full Name', 'email@domain.com'), ('Full Name', 'anotheremail@domain.com')) | # In the format (('Full Name', 'email@example.com'), ('Full Name', 'anotheremail@example.com')) | ||||||
| ADMINS = () | ADMINS = () | ||||||
|  |  | ||||||
| # Tuple of IP addresses, as strings, that: | # Tuple of IP addresses, as strings, that: | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ DEBUG = True | |||||||
| TEMPLATE_DEBUG = DEBUG | TEMPLATE_DEBUG = DEBUG | ||||||
|  |  | ||||||
| ADMINS = ( | ADMINS = ( | ||||||
|     # ('Your Name', 'your_email@domain.com'), |     # ('Your Name', 'your_email@example.com'), | ||||||
| ) | ) | ||||||
|  |  | ||||||
| MANAGERS = ADMINS | MANAGERS = ADMINS | ||||||
|   | |||||||
| @@ -92,7 +92,7 @@ TEST_DATA = ( | |||||||
|     (URLValidator(), 'http://www.example.com/', None), |     (URLValidator(), 'http://www.example.com/', None), | ||||||
|     (URLValidator(), 'http://www.example.com:8000/test', None), |     (URLValidator(), 'http://www.example.com:8000/test', None), | ||||||
|     (URLValidator(), 'http://valid-with-hyphens.com/', None), |     (URLValidator(), 'http://valid-with-hyphens.com/', None), | ||||||
|     (URLValidator(), 'http://subdomain.domain.com/', None), |     (URLValidator(), 'http://subdomain.example.com/', None), | ||||||
|     (URLValidator(), 'http://200.8.9.10/', None), |     (URLValidator(), 'http://200.8.9.10/', None), | ||||||
|     (URLValidator(), 'http://200.8.9.10:8000/test', None), |     (URLValidator(), 'http://200.8.9.10:8000/test', None), | ||||||
|     (URLValidator(), 'http://valid-----hyphens.com/', None), |     (URLValidator(), 'http://valid-----hyphens.com/', None), | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user