Ticket #9465: ref.diff

File ref.diff, 6.3 KB (added by Adam Nelson, 14 years ago)
  • docs/ref/middleware.txt

     
    11.. _ref-middleware:
    22
    33=============================
    4 Built-in middleware reference
     4Middleware
    55=============================
    66
    77.. module:: django.middleware
  • docs/ref/templates/index.txt

     
    11.. _ref-templates-index:
    22
    3 Template reference
     3Templates
    44==================
    55
    66Django's template engine provides a powerful mini-language for defining the
  • docs/ref/contrib/index.txt

     
    11.. _ref-contrib-index:
    22
    33============================
    4 The "django.contrib" add-ons
     4Contrib
    55============================
    66
    77Django aims to follow Python's `"batteries included" philosophy`_. It ships
  • docs/ref/files/index.txt

     
    11.. _ref-files-index:
    22
    3 File handling reference
     3File handling
    44=======================
    55
    66.. module:: django.core.files
  • docs/ref/request-response.txt

     
    298298          >>> q = q.copy() # to make it mutable
    299299          >>> q.update({'a': '2'})
    300300          >>> q.getlist('a')
    301           ['1', '2']
     301          [u'1', u'2']
    302302          >>> q['a'] # returns the last
    303           ['2']
     303          [u'2']
    304304
    305305.. method:: QueryDict.items()
    306306
     
    309309
    310310           >>> q = QueryDict('a=1&a=2&a=3')
    311311           >>> q.items()
    312            [('a', '3')]
     312           [(u'a', '3')]
    313313
    314314.. method:: QueryDict.iteritems()
    315315
     
    329329
    330330           >>> q = QueryDict('a=1&a=2&a=3')
    331331           >>> q.values()
    332            ['3']
     332           [u'3']
    333333
    334334.. method:: QueryDict.itervalues()
    335335
     
    369369
    370370         >>> q = QueryDict('a=1&a=2&a=3')
    371371         >>> q.lists()
    372          [('a', ['1', '2', '3'])]
     372         [(u'a', ['1', '2', '3'])]
    373373
    374374.. method:: QueryDict.urlencode()
    375375
  • docs/ref/unicode.txt

     
    11.. _ref-unicode:
    22
    33======================
    4 Unicode data in Django
     4Unicode
    55======================
    66
    77.. versionadded:: 1.0
  • docs/ref/databases.txt

     
    11.. _ref-databases:
    22
    33===============================
    4 Notes about supported databases
     4Databases
    55===============================
    66
    77Django attempts to support as many features as possible on all database
     
    8888Django expects the database to support transactions, referential integrity, and
    8989Unicode (UTF-8 encoding). Fortunately, MySQL_ has all these features as
    9090available 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.
     91you'll probably have less trouble if you use 4.1, 5.0, or 5.1.
    9292
    9393MySQL 4.1
    9494---------
     
    110110.. _MySQL: http://www.mysql.com/
    111111.. _MySQL 4.1: http://dev.mysql.com/doc/refman/4.1/en/index.html
    112112.. _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
    113114
    114115Storage engines
    115116---------------
     
    117118MySQL has several `storage engines`_ (previously called table types). You can
    118119change the default storage engine in the server configuration.
    119120
    120 The default engine is MyISAM_ [#]_. The main drawback of MyISAM is that it
    121 doesn't currently support transactions or foreign keys. On the plus side, it's
     121The default engine is often MyISAM_ [#]_. The main drawback of MyISAM is that it
     122doesn't support transactions or foreign keys. On the plus side, it's
    122123currently the only engine that supports full-text indexing and searching.
    123124
    124125The InnoDB_ engine is fully transactional and supports foreign key references.
    125126
    126 The BDB_ engine, like InnoDB, is also fully transactional and supports foreign
    127 key references. However, its use seems to be deprecated.
    128 
    129127`Other storage engines`_, including SolidDB_ and Falcon_, are on the horizon.
    130128For now, InnoDB is probably your best choice.
    131129
  • docs/ref/authbackends.txt

     
    11.. _ref-authentication-backends:
    22
    33==========================================
    4 Built-in authentication backends reference
     4Authentication backends
    55==========================================
    66
    77.. module:: django.contrib.auth.backends
    88   :synopsis: Django's built-in authentication backend classes.
    99
    1010This document details the authentication backends that come with Django. For
    11 information on how how to use them and how to write your own authentication
     11information on how to use them and how to write your own authentication
    1212backends, see the :ref:`Other authentication sources section
    1313<authentication-backends>` of the :ref:`User authentication guide
    1414<topics-auth>`.
  • docs/ref/settings.txt

     
    11.. _ref-settings:
    22
    3 Available settings
     3Settings
    44==================
    55
    66Here's a full list of all available settings, in alphabetical order, and their
  • docs/ref/signals.txt

     
    11.. _ref-signals:
    22
    33=========================
    4 Built-in signal reference
     4Signals
    55=========================
    66
    77A list of all the signals that Django sends.
Back to Top