Ticket #9465: ref.diff
File ref.diff, 6.3 KB (added by , 15 years ago) |
---|
-
docs/ref/middleware.txt
1 1 .. _ref-middleware: 2 2 3 3 ============================= 4 Built-in middleware reference4 Middleware 5 5 ============================= 6 6 7 7 .. module:: django.middleware -
docs/ref/templates/index.txt
1 1 .. _ref-templates-index: 2 2 3 Template reference3 Templates 4 4 ================== 5 5 6 6 Django's template engine provides a powerful mini-language for defining the -
docs/ref/contrib/index.txt
1 1 .. _ref-contrib-index: 2 2 3 3 ============================ 4 The "django.contrib" add-ons 4 Contrib 5 5 ============================ 6 6 7 7 Django aims to follow Python's `"batteries included" philosophy`_. It ships -
docs/ref/files/index.txt
1 1 .. _ref-files-index: 2 2 3 File handling reference3 File handling 4 4 ======================= 5 5 6 6 .. module:: django.core.files -
docs/ref/request-response.txt
298 298 >>> q = q.copy() # to make it mutable 299 299 >>> q.update({'a': '2'}) 300 300 >>> q.getlist('a') 301 [ '1','2']301 [u'1', u'2'] 302 302 >>> q['a'] # returns the last 303 [ '2']303 [u'2'] 304 304 305 305 .. method:: QueryDict.items() 306 306 … … 309 309 310 310 >>> q = QueryDict('a=1&a=2&a=3') 311 311 >>> q.items() 312 [( 'a', '3')]312 [(u'a', '3')] 313 313 314 314 .. method:: QueryDict.iteritems() 315 315 … … 329 329 330 330 >>> q = QueryDict('a=1&a=2&a=3') 331 331 >>> q.values() 332 [ '3']332 [u'3'] 333 333 334 334 .. method:: QueryDict.itervalues() 335 335 … … 369 369 370 370 >>> q = QueryDict('a=1&a=2&a=3') 371 371 >>> q.lists() 372 [( 'a', ['1', '2', '3'])]372 [(u'a', ['1', '2', '3'])] 373 373 374 374 .. method:: QueryDict.urlencode() 375 375 -
docs/ref/unicode.txt
1 1 .. _ref-unicode: 2 2 3 3 ====================== 4 Unicode data in Django4 Unicode 5 5 ====================== 6 6 7 7 .. versionadded:: 1.0 -
docs/ref/databases.txt
1 1 .. _ref-databases: 2 2 3 3 =============================== 4 Notes about supported databases4 Databases 5 5 =============================== 6 6 7 7 Django attempts to support as many features as possible on all database … … 88 88 Django expects the database to support transactions, referential integrity, and 89 89 Unicode (UTF-8 encoding). Fortunately, MySQL_ has all these features as 90 90 available as far back as 3.23. While it may be possible to use 3.23 or 4.0, 91 you'll probably have less trouble if you use 4.1 or 5.0.91 you'll probably have less trouble if you use 4.1, 5.0, or 5.1. 92 92 93 93 MySQL 4.1 94 94 --------- … … 110 110 .. _MySQL: http://www.mysql.com/ 111 111 .. _MySQL 4.1: http://dev.mysql.com/doc/refman/4.1/en/index.html 112 112 .. _MySQL 5.0: http://dev.mysql.com/doc/refman/5.0/en/index.html 113 .. _MySQL 5.1: http://dev.mysql.com/doc/refman/5.1/en/index.html 113 114 114 115 Storage engines 115 116 --------------- … … 117 118 MySQL has several `storage engines`_ (previously called table types). You can 118 119 change the default storage engine in the server configuration. 119 120 120 The default engine is MyISAM_ [#]_. The main drawback of MyISAM is that it121 doesn't currentlysupport transactions or foreign keys. On the plus side, it's121 The default engine is often MyISAM_ [#]_. The main drawback of MyISAM is that it 122 doesn't support transactions or foreign keys. On the plus side, it's 122 123 currently the only engine that supports full-text indexing and searching. 123 124 124 125 The InnoDB_ engine is fully transactional and supports foreign key references. 125 126 126 The BDB_ engine, like InnoDB, is also fully transactional and supports foreign127 key references. However, its use seems to be deprecated.128 129 127 `Other storage engines`_, including SolidDB_ and Falcon_, are on the horizon. 130 128 For now, InnoDB is probably your best choice. 131 129 -
docs/ref/authbackends.txt
1 1 .. _ref-authentication-backends: 2 2 3 3 ========================================== 4 Built-in authentication backends reference 4 Authentication backends 5 5 ========================================== 6 6 7 7 .. module:: django.contrib.auth.backends 8 8 :synopsis: Django's built-in authentication backend classes. 9 9 10 10 This document details the authentication backends that come with Django. For 11 information on how howto use them and how to write your own authentication11 information on how to use them and how to write your own authentication 12 12 backends, see the :ref:`Other authentication sources section 13 13 <authentication-backends>` of the :ref:`User authentication guide 14 14 <topics-auth>`. -
docs/ref/settings.txt
1 1 .. _ref-settings: 2 2 3 Available settings3 Settings 4 4 ================== 5 5 6 6 Here's a full list of all available settings, in alphabetical order, and their -
docs/ref/signals.txt
1 1 .. _ref-signals: 2 2 3 3 ========================= 4 Built-in signal reference 4 Signals 5 5 ========================= 6 6 7 7 A list of all the signals that Django sends.