~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to docs/glossary.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (1.2.7 upstream)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: james.westby@ubuntu.com-20101012113435-9lnsrh0i3mxozbt0
Tags: upstream-1.2.3
ImportĀ upstreamĀ versionĀ 1.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    field
10
10
        An attribute on a :term:`model`; a given field usually maps directly to
11
11
        a single database column.
12
 
        
13
 
        See :ref:`topics-db-models`.
 
12
 
 
13
        See :doc:`/topics/db/models`.
14
14
 
15
15
    generic view
16
16
        A higher-order :term:`view` function that provides an abstract/generic
17
17
        implementation of a common idiom or pattern found in view development.
18
 
        
19
 
        See :ref:`ref-generic-views`.
 
18
 
 
19
        See :doc:`/ref/generic-views`.
20
20
 
21
21
    model
22
22
        Models store your application's data.
23
 
        
24
 
        See :ref:`topics-db-models`.
 
23
 
 
24
        See :doc:`/topics/db/models`.
25
25
 
26
26
    MTV
27
27
        See :ref:`mtv`.
41
41
    property
42
42
        Also known as "managed attributes", and a feature of Python since
43
43
        version 2.2. From `the property documentation`__:
44
 
        
 
44
 
45
45
            Properties are a neat way to implement attributes whose usage
46
46
            resembles attribute access, but whose implementation uses method
47
47
            calls. [...] You
56
56
 
57
57
    queryset
58
58
        An object representing some set of rows to be fetched from the database.
59
 
        
60
 
        See :ref:`topics-db-queries`.
 
59
 
 
60
        See :doc:`/topics/db/queries`.
61
61
 
62
62
    slug
63
63
        A short label for something, containing only letters, numbers,
64
64
        underscores or hyphens. They're generally used in URLs. For
65
65
        example, in a typical blog entry URL:
66
 
        
 
66
 
67
67
        .. parsed-literal::
68
 
        
 
68
 
69
69
            http://www.djangoproject.com/weblog/2008/apr/12/**spring**/
70
 
            
 
70
 
71
71
        the last bit (``spring``) is the slug.
72
72
 
73
73
    template
74
74
        A chunk of text that acts as formatting for representing data. A
75
75
        template helps to abstract the presentation of data from the data
76
76
        itself.
77
 
        
78
 
        See :ref:`topics-templates`.
79
 
        
 
77
 
 
78
        See :doc:`/topics/templates`.
 
79
 
80
80
    view
81
 
        A function responsible for rending a page.
 
 
b'\\ No newline at end of file'
 
81
        A function responsible for rending a page.