Edgewall Software

source: trunk/genshi/filters/__init__.py

Last change on this file was 1073, checked in by cmlenz, 14 years ago

Update copyright years on files changed due to advanced-i18n merge.

  • Property svn:eol-style set to native
File size: 743 bytes
Line 
1# -*- coding: utf-8 -*-
2#
3# Copyright (C) 2007-2009 Edgewall Software
4# All rights reserved.
5#
6# This software is licensed as described in the file COPYING, which
7# you should have received as part of this distribution. The terms
8# are also available at http://genshi.edgewall.org/wiki/License.
9#
10# This software consists of voluntary contributions made by many
11# individuals. For the exact contribution history, see the revision
12# history and logs, available at http://genshi.edgewall.org/log/.
13
14"""Implementation of a number of stream filters."""
15
16from genshi.filters.html import HTMLFormFiller, HTMLSanitizer
17from genshi.filters.i18n import Translator
18from genshi.filters.transform import Transformer
19
20__docformat__ = 'restructuredtext en'
Note: See TracBrowser for help on using the repository browser.