~ubuntu-branches/ubuntu/karmic/python-docutils/karmic

« back to all changes in this revision

Viewing changes to docs/ref/transforms.txt

  • Committer: Bazaar Package Importer
  • Author(s): martin f. krafft
  • Date: 2006-07-10 11:45:05 UTC
  • mfrom: (2.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060710114505-otkhqcslevewxmz5
Tags: 0.4-3
Added build dependency on python-central (closes: #377580).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
=====================
 
2
 Docutils Transforms
 
3
=====================
 
4
 
 
5
:Author: David Goodger
 
6
:Contact: goodger@users.sourceforge.net
 
7
:Revision: $Revision: 4183 $
 
8
:Date: $Date: 2005-12-12 05:12:02 +0100 (Mon, 12 Dec 2005) $
 
9
:Copyright: This document has been placed in the public domain.
 
10
 
 
11
 
 
12
.. contents::
 
13
 
 
14
 
 
15
For background about transforms and the Transformer object, see `PEP
 
16
258`_.
 
17
 
 
18
.. _PEP 258: ../peps/pep-0258.html#transformer
 
19
 
 
20
 
 
21
Transforms Listed in Priority Order
 
22
===================================
 
23
 
 
24
==============================  ============================  ========
 
25
Transform: module.Class         Added By                      Priority
 
26
==============================  ============================  ========
 
27
misc.class                      "class" (d/p)                 210
 
28
 
 
29
references.Substitutions        standalone (r), pep (r)       220
 
30
 
 
31
references.PropagateTargets     standalone (r), pep (r)       260
 
32
 
 
33
frontmatter.DocTitle            standalone (r)                320
 
34
 
 
35
frontmatter.DocInfo             standalone (r)                340
 
36
 
 
37
frontmatter.SectSubTitle        standalone (r)                350
 
38
 
 
39
peps.Headers                    pep (r)                       360
 
40
 
 
41
peps.Contents                   pep (r)                       380
 
42
 
 
43
references.AnonymousHyperlinks  standalone (r), pep (r)       440
 
44
 
 
45
references.IndirectHyperlinks   standalone (r), pep (r)       460
 
46
 
 
47
peps.TargetNotes                pep (r)                       520
 
48
 
 
49
references.TargetNotes          peps.TargetNotes (t/p)        0
 
50
 
 
51
misc.CallBack                   peps.TargetNotes (t/p)        1
 
52
 
 
53
references.TargetNotes          "target-notes" (d/p)          540
 
54
 
 
55
references.Footnotes            standalone (r), pep (r)       620
 
56
 
 
57
references.ExternalTargets      standalone (r), pep (r)       640
 
58
 
 
59
references.InternalTargets      standalone (r), pep (r)       660
 
60
 
 
61
parts.SectNum                   "sectnum" (d/p)               710
 
62
 
 
63
parts.Contents                  "contents" (d/p),             720
 
64
                                peps.Contents (t/p)
 
65
 
 
66
universal.StripComments         Reader (r)                    740
 
67
 
 
68
peps.PEPZero                    peps.Headers (t/p)            760
 
69
 
 
70
components.Filter               "meta" (d/p)                  780
 
71
 
 
72
writer_aux.Compound             newlatex2e (w)                810
 
73
 
 
74
universal.Decorations           Reader (r)                    820
 
75
 
 
76
misc.Transitions                standalone (r), pep (r)       830
 
77
 
 
78
universal.ExposeInternals       Reader (r)                    840
 
79
 
 
80
references.DanglingReferences   standalone (r), pep (r)       850
 
81
 
 
82
universal.Messages              Writer (w)                    860
 
83
 
 
84
universal.FilterMessages        Writer (w)                    870
 
85
 
 
86
universal.TestMessages          DocutilsTestSupport           880
 
87
 
 
88
misc.CallBack                   n/a                           990
 
89
==============================  ============================  ========
 
90
 
 
91
Key:
 
92
 
 
93
* (r): Reader
 
94
* (w): Writer
 
95
* (d): Directive
 
96
* (t): Transform
 
97
* (/p): Via a "pending" node
 
98
 
 
99
 
 
100
Transform Priority Range Categories
 
101
===================================
 
102
 
 
103
====  ====  ================================================
 
104
 Priority
 
105
----------  ------------------------------------------------
 
106
From   To   Category
 
107
====  ====  ================================================
 
108
   0    99  immediate execution (added by another transform)
 
109
 100   199  very early (non-standard)
 
110
 200   299  very early
 
111
 300   399  early
 
112
 400   699  main
 
113
 700   799  late
 
114
 800   899  very late
 
115
 900   999  very late (non-standard)
 
116
====  ====  ================================================