From f19dbab514d1f53f31fabaaed55cf0e7ca525382 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Fri, 15 Jul 2005 00:42:28 +0000 Subject: [PATCH] Made a bunch of doc improvements git-svn-id: http://code.djangoproject.com/svn/django/trunk@41 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/db-api.txt | 18 +- docs/faq.txt | 75 +++- docs/model-api.txt | 811 +++++++++++++++--------------------- docs/templates.txt | 996 +++++++++++++++++++++------------------------ 4 files changed, 859 insertions(+), 1041 deletions(-) diff --git a/docs/db-api.txt b/docs/db-api.txt index 193cbf2b22..2a41e9b373 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -2,7 +2,11 @@ Database API reference ====================== -XXX INTRO HERE XXX +Once you've created your `data models`_, you'll need to lookup data from the +database. This document explains the database abstraction API derived from the +models, and how to create, retrieve, and update objects. + +.. _`data models`: http://www.djangoproject.com/documentation/model_api/ Throughout this reference, we'll refer to the following Poll application:: @@ -287,6 +291,18 @@ For example:: SELECT * FROM polls_polls WHERE question LIKE 'Who%' AND id IN (3, 4, 5, 20); +Changing objects +================ + +Once you've retrieved an object from the database using any of the above +options, changing it is extremely easy. Make changes directly to the +objects fields, then call the object's ``save()`` method:: + + >>> p = polls.get_object(id__exact=15) + >>> p.slug = "new_slug" + >>> p.pub_date = datetime.datetime.now() + >>> p.save() + Creating new objects ==================== diff --git a/docs/faq.txt b/docs/faq.txt index fdcc6789bf..e58fa03ea1 100644 --- a/docs/faq.txt +++ b/docs/faq.txt @@ -2,16 +2,20 @@ Django FAQ ========== -The admin site is ugly! How can I change it? ---------------------------------------------- +General questions +================= -We think it's very purty, but if you don't agree you can modify the admin site's -presentation by editing the CSS stylesheet and/or associated image files. The -site is built using semantic HTML, so any changes you'd like to make should be -possible by editing the CSS stylesheet. We've got a `guide to the CSS used -in the admin`_ to get you started. +Why does this project exist? +---------------------------- -.. _`guide to the CSS used in the admin`: http://www.djangoproject.com/FIXME/ +Django grew from a very practical need: in our fast-paced newsroom, we often +have only a matter of hours to take a complicated web application from +concept to public launch. Django was designed to not only allow us to +build web applications quickly, but to allow us to build them right. + +Django would not be possible without a whole host of open-source projects -- +Apache, Python, and PostgresSQL to name a few -- and we're thrilled to be +able to give something back to the open source community. How do you pronounce "Django"? ------------------------------ @@ -27,23 +31,66 @@ We've been using Django for almost two years. Sites built on Django have weathered traffic spikes of over one million hits an hour, and at least one slashdotting. Yes; it's quite stable. +Does Django scale? +------------------ + +Yes. Compared to development time, hardware is cheap, and so Django is +designed to take advantage of as much hardware as you can throw at it. +Django ships with clean separation of the database layer from the +application layer and a simple yet powerful `cache framework`_. + +.. _`cache framework`: http://www.djangoproject.com/documentation/cache/ + Who's behind this? ------------------ `Adrian Holovaty`_ - XXX - + Adrian is a gypsy-jazz virtuoso, an amateur Beatles historian and a proud + Chicagoan. He's also a pretty decent programmer, with a knack for whipping + data into shape and putting it to work for the good of his fellow man. + Adrian is the lead developer at World Online and the man behind the code at + chicagocrime.org. + `Simon Willison`_ XXX `Jacob Kaplan-Moss`_ - XXX + Jacob is a whipper-snapper from California who spends equal time coding and + cooking. He does Web development for World Online and actively hacks on + various cool side projects. He's contributed to the Python-ObjC bindings and + was the first guy to figure out how to write Tivo apps in Python. Lately + he's been messing with Python on the PSP. -`Wilson Miner`_. - XXX - +`Wilson Miner`_ + Wilson's design-fu makes us all look like rock stars. When not sneaking + into apartment complex swimming pools he is the Commercial Development + Director for World Online, which means he makes the money that pays all our + paychecks. + .. _`Adrian Holovaty`: http://www.holovaty.com/ .. _`Simon Willison`: http://simon.incutio.com/ .. _`Jacob Kaplan-Moss`: http://www.jacobian.org/ .. _`Wilson Miner`: http://www.wilsonminer.com/live/ +Using Django +============ + +How do I get started? +--------------------- + +... + +The admin interface +=================== + +The admin site is ugly! How can I change it? +--------------------------------------------- + +We think it's very purty, but if you don't agree you can modify the admin site's +presentation by editing the CSS stylesheet and/or associated image files. The +site is built using semantic HTML, so any changes you'd like to make should be +possible by editing the CSS stylesheet. We've got a `guide to the CSS used +in the admin`_ to get you started. + +.. _`guide to the CSS used in the admin`: http://www.djangoproject.com/documentation/admin_css/ + diff --git a/docs/model-api.txt b/docs/model-api.txt index b794da2678..5cfd410efd 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -2,141 +2,117 @@ Model reference =============== -XXX INTRO XXX +Django's models are the bread and butter of the framework. There's a huge +array of options available to you when defining your data models; this +document explains all of them. Options for models ================== -A list of all possible options for a model object follows. Although there's a wide -array of possible options, only ``fields`` is required. +A list of all possible options for a model object follows. Although there's a +wide array of possible options, only ``fields`` is required. ``admin`` ---------- - -A ``meta.Admin`` object; see `Admin options`_. If this field isn't given, -the object will not have an admin interface. - + A ``meta.Admin`` object; see `Admin options`_. If this field isn't given, + the object will not have an admin interface. + ``db_table`` ------------- - -The name of the database table to use for the module:: - - db_table = "pizza_orders" + The name of the database table to use for the module:: + + db_table = "pizza_orders" + + If not given, this will use ``app_label + '_' + module_name``. -If not given, this will use ``app_label + '_' + module_name``. - ``exceptions`` --------------- - -Names of extra exception subclasses to include in the generated module. -These exceptions are available from instance methods and from module-level -methods:: + Names of extra exception subclasses to include in the generated module. + These exceptions are available from instance methods and from module-level + methods:: + + exceptions = ("DisgustingToppingsException", "BurntCrust") - exceptions = ("DisgustingToppingsException", "BurntCrust") - ``fields`` ----------- - -A list of field objects; see `Field objects`_. For example:: - - fields = ( - meta.CharField('customer_name', 'customer name', maxlength=15), - meta.BooleanField('use_extra_cheese', 'use extra cheese'), - meta.IntegerField('customer_type', 'customer type', choices=CUSTOMER_TYPE_CHOICES), - ... - ) + A list of field objects; see `Field objects`_. For example:: + fields = ( + meta.CharField('customer_name', 'customer name', maxlength=15), + meta.BooleanField('use_extra_cheese', 'use extra cheese'), + meta.IntegerField('customer_type', 'customer type', choices=CUSTOMER_TYPE_CHOICES), + ... + ) + ``get_latest_by`` ------------------ - -The name of a date or datetime field; if given, the module will have a -``get_latest()`` function which fetches the "latest" object in terms of -that field:: - - get_latest_by = "order_date" - + The name of a date or datetime field; if given, the module will have a + ``get_latest()`` function which fetches the "latest" object in terms of + that field:: + + get_latest_by = "order_date" + ``module_constants`` --------------------- - -A dict of name/values to use as extra module-level constants:: - - module_constants = { - 'MEAT_TYPE_PEPPERONI' : 1, - 'MEAT_TYPE_SAUSAGE' : 2, - } - + A dict of name/values to use as extra module-level constants:: + + module_constants = { + 'MEAT_TYPE_PEPPERONI' : 1, + 'MEAT_TYPE_SAUSAGE' : 2, + } + ``module_name`` ---------------- - -The name of the module:: - - module_name = "pizza_orders" + The name of the module:: + + module_name = "pizza_orders" + + If not given this will use a lowercased version of the class name. -If not given this will use a lowercased version of the class name. - ``order_with_respect_to`` -------------------------- - -Marks this object as "orderable" with respect to the given field. This is -almost always used with related objects to allow them to be ordered with -respect to a parent object. For example, if a ``PizzaToppping`` relates to -a ``Pizza`` object, you might use:: - - order_with_respect_to = 'pizza_id' - -to allow the toppings to be ordered with respect to the associated pizza. - + Marks this object as "orderable" with respect to the given field. This is + almost always used with related objects to allow them to be ordered with + respect to a parent object. For example, if a ``PizzaToppping`` relates to + a ``Pizza`` object, you might use:: + + order_with_respect_to = 'pizza_id' + + to allow the toppings to be ordered with respect to the associated pizza. + ``ordering`` ------------- - -The default ordering for tho object:: - - ordering = (('order_date', 'DESC'),) + The default ordering for tho object:: + + ordering = (('order_date', 'DESC'),) + + This is a tuple of 2-tuples; each 2-tuple is ``(field_name, ordering_type)`` + where ordering_type is either ``"ASC"`` or ``"DESC"``. You may also use the + magic ``(None, "RANDOM")`` ordering tuple for random ordering. -This is a tuple of 2-tuples; each 2-tuple is ``(field_name, ordering_type)`` -where ordering_type is either ``"ASC"`` or ``"DESC"``. You may also use the -magic ``(None, "RANDOM")`` ordering tuple for random ordering. - ``permissions`` ---------------- - -Extra permissions to enter into the permissions table when creating this -object. A add, delete, and change permission is automatically created for -each object; this option specifies extra permissions:: - - permissions = (("may_delivier_pizzas", "Can deliver pizzas"),) + Extra permissions to enter into the permissions table when creating this + object. A add, delete, and change permission is automatically created for + each object; this option specifies extra permissions:: + + permissions = (("may_delivier_pizzas", "Can deliver pizzas"),) + + This is a list of 2-tuples of + ``(permission_code, human_readable_permission_name)``. -This is a list of 2-tuples of -``(permission_code, human_readable_permission_name)``. - ``unique_together`` -------------------- - -Sets of field names that, taken together, must be unique:: - - unique_together = (("driver_id", "restaurant_id"),) + Sets of field names that, taken together, must be unique:: + + unique_together = (("driver_id", "restaurant_id"),) + + This is a list of lists of fields that must be unique when considered + together. -This is a list of lists of fields that must be unique when considered -together. - ``verbose_name`` ----------------- - -A human-readable name for the object, singular:: - - verbose_name = "pizza" - -If not given, this will use a munged version of the class name: -``CamelCase`` becomes ``camel case``. - + A human-readable name for the object, singular:: + + verbose_name = "pizza" + + If not given, this will use a munged version of the class name: + ``CamelCase`` becomes ``camel case``. + ``verbose_name_plural`` ------------------------ - -The plural name for the object:: - - verbose_name_plural = "stories" - -If not given, ``verbose_name + "s"`` will automatically be used. + The plural name for the object:: + + verbose_name_plural = "stories" + + If not given, ``verbose_name + "s"`` will automatically be used. Field objects ============= @@ -249,256 +225,91 @@ options that are common to all field types. These options are: Field Types ----------- - + ``AutoField`` -````````````` - -An ``IntegerField`` that automatically increments. You usually won't need to -use this directly; a primary key field will automatically be added to your -model if you don't specify otherwise. That automatically added field is:: - - meta.AutoField('id', 'ID', primary_key=True) - + An ``IntegerField`` that automatically increments. You usually won't need to + use this directly; a primary key field will automatically be added to your + model if you don't specify otherwise. That automatically added field is:: + + meta.AutoField('id', 'ID', primary_key=True) + ``BooleanField`` -```````````````` - -A true/false field. - + A true/false field. + ``CharField`` -````````````` - -A text field. These are displayed in the admin as single-line text inputs, so -for large amounts of text use a ``TextField``. - -``CharField``s have an extra required argument: ``maxlength``; the maximum -length (in characters) of the field. - + A text field. These are displayed in the admin as single-line text inputs, so + for large amounts of text use a ``TextField``. + + ``CharField``s have an extra required argument: ``maxlength``; the maximum + length (in characters) of the field. + ``CommaSeparatedIntegerField`` -`````````````````````````````` - -A field of integers separated by commas. - + A field of integers separated by commas. + ``DateField`` -````````````` - -A, um, date field. Has a few extra optional options: - - ====================== =================================================== - Option Description - ====================== =================================================== - ``auto_now`` Automatically set the field to now every time the - object is saved. Useful for "last-modified" - timestamps. - - ``auto_now_add`` Automatically set the field to now when the object - is first created. Useful for creation timestamps. - ====================== =================================================== - + A, um, date field. Has a few extra optional options: + + ====================== =================================================== + Option Description + ====================== =================================================== + ``auto_now`` Automatically set the field to now every time the + object is saved. Useful for "last-modified" + timestamps. + + ``auto_now_add`` Automatically set the field to now when the object + is first created. Useful for creation timestamps. + ====================== =================================================== + ``DateTimeField`` -````````````````` - -A date and time field. Takes the same extra options as ``DateField``. - - + A date and time field. Takes the same extra options as ``DateField``. + + ``EmailField`` -`````````````` - -A ``CharField`` that checks that the value is a valid email address. Because -validating email addresses can be tricky, this is a pretty loose test. - + A ``CharField`` that checks that the value is a valid email address. Because + validating email addresses can be tricky, this is a pretty loose test. + ``FileField`` -````````````` - -A file-upload field. Takes on additional option, ``upload_to`` which is -a path to upload the file to. This path may contain `strftime formatting`_ -which will be replaced by the date/time of the file upload (so that uploaded -files don't fill up the given directory). - -.. _`strftime formatting`: http://docs.python.org/lib/module-time.html#l2h-1941 - + A file-upload field. Takes on additional option, ``upload_to`` which is + a path to upload the file to. This path may contain `strftime formatting`_ + which will be replaced by the date/time of the file upload (so that uploaded + files don't fill up the given directory). + + .. _`strftime formatting`: http://docs.python.org/lib/module-time.html#l2h-1941 + ``FloatField`` -`````````````` - -A floating-point number. Has two additional required options: - - ====================== =================================================== - Option Description - ====================== =================================================== - ``max_digits`` The maximum number of digits allowed in the number. + A floating-point number. Has two additional required options: + + ====================== =================================================== + Option Description + ====================== =================================================== + ``max_digits`` The maximum number of digits allowed in the number. + + ``decimal_places`` The number of decimal places to store with the + number + ====================== =================================================== + + For example, to store numbers up to 999 with a resolution of 2 decimal places, + you'd use:: + + meta.FloatField(..., max_digits=5, decimal_places=2) + + And to store numbers up to one million with a resolution of 10 decimal places:: + + meta.FloatField(..., max_digits=19, decimal_places=10) - ``decimal_places`` The number of decimal places to store with the - number - ====================== =================================================== - -For example, to store numbers up to 999 with a resolution of 2 decimal places, -you'd use:: - - meta.FloatField(..., max_digits=5, decimal_places=2) - -And to store numbers up to one million with a resolution of 10 decimal places:: - - meta.FloatField(..., max_digits=19, decimal_places=10) - ``ForeignKey`` -`````````````` - -A many-to-one relationship to the primary key in another object. So, to give a -``Topping`` object a many-to-one relationship to ``Pizza`` (i.e. there are -many toppings on a pizza):: - - meta.ForeignKey(Pizza) + A many-to-one relationship to the primary key in another object. So, to give a + ``Topping`` object a many-to-one relationship to ``Pizza`` (i.e. there are + many toppings on a pizza):: -This is equivalent to (but much clearer than):: - - meta.IntegerField('pizza_id', 'pizza', rel=meta.ManyToOne(Pizza, 'pizza', 'id')) + meta.ForeignKey(Pizza) + + ``ForeignKey`` fields take a large number of options for defining how the + relationship should work: -``ForeignKey`` fields take all the arguments of ``ManyToOne`` relations (see -Relationships_, below for what those arguments are), plus the following extra -options: - - ====================== =================================================== - Option Description - ====================== =================================================== - ``to_field`` The field on the related object that the relation - is to. This is almost always ``id``, but if the - PK on the other object is named something - different, this is how to indicate that. - - ``rel_name`` The name of the relation. In the above exmaple, - this would default to 'pizza' (so that the - ``Toppings`` object would have a ``get_pizza()`` - function; if you set ``rel_name`` to "pie", then - the function would be called ``get_pie()`` and the - field name would be ``pie_id``. - ====================== =================================================== - - -``ImageField`` -`````````````` - -Like a ``FieldField``, but validates that the uploaded object is a valid -image. Has two extra optional arguments, ``height_field`` and ``width_field`` -which, if set, will be auto-populated with the height and width of the image. - -``IntegerField`` -```````````````` - -An integer, surprisingly. - -``IPAddressField`` -`````````````````` - -An IP address, in string format (i.e. "24.124.1.30"). - -``ManyToManyField`` -``````````````````` - -XXX document once Adrian reworks this XXX - -``NullBooleanField`` -```````````````````` - -Like a ``BooleanField``, but allows ``NULL`` as one of the options. Use this -instead of a ``BooleanField`` with ``null=True`` . - -``PhoneNumberField`` -```````````````````` - -Validates that the value is a valid phone number. - -``PositiveIntegerField`` -```````````````````````` - -Like an ``IntegerField``, but must be positive. - -``PositiveSmallIntegerField`` -````````````````````````````` - -Like a ``PositiveIntegerField``, but only allows values below 32767. - - -``SlugField`` -````````````` - -A "slug" suitable for parts of a URL; only allows alpha-numeric characters and -underscores. - -Implies ``maxlength=50`` and ``db_index=True``. - -Accepts an extra option, ``prepopulate_from`` which is a list of fields from -which to auto-populate the slug. - -``SmallIntegerField`` -````````````````````` - -Like an ``IntegerField``, but must be between -32768 and 32767. - -``TextField`` -````````````` - -A large text field (``