~ubuntu-branches/ubuntu/jaunty/python-docutils/jaunty

« back to all changes in this revision

Viewing changes to docutils/transforms/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Simon McVittie
  • Date: 2008-07-24 10:39:53 UTC
  • mfrom: (1.1.4 upstream) (3.1.7 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080724103953-8gh4uezg17g9ysgy
Tags: 0.5-2
* Upload docutils 0.5 to unstable
* Update rst.el to upstream Subversion r5596, which apparently fixes
  all its performance problems (17_speed_up_rst_el.dpatch, closes: #474941)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Authors: David Goodger, Ueli Schlaepfer
2
 
# Contact: goodger@users.sourceforge.net
3
 
# Revision: $Revision: 3892 $
4
 
# Date: $Date: 2005-09-20 22:04:53 +0200 (Tue, 20 Sep 2005) $
 
1
# $Id: __init__.py 4975 2007-03-01 18:08:32Z wiemann $
 
2
# Authors: David Goodger <goodger@python.org>; Ueli Schlaepfer
5
3
# Copyright: This module has been placed in the public domain.
6
4
 
7
5
"""
19
17
  transforms may be used to construct (for example) indexes and tables
20
18
  of contents.
21
19
 
22
 
Each transform is an optional step that a Docutils Reader may choose to
23
 
perform on the parsed document, depending on the input context. A Docutils
24
 
Reader may also perform Reader-specific transforms before or after performing
25
 
these standard transforms.
 
20
Each transform is an optional step that a Docutils component may
 
21
choose to perform on the parsed document.
26
22
"""
27
23
 
28
24
__docformat__ = 'reStructuredText'