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

« back to all changes in this revision

Viewing changes to spec/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: 1.6 $
8
 
:Date: $Date: 2004/01/28 16:11:29 $
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: 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
 
frontmatter.DocTitle            standalone (r)                320
32
 
 
33
 
frontmatter.DocInfo             standalone (r)                340
34
 
 
35
 
peps.Headers                    pep (r)                       360
36
 
 
37
 
peps.Contents                   pep (r)                       380
38
 
 
39
 
references.ChainedTargets       standalone (r), pep (r)       420
40
 
 
41
 
references.AnonymousHyperlinks  standalone (r), pep (r)       440
42
 
 
43
 
references.IndirectHyperlinks   standalone (r), pep (r)       460
44
 
 
45
 
peps.TargetNotes                pep (r)                       520
46
 
 
47
 
references.TargetNotes          peps.TargetNotes (t/p)        0
48
 
 
49
 
misc.CallBack                   peps.TargetNotes (t/p)        1
50
 
 
51
 
references.TargetNotes          "target-notes" (d/p)          540
52
 
 
53
 
references.Footnotes            standalone (r), pep (r)       620
54
 
 
55
 
references.ExternalTargets      standalone (r), pep (r)       640
56
 
 
57
 
references.InternalTargets      standalone (r), pep (r)       660
58
 
 
59
 
parts.SectNum                   "sectnum" (d/p)               710
60
 
 
61
 
parts.Contents                  "contents" (d/p),             720
62
 
                                peps.Contents (t/p)
63
 
 
64
 
peps.PEPZero                    peps.Headers (t/p)            760
65
 
 
66
 
components.Filter               "meta" (d/p)                  780
67
 
 
68
 
universal.Decorations           Transformer                   820
69
 
 
70
 
universal.FinalChecks           Transformer                   840
71
 
 
72
 
universal.Messages              Transformer                   860
73
 
 
74
 
universal.FilterMessages        Transformer                   870
75
 
 
76
 
universal.TestMessages          DocutilsTestSupport           880
77
 
 
78
 
misc.CallBack                   n/a                           990
79
 
==============================  ============================  ========
80
 
 
81
 
Key:
82
 
 
83
 
* (r): Reader
84
 
* (d): Directive
85
 
* (t): Transform
86
 
* (/p): Via a "pending" node
87
 
 
88
 
 
89
 
Transform Priority Range Categories
90
 
===================================
91
 
 
92
 
====  ====  ================================================
93
 
 Priority
94
 
----------  ------------------------------------------------
95
 
From   To   Category
96
 
====  ====  ================================================
97
 
   0    99  immediate execution (added by another transform)
98
 
 100   199  very early (non-standard)
99
 
 200   299  very early
100
 
 300   399  early
101
 
 400   699  main
102
 
 700   799  late
103
 
 800   899  very late
104
 
 900   999  very late (non-standard)
105
 
====  ====  ================================================