Changes between Version 49 and Version 50 of IrcFAQ


Ignore:
Timestamp:
Dec 19, 2007, 4:22:19 PM (16 years ago)
Author:
Paul Bissex
Comment:

fixed broken link, removed a no-longer-frequently-asked question

Legend:

Unmodified
Added
Removed
Modified
  • IrcFAQ

    v49 v50  
    4343== I'm using the development version (via Subversion) and when I ran "svn up" a bunch of stuff broke! == #SvnUp
    4444
    45 Don't use the development version unless you also follow the BackwardsIncompatibleChanges and possibly the [http://code.djangoproject.com/timeline timeline] as well. That way you can see what has changed *before* you update. 
     45Don't use the development version of Django unless you also follow the BackwardsIncompatibleChanges and possibly the [http://code.djangoproject.com/timeline timeline] as well. That way you can see what has changed *before* you update. 
    4646
    47 That way, changes like [phttp://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Auto-escapingintemplates auto-escaping of HTML in templates] won't catch you by surprise.
     47That way, changes like [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Auto-escapingintemplates auto-escaping of HTML in templates] won't catch you by surprise.
    4848
    4949Also, when reading the documentation, keep a special eye out for the "New In Development Version" sections.
     
    5252
    5353Start with the [http://www.djangoproject.com/documentation/ documentation] here, and then have a look at the book if you're interested; the documentation on djangoproject.com includes the official tutorial, and a number of comprehensive references which aren't currently available in the book.
    54 
    55 == What does `'function' object has no attribute 'rindex'` mean? == #WeirdError1
    56 
    57 This error is a telltale sign that you're trying to use examples in the Django book with an older version of Django -- the book includes examples which rely on features introduced in Django 0.96.
    5854
    5955== How do I extend a model? I want to subclass django.contrib.auth.models.User. == #ModelSubclassing
Back to Top