diff options
58 files changed, 67 insertions, 67 deletions
@@ -4,7 +4,7 @@ # # Combines scripts for common tasks. # -# :copyright: 2006 by Georg Brandl. +# :copyright: 2006-2007 by Georg Brandl. # :license: GNU GPL, see LICENSE for more details. # diff --git a/docs/generate.py b/docs/generate.py index a99a6c78..1bf5f8f7 100644 --- a/docs/generate.py +++ b/docs/generate.py @@ -6,7 +6,7 @@ Generates a bunch of html files containing the documentation. - :copyright: 2006 by Armin Ronacher, Georg Brandl. + :copyright: 2006-2007 by Armin Ronacher, Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/__init__.py b/pygments/__init__.py index c2dacb58..5595da24 100644 --- a/pygments/__init__.py +++ b/pygments/__init__.py @@ -19,7 +19,7 @@ The `Pygments trunk <http://trac.pocoo.org/repos/pygments/trunk#egg=Pygments-dev>`__ is installable via *easy_install* with ``easy_install Pygments==dev``. - :copyright: 2006 by Georg Brandl, Armin Ronacher and others. + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher and others. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/cmdline.py b/pygments/cmdline.py index 002117d4..b782dc97 100644 --- a/pygments/cmdline.py +++ b/pygments/cmdline.py @@ -5,7 +5,7 @@ Command line interface. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ import sys diff --git a/pygments/console.py b/pygments/console.py index afc97736..90ea57b2 100644 --- a/pygments/console.py +++ b/pygments/console.py @@ -5,7 +5,7 @@ Format colored console output. - :copyright: 2006 by Georg Brandl, Armin Ronacher. + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/filter.py b/pygments/filter.py index ef335eb3..f304953c 100644 --- a/pygments/filter.py +++ b/pygments/filter.py @@ -5,7 +5,7 @@ Module that implements the default filter. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/filters/__init__.py b/pygments/filters/__init__.py index 135e9a04..10c6072a 100644 --- a/pygments/filters/__init__.py +++ b/pygments/filters/__init__.py @@ -6,7 +6,7 @@ Module containing filter lookup functions and default filters. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ try: diff --git a/pygments/formatter.py b/pygments/formatter.py index 4e07f0f4..d84e76e6 100644 --- a/pygments/formatter.py +++ b/pygments/formatter.py @@ -5,7 +5,7 @@ Base formatter class. - :copyright: 2006 by Georg Brandl, Armin Ronacher. + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/formatters/__init__.py b/pygments/formatters/__init__.py index d3a66366..2fc55878 100644 --- a/pygments/formatters/__init__.py +++ b/pygments/formatters/__init__.py @@ -5,7 +5,7 @@ Pygments formatters. - :copyright: 2006 by Georg Brandl, Armin Ronacher. + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher. :license: BSD, see LICENSE for more details. """ import os.path diff --git a/pygments/formatters/bbcode.py b/pygments/formatters/bbcode.py index 2f15884a..57112d77 100644 --- a/pygments/formatters/bbcode.py +++ b/pygments/formatters/bbcode.py @@ -5,7 +5,7 @@ BBcode formatter. - :copyright: 2006 by Lukas Meuser. + :copyright: 2006-2007 by Lukas Meuser. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/formatters/html.py b/pygments/formatters/html.py index d87349f7..6c691299 100644 --- a/pygments/formatters/html.py +++ b/pygments/formatters/html.py @@ -5,7 +5,7 @@ Formatter for HTML output. - :copyright: 2006 by Georg Brandl, Armin Ronacher. + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher. :license: BSD, see LICENSE for more details. """ import sys, os diff --git a/pygments/formatters/latex.py b/pygments/formatters/latex.py index a288fe51..22256625 100644 --- a/pygments/formatters/latex.py +++ b/pygments/formatters/latex.py @@ -5,7 +5,7 @@ Formatter for LaTeX fancyvrb output. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ import cStringIO diff --git a/pygments/formatters/other.py b/pygments/formatters/other.py index 7ef39b4f..6b70238e 100644 --- a/pygments/formatters/other.py +++ b/pygments/formatters/other.py @@ -5,7 +5,7 @@ Other formatters: NullFormatter, RawTokenFormatter. - :copyright: 2006 by Georg Brandl, Armin Ronacher. + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/formatters/rtf.py b/pygments/formatters/rtf.py index 466c555b..c4078dd8 100644 --- a/pygments/formatters/rtf.py +++ b/pygments/formatters/rtf.py @@ -5,7 +5,7 @@ A formatter that generates RTF files. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/formatters/terminal.py b/pygments/formatters/terminal.py index 4c6d2f9f..fa030d86 100644 --- a/pygments/formatters/terminal.py +++ b/pygments/formatters/terminal.py @@ -5,7 +5,7 @@ Formatter for terminal output with ANSI sequences. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/lexer.py b/pygments/lexer.py index 016c60a6..5f1e6ab1 100644 --- a/pygments/lexer.py +++ b/pygments/lexer.py @@ -5,7 +5,7 @@ Base lexer classes. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ import re diff --git a/pygments/lexers/__init__.py b/pygments/lexers/__init__.py index 9a66a534..b6bba998 100644 --- a/pygments/lexers/__init__.py +++ b/pygments/lexers/__init__.py @@ -5,7 +5,7 @@ Pygments lexers. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ import fnmatch diff --git a/pygments/lexers/_luabuiltins.py b/pygments/lexers/_luabuiltins.py index c7c1496b..711c9195 100644 --- a/pygments/lexers/_luabuiltins.py +++ b/pygments/lexers/_luabuiltins.py @@ -9,7 +9,7 @@ Do not edit the MODULES dict by hand. - :copyright: 2006 by Lukas Meuser. + :copyright: 2006-2007 by Lukas Meuser. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py index d637de02..a4120d1d 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -9,7 +9,7 @@ Do not alter the LEXERS dictionary by hand. - :copyright: 2006 by Armin Ronacher, Georg Brandl. + :copyright: 2006-2007 by Armin Ronacher, Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/lexers/_phpbuiltins.py b/pygments/lexers/_phpbuiltins.py index 0a49dd09..5173b20d 100644 --- a/pygments/lexers/_phpbuiltins.py +++ b/pygments/lexers/_phpbuiltins.py @@ -12,7 +12,7 @@ internet connection. don't run that at home, use a server ;-) - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py index c1998650..23c8f2b6 100644 --- a/pygments/lexers/agile.py +++ b/pygments/lexers/agile.py @@ -5,7 +5,7 @@ Lexers for agile languages. - :copyright: 2006 by Georg Brandl, Armin Ronacher, + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher, Lukas Meuser, Marek Kubica, Tim Hatch. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py index 868b6ee3..bfc6334f 100644 --- a/pygments/lexers/compiled.py +++ b/pygments/lexers/compiled.py @@ -5,7 +5,7 @@ Lexers for compiled languages. - :copyright: 2006 by Georg Brandl, Armin Ronacher, Christoph Hack. + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher, Christoph Hack. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/lexers/dotnet.py b/pygments/lexers/dotnet.py index 95cb720a..8bcb445b 100644 --- a/pygments/lexers/dotnet.py +++ b/pygments/lexers/dotnet.py @@ -5,7 +5,7 @@ Lexers for .net languages. - :copyright: 2006 by Georg Brandl, Armin Ronacher. + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher. :license: BSD, see LICENSE for more details. """ import re diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py index d4473ec4..54288961 100644 --- a/pygments/lexers/other.py +++ b/pygments/lexers/other.py @@ -5,7 +5,7 @@ Lexers for other languages. - :copyright: 2006 by Georg Brandl, Tim Hatch <tim@timhatch.com>. + :copyright: 2006-2007 by Georg Brandl, Tim Hatch <tim@timhatch.com>. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/lexers/special.py b/pygments/lexers/special.py index 8cd43246..714bdf74 100644 --- a/pygments/lexers/special.py +++ b/pygments/lexers/special.py @@ -5,7 +5,7 @@ Special lexers. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/lexers/templates.py b/pygments/lexers/templates.py index 141837b3..d0aa2adb 100644 --- a/pygments/lexers/templates.py +++ b/pygments/lexers/templates.py @@ -5,7 +5,7 @@ Lexers for various template engines' markup. - :copyright: 2006 by Armin Ronacher, Georg Brandl, Matt Good, + :copyright: 2006-2007 by Armin Ronacher, Georg Brandl, Matt Good, Ben Bangert. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/lexers/text.py b/pygments/lexers/text.py index 8e33e446..76443496 100644 --- a/pygments/lexers/text.py +++ b/pygments/lexers/text.py @@ -5,7 +5,7 @@ Lexers for non-source code file types. - :copyright: 2006 by Armin Ronacher, Georg Brandl, + :copyright: 2006-2007 by Armin Ronacher, Georg Brandl, Tim Hatch <tim@timhatch.com>, Ronny Pfannschmidt, Dennis Kaarsemaker. diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py index c4c29b7b..d195148f 100644 --- a/pygments/lexers/web.py +++ b/pygments/lexers/web.py @@ -5,7 +5,7 @@ Lexers for web-related languages and markup. - :copyright: 2006 by Georg Brandl, Armin Ronacher, + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher, Tim Hatch <tim@timhatch.com>. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/plugin.py b/pygments/plugin.py index 5e09c123..d728896f 100644 --- a/pygments/plugin.py +++ b/pygments/plugin.py @@ -32,7 +32,7 @@ yourfilter = yourfilter:YourFilter - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ try: diff --git a/pygments/scanner.py b/pygments/scanner.py index b1837cc8..cb605117 100644 --- a/pygments/scanner.py +++ b/pygments/scanner.py @@ -12,7 +12,7 @@ Have a look at the `DelphiLexer` to get an idea of how to use this scanner. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import re diff --git a/pygments/style.py b/pygments/style.py index 66d778af..63bd299d 100644 --- a/pygments/style.py +++ b/pygments/style.py @@ -5,7 +5,7 @@ Basic style object. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/__init__.py b/pygments/styles/__init__.py index e5a6553d..1b75dcbc 100644 --- a/pygments/styles/__init__.py +++ b/pygments/styles/__init__.py @@ -5,7 +5,7 @@ Contains built-in styles. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ from pygments.plugin import find_plugin_styles diff --git a/pygments/styles/autumn.py b/pygments/styles/autumn.py index 1862c3ad..cdb6cde6 100644 --- a/pygments/styles/autumn.py +++ b/pygments/styles/autumn.py @@ -5,7 +5,7 @@ A colorful style, inspired by the terminal highlighting style. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/borland.py b/pygments/styles/borland.py index b798ebe0..282eb5e3 100644 --- a/pygments/styles/borland.py +++ b/pygments/styles/borland.py @@ -5,7 +5,7 @@ Style similar to the style used in the borland ides. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/colorful.py b/pygments/styles/colorful.py index f542d3fc..667af836 100644 --- a/pygments/styles/colorful.py +++ b/pygments/styles/colorful.py @@ -5,7 +5,7 @@ A colorful style, inspired by CodeRay. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/default.py b/pygments/styles/default.py index a7ba6eb8..31ef14c5 100644 --- a/pygments/styles/default.py +++ b/pygments/styles/default.py @@ -5,7 +5,7 @@ The default highlighting style for Pygments. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/friendly.py b/pygments/styles/friendly.py index e6762091..dc2dd2d7 100644 --- a/pygments/styles/friendly.py +++ b/pygments/styles/friendly.py @@ -5,7 +5,7 @@ A modern style based on the VIM pyte theme. - :copyright: 2006 by Georg Brandl, Armin Ronacher. + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/manni.py b/pygments/styles/manni.py index 1f99ad1f..19f4b67d 100644 --- a/pygments/styles/manni.py +++ b/pygments/styles/manni.py @@ -8,7 +8,7 @@ This is a port of the style used in the `php port`_ of pygments by Manni. The style is called 'default' there. - :copyright: 2006 by Armin Ronacher, Manni <manni@fnord.name>. + :copyright: 2006-2007 by Armin Ronacher, Manni <manni@fnord.name>. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/murphy.py b/pygments/styles/murphy.py index 82ae6d15..d7d27f98 100644 --- a/pygments/styles/murphy.py +++ b/pygments/styles/murphy.py @@ -5,7 +5,7 @@ Murphy's style from CodeRay. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/native.py b/pygments/styles/native.py index 2f1e6576..978b833b 100644 --- a/pygments/styles/native.py +++ b/pygments/styles/native.py @@ -5,7 +5,7 @@ pygments version of my "native" vim theme. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/pastie.py b/pygments/styles/pastie.py index 3cfe781d..fe42ab8c 100644 --- a/pygments/styles/pastie.py +++ b/pygments/styles/pastie.py @@ -7,7 +7,7 @@ .. _pastie: http://pastie.caboo.se/ - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/perldoc.py b/pygments/styles/perldoc.py index 8cd21a93..0693bc0d 100644 --- a/pygments/styles/perldoc.py +++ b/pygments/styles/perldoc.py @@ -7,7 +7,7 @@ .. _perldoc: http://perldoc.perl.org/ - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/styles/trac.py b/pygments/styles/trac.py index df28045a..16808fe5 100644 --- a/pygments/styles/trac.py +++ b/pygments/styles/trac.py @@ -5,7 +5,7 @@ Port of the default trac highlighter design. - :copyright: 2006 by Edgewall, Armin Ronacher. + :copyright: 2006-2007 by Edgewall, Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/pygments/token.py b/pygments/token.py index fce94303..e4b81e55 100644 --- a/pygments/token.py +++ b/pygments/token.py @@ -5,7 +5,7 @@ Basic token types and the standard tokens. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ try: diff --git a/pygments/util.py b/pygments/util.py index 87ee817a..bf9f1a26 100644 --- a/pygments/util.py +++ b/pygments/util.py @@ -5,7 +5,7 @@ Utility functions. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ import re diff --git a/scripts/check_sources.py b/scripts/check_sources.py index e769abf8..654e24a0 100755 --- a/scripts/check_sources.py +++ b/scripts/check_sources.py @@ -7,7 +7,7 @@ Make sure each Python file has a correct file header including copyright and license information. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: GNU GPL, see LICENSE for more details. """ diff --git a/scripts/count_loc.py b/scripts/count_loc.py index 5804cd6f..1b638b44 100644 --- a/scripts/count_loc.py +++ b/scripts/count_loc.py @@ -7,7 +7,7 @@ Count the lines of code in pocoo, colubrid and jinja. Requires an svn checkout. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: GNU GPL, see LICENSE for more details. """ from pocoo.utils.path import Path diff --git a/scripts/find_abandoned_lexers.py b/scripts/find_abandoned_lexers.py index ccd57429..8db08b5b 100644 --- a/scripts/find_abandoned_lexers.py +++ b/scripts/find_abandoned_lexers.py @@ -8,7 +8,7 @@ in the documentation right now. Maybe it would be a good idea to check the mimetypes, filename patterns and aliases too. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import re diff --git a/scripts/find_codetags.py b/scripts/find_codetags.py index 54d66b84..4513af2f 100755 --- a/scripts/find_codetags.py +++ b/scripts/find_codetags.py @@ -7,7 +7,7 @@ Find code tags in specified files and/or directories and create a report in HTML format. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: GNU GPL, see LICENSE for more details. """ diff --git a/scripts/find_error.py b/scripts/find_error.py index f9b4b2ae..e210028a 100644 --- a/scripts/find_error.py +++ b/scripts/find_error.py @@ -8,7 +8,7 @@ the text where Error tokens are being generated, along with some context. - :copyright: 2006 by Tim Hatch <tim@timhatch.com>. + :copyright: 2006-2007 by Tim Hatch <tim@timhatch.com>. :license: BSD, see LICENSE for more details. """ diff --git a/scripts/fix_epydoc_markup.py b/scripts/fix_epydoc_markup.py index 76bbdaed..5c83556e 100755 --- a/scripts/fix_epydoc_markup.py +++ b/scripts/fix_epydoc_markup.py @@ -6,7 +6,7 @@ Fix epydoc "summary" tables. - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: GNU GPL, see LICENSE for more details. """ diff --git a/tests/examplefiles/test.html b/tests/examplefiles/test.html index 52adca81..72cba437 100644 --- a/tests/examplefiles/test.html +++ b/tests/examplefiles/test.html @@ -12,7 +12,7 @@ * * based on the pyte vim theme * - * :copyright: 2006 by Georg Brandl. + * :copyright: 2006-2007 by Georg Brandl. * :license: GNU GPL, see LICENSE for more details. */ @@ -71,7 +71,7 @@ pre.syntax { padding: 5px; margin-top: 0px; } Pocoo ACL System. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: GNU GPL, see LICENSE for more details. </span><span class="st st-db">"""</span> @@ -355,7 +355,7 @@ pre.syntax { padding: 5px; margin-top: 0px; } Default authentication module. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: GNU GPL, see LICENSE for more details. </span><span class="st st-db">"""</span> @@ -526,7 +526,7 @@ pre.syntax { padding: 5px; margin-top: 0px; } Pocoo BBCode parser. - :copyright: 2006 by Georg Brandl, Armin Ronacher. + :copyright: 2006-2007 by Georg Brandl, Armin Ronacher. :license: GNU GPL, see LICENSE for more details. </span><span class="st st-db">"""</span> @@ -1065,7 +1065,7 @@ pre.syntax { padding: 5px; margin-top: 0px; } Provides a very simple caching system for persistent processes. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: GNU GPL, see LICENSE for more details. </span><span class="st st-db">"""</span> <span class="kw">from </span><span class="cls">pocoo.application</span><span class="kw"> import</span> <span class="name">RequestWrapper</span> @@ -1130,7 +1130,7 @@ pre.syntax { padding: 5px; margin-top: 0px; } Displays a random captcha picture (debugging only). - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: GNU GPL, see LICENSE for more details. </span><span class="st st-db">"""</span> <span class="kw">from </span><span class="cls">pocoo.application</span><span class="kw"> import</span> <span class="name">RequestHandler</span> @@ -1155,7 +1155,7 @@ pre.syntax { padding: 5px; margin-top: 0px; } Provides static content serving like mozilla's chrome:// scheme. - :copyright: 2006 by Armin Ronacher, Georg Brandl. + :copyright: 2006-2007 by Armin Ronacher, Georg Brandl. :license: GNU GPL, see LICENSE for more details. </span><span class="st st-db">"""</span> <span class="kw">import </span><span class="cls">os</span> @@ -1258,7 +1258,7 @@ pre.syntax { padding: 5px; margin-top: 0px; } Pocoo core database definition. - :copyright: 2006 by Armin Ronacher, Georg Brandl. + :copyright: 2006-2007 by Armin Ronacher, Georg Brandl. :license: GNU GPL, see LICENSE for more details. </span><span class="st st-db">"""</span> <span class="kw">from </span><span class="cls">pocoo.db</span><span class="kw"> import</span> <span class="name">meta</span>, <span class="name">DatabaseObserver</span> @@ -1412,7 +1412,7 @@ pre.syntax { padding: 5px; margin-top: 0px; } Provides RSS Feeds. - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: GNU GPL, see LICENSE for more details. </span><span class="st st-db">"""</span> <span class="kw">from </span><span class="cls">pocoo</span><span class="kw"> import</span> <span class="name">Component</span> @@ -1611,7 +1611,7 @@ pre.syntax { padding: 5px; margin-top: 0px; } Forum Utilities. - :copyright: 2006 by Armin Ronacher, Benjamin Wiegand. + :copyright: 2006-2007 by Armin Ronacher, Benjamin Wiegand. :license: GNU GPL, see LICENSE for more details. </span><span class="st st-db">"""</span> <span class="kw">from </span><span class="cls">datetime</span><span class="kw"> import</span> <span class="name">datetime</span> diff --git a/tests/run.py b/tests/run.py index d2599331..66048391 100644 --- a/tests/run.py +++ b/tests/run.py @@ -8,7 +8,7 @@ python run.py [testfile ...] - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: GNU GPL, see LICENSE for more details. """ diff --git a/tests/test_basic_api.py b/tests/test_basic_api.py index 592cfb25..a5abd2b8 100644 --- a/tests/test_basic_api.py +++ b/tests/test_basic_api.py @@ -3,7 +3,7 @@ Pygments basic API tests ~~~~~~~~~~~~~~~~~~~~~~~~ - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_clexer.py b/tests/test_clexer.py index 10e88afd..1c002082 100644 --- a/tests/test_clexer.py +++ b/tests/test_clexer.py @@ -3,7 +3,7 @@ Basic CLexer Test ~~~~~~~~~~~~~~~~~ - :copyright: 2006 by Armin Ronacher. + :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index 8f5d43ae..9a068d53 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -3,7 +3,7 @@ Command line test ~~~~~~~~~~~~~~~~~ - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_examplefiles.py b/tests/test_examplefiles.py index d5279071..93bbab16 100644 --- a/tests/test_examplefiles.py +++ b/tests/test_examplefiles.py @@ -3,7 +3,7 @@ Pygments tests with example files ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_html_formatter.py b/tests/test_html_formatter.py index 29d484c1..a23fbfa9 100644 --- a/tests/test_html_formatter.py +++ b/tests/test_html_formatter.py @@ -3,7 +3,7 @@ Pygments HTML formatter tests ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - :copyright: 2006 by Georg Brandl. + :copyright: 2006-2007 by Georg Brandl. :license: BSD, see LICENSE for more details. """ |