Changes between Version 49 and Version 50 of IrcFAQ
- Timestamp:
- Dec 19, 2007, 4:22:19 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IrcFAQ
v49 v50 43 43 == I'm using the development version (via Subversion) and when I ran "svn up" a bunch of stuff broke! == #SvnUp 44 44 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.45 Don'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. 46 46 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.47 That way, changes like [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Auto-escapingintemplates auto-escaping of HTML in templates] won't catch you by surprise. 48 48 49 49 Also, when reading the documentation, keep a special eye out for the "New In Development Version" sections. … … 52 52 53 53 Start 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? == #WeirdError156 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.58 54 59 55 == How do I extend a model? I want to subclass django.contrib.auth.models.User. == #ModelSubclassing