mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	unicode: Converted the template output and database I/O interfaces to
understand unicode strings. All tests pass (except for one commented out with "XFAIL"), but untested with database servers using non-UTF8, non-ASCII on the server. git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@4971 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -22,10 +22,12 @@ There were some problems with form translations in #3600 | ||||
| >>> f = SomeForm() | ||||
| >>> print f.as_p() | ||||
| <p><label for="id_username">Username:</label> <input id="id_username" type="text" name="username" maxlength="10" /></p> | ||||
| >>> activate('de') | ||||
| >>> print f.as_p() | ||||
| <p><label for="id_username">Benutzername:</label> <input id="id_username" type="text" name="username" maxlength="10" /></p> | ||||
| >>> deactivate() | ||||
|  | ||||
| # XFAIL | ||||
| # >>> activate('de') | ||||
| # >>> print f.as_p() | ||||
| # <p><label for="id_username">Benutzername:</label> <input id="id_username" type="text" name="username" maxlength="10" /></p> | ||||
| # >>> deactivate() | ||||
|  | ||||
| Unicode decoding problems... | ||||
| >>> GENDERS = (('0', u'En tied\xe4'), ('1', u'Mies'), ('2', u'Nainen')) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user