diff options
Diffstat (limited to 'pygments/formatters')
-rw-r--r-- | pygments/formatters/__init__.py | 4 | ||||
-rwxr-xr-x | pygments/formatters/_mapping.py | 4 | ||||
-rw-r--r-- | pygments/formatters/bbcode.py | 4 | ||||
-rw-r--r-- | pygments/formatters/html.py | 4 | ||||
-rw-r--r-- | pygments/formatters/img.py | 4 | ||||
-rw-r--r-- | pygments/formatters/latex.py | 4 | ||||
-rw-r--r-- | pygments/formatters/other.py | 4 | ||||
-rw-r--r-- | pygments/formatters/rtf.py | 4 | ||||
-rw-r--r-- | pygments/formatters/svg.py | 4 | ||||
-rw-r--r-- | pygments/formatters/terminal.py | 4 | ||||
-rw-r--r-- | pygments/formatters/terminal256.py | 4 |
11 files changed, 22 insertions, 22 deletions
diff --git a/pygments/formatters/__init__.py b/pygments/formatters/__init__.py index fb200e10..0dc3592d 100644 --- a/pygments/formatters/__init__.py +++ b/pygments/formatters/__init__.py @@ -5,8 +5,8 @@ Pygments formatters. - :copyright: 2006-2007 by Georg Brandl, Armin Ronacher. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ import os.path import fnmatch diff --git a/pygments/formatters/_mapping.py b/pygments/formatters/_mapping.py index 3060f95d..81556276 100755 --- a/pygments/formatters/_mapping.py +++ b/pygments/formatters/_mapping.py @@ -9,8 +9,8 @@ Do not alter the FORMATTERS dictionary by hand. - :copyright: 2006-2007 by Armin Ronacher, Georg Brandl. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ from pygments.util import docstring_headline diff --git a/pygments/formatters/bbcode.py b/pygments/formatters/bbcode.py index 8714294d..384339fc 100644 --- a/pygments/formatters/bbcode.py +++ b/pygments/formatters/bbcode.py @@ -5,8 +5,8 @@ BBcode formatter. - :copyright: 2006-2007 by Lukas Meuser. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ diff --git a/pygments/formatters/html.py b/pygments/formatters/html.py index f7834099..25d1158e 100644 --- a/pygments/formatters/html.py +++ b/pygments/formatters/html.py @@ -5,8 +5,8 @@ Formatter for HTML output. - :copyright: 2006-2008 by Georg Brandl, Armin Ronacher. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ import sys, os import StringIO diff --git a/pygments/formatters/img.py b/pygments/formatters/img.py index 6dd1d9cc..31f43c30 100644 --- a/pygments/formatters/img.py +++ b/pygments/formatters/img.py @@ -5,8 +5,8 @@ Formatter for Pixmap output. - :copyright: 2007 by Ali Afshar. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ import sys diff --git a/pygments/formatters/latex.py b/pygments/formatters/latex.py index af8da1bb..69be017d 100644 --- a/pygments/formatters/latex.py +++ b/pygments/formatters/latex.py @@ -5,8 +5,8 @@ Formatter for LaTeX fancyvrb output. - :copyright: 2006-2008 by Georg Brandl. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ import StringIO diff --git a/pygments/formatters/other.py b/pygments/formatters/other.py index fb123689..1ddba006 100644 --- a/pygments/formatters/other.py +++ b/pygments/formatters/other.py @@ -5,8 +5,8 @@ Other formatters: NullFormatter, RawTokenFormatter. - :copyright: 2006-2007 by Georg Brandl, Armin Ronacher. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ from pygments.formatter import Formatter diff --git a/pygments/formatters/rtf.py b/pygments/formatters/rtf.py index 3d430fe4..1f1023d0 100644 --- a/pygments/formatters/rtf.py +++ b/pygments/formatters/rtf.py @@ -5,8 +5,8 @@ A formatter that generates RTF files. - :copyright: 2006-2007 by Armin Ronacher. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ from pygments.formatter import Formatter diff --git a/pygments/formatters/svg.py b/pygments/formatters/svg.py index 03bca93a..0d5fb1d5 100644 --- a/pygments/formatters/svg.py +++ b/pygments/formatters/svg.py @@ -5,8 +5,8 @@ Formatter for SVG output. - :copyright: 2007 by Matthew Harrison, Georg Brandl. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ from pygments.formatter import Formatter diff --git a/pygments/formatters/terminal.py b/pygments/formatters/terminal.py index ce1a8e9c..ba7d35db 100644 --- a/pygments/formatters/terminal.py +++ b/pygments/formatters/terminal.py @@ -5,8 +5,8 @@ Formatter for terminal output with ANSI sequences. - :copyright: 2006-2007 by Georg Brandl. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ from pygments.formatter import Formatter diff --git a/pygments/formatters/terminal256.py b/pygments/formatters/terminal256.py index eb65eeac..e4ae019e 100644 --- a/pygments/formatters/terminal256.py +++ b/pygments/formatters/terminal256.py @@ -11,8 +11,8 @@ Formatter version 1. - :copyright: 2007 by Artem Egorkine. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ # TODO: |