Changes between Version 78 and Version 79 of IrcFAQ


Ignore:
Timestamp:
May 9, 2008, 10:08:53 AM (16 years ago)
Author:
Paul Bissex
Comment:

added a couple unicode-related links

Legend:

Unmodified
Added
Removed
Modified
  • IrcFAQ

    v78 v79  
    159159It's likely that you're using {{{__str__()}}} with the development version of Django, or {{{__unicode__()}}} with a release version.  After the release of 0.96, Django's internals became fully Unicode aware.  As a result, model classes that used to use {{{__str__()}}} to provide string versions of themselves need to be updated to use {{{__unicode__()}}} to work with the development version of Django.  However, users of a Django release still need to use {{{__str__()}}}.
    160160
    161 More information on exactly what changed regarding Unicode in Django is available on the UnicodeBranch page.
     161More information on exactly what changed regarding Unicode in Django is available on the UnicodeBranch page; note the [http://code.djangoproject.com/wiki/UnicodeBranch#PortingApplicationsTheQuickChecklist application porting checklist] if you're coming from an older version of Django.
     162
     163See the StringEncoding page for an overview of how Django handles Unicode text.
    162164
    163165
Back to Top