From a3b2aba0256069f67d435e80f6f1c9da339147ab Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 19 Feb 2011 17:05:39 -0500 Subject: - add AUTHORS file - convert heading copyrights to 2006-2011, reference AUTHORS file --- AUTHORS | 12 ++++++++++++ LICENSE | 2 +- mako/__init__.py | 4 ++-- mako/_ast_util.py | 6 ++++++ mako/ast.py | 4 ++-- mako/cache.py | 6 ++++++ mako/codegen.py | 4 ++-- mako/exceptions.py | 4 ++-- mako/ext/autohandler.py | 6 ++++++ mako/ext/babelplugin.py | 6 ++++++ mako/ext/preprocessors.py | 6 ++++++ mako/ext/pygmentplugin.py | 6 ++++++ mako/ext/turbogears.py | 6 ++++++ mako/filters.py | 4 ++-- mako/lexer.py | 4 ++-- mako/lookup.py | 5 ++--- mako/parsetree.py | 4 ++-- mako/pygen.py | 4 ++-- mako/pyparser.py | 3 ++- mako/runtime.py | 4 ++-- mako/template.py | 5 ++--- mako/util.py | 4 ++-- 22 files changed, 81 insertions(+), 28 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..aa6b58d --- /dev/null +++ b/AUTHORS @@ -0,0 +1,12 @@ +Mako was created by Michael Bayer. + +Major contributing authors include: + +- Michael Bayer +- Geoffrey T. Dairiki +- Philip Jenvey +- David Peckam +- Armin Ronacher +- Ben Bangert + + diff --git a/LICENSE b/LICENSE index 86d4196..d9c0a90 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ This is the MIT license: http://www.opensource.org/licenses/mit-license.php -Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer and contributors. +Copyright (C) 2006-2011 the Mako authors and contributors . Mako is a trademark of Michael Bayer. Permission is hereby granted, free of charge, to any person obtaining a copy of this diff --git a/mako/__init__.py b/mako/__init__.py index 36a8286..b61cb80 100644 --- a/mako/__init__.py +++ b/mako/__init__.py @@ -1,5 +1,5 @@ -# __init__.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# mako/__init__.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/_ast_util.py b/mako/_ast_util.py index 6ff4ab9..41a40c4 100644 --- a/mako/_ast_util.py +++ b/mako/_ast_util.py @@ -1,3 +1,9 @@ +# mako/_ast_util.py +# Copyright (C) 2006-2011 the Mako authors and contributors +# +# This module is part of Mako and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + # -*- coding: utf-8 -*- """ ast diff --git a/mako/ast.py b/mako/ast.py index 3969c6f..4365b0b 100644 --- a/mako/ast.py +++ b/mako/ast.py @@ -1,5 +1,5 @@ -# ast.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# mako/ast.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/cache.py b/mako/cache.py index c82bd05..ce73ae5 100644 --- a/mako/cache.py +++ b/mako/cache.py @@ -1,3 +1,9 @@ +# mako/cache.py +# Copyright (C) 2006-2011 the Mako authors and contributors +# +# This module is part of Mako and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from mako import exceptions cache = None diff --git a/mako/codegen.py b/mako/codegen.py index 9c577d5..e26f7f7 100644 --- a/mako/codegen.py +++ b/mako/codegen.py @@ -1,5 +1,5 @@ -# codegen.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# mako/codegen.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/exceptions.py b/mako/exceptions.py index d7fb12b..7348dc0 100644 --- a/mako/exceptions.py +++ b/mako/exceptions.py @@ -1,5 +1,5 @@ -# exceptions.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# mako/exceptions.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/ext/autohandler.py b/mako/ext/autohandler.py index 5e1474a..5d89ac5 100644 --- a/mako/ext/autohandler.py +++ b/mako/ext/autohandler.py @@ -1,3 +1,9 @@ +# ext/autohandler.py +# Copyright (C) 2006-2011 the Mako authors and contributors +# +# This module is part of Mako and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """adds autohandler functionality to Mako templates. requires that the TemplateLookup class is used with templates. diff --git a/mako/ext/babelplugin.py b/mako/ext/babelplugin.py index 9f08c5e..6b7c1d3 100644 --- a/mako/ext/babelplugin.py +++ b/mako/ext/babelplugin.py @@ -1,3 +1,9 @@ +# ext/babelplugin.py +# Copyright (C) 2006-2011 the Mako authors and contributors +# +# This module is part of Mako and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """gettext message extraction via Babel: http://babel.edgewall.org/""" from StringIO import StringIO diff --git a/mako/ext/preprocessors.py b/mako/ext/preprocessors.py index 2f7c47d..2c0d993 100644 --- a/mako/ext/preprocessors.py +++ b/mako/ext/preprocessors.py @@ -1,3 +1,9 @@ +# ext/preprocessors.py +# Copyright (C) 2006-2011 the Mako authors and contributors +# +# This module is part of Mako and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """preprocessing functions, used with the 'preprocessor' argument on Template, TemplateLookup""" diff --git a/mako/ext/pygmentplugin.py b/mako/ext/pygmentplugin.py index 2e7ff0d..0ce57c4 100644 --- a/mako/ext/pygmentplugin.py +++ b/mako/ext/pygmentplugin.py @@ -1,3 +1,9 @@ +# ext/pygmentplugin.py +# Copyright (C) 2006-2011 the Mako authors and contributors +# +# This module is part of Mako and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + import re try: set diff --git a/mako/ext/turbogears.py b/mako/ext/turbogears.py index 22b707a..f7822ee 100644 --- a/mako/ext/turbogears.py +++ b/mako/ext/turbogears.py @@ -1,3 +1,9 @@ +# ext/turbogears.py +# Copyright (C) 2006-2011 the Mako authors and contributors +# +# This module is part of Mako and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + import re, inspect from mako.lookup import TemplateLookup from mako.template import Template diff --git a/mako/filters.py b/mako/filters.py index 3c1af69..a5e414e 100644 --- a/mako/filters.py +++ b/mako/filters.py @@ -1,5 +1,5 @@ -# filters.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Geoffrey T. Dairiki and Michael Bayer +# mako/filters.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/lexer.py b/mako/lexer.py index bd1fb70..cf06bb5 100644 --- a/mako/lexer.py +++ b/mako/lexer.py @@ -1,5 +1,5 @@ -# lexer.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# mako/lexer.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/lookup.py b/mako/lookup.py index 18bbf8c..a8fd6c0 100644 --- a/mako/lookup.py +++ b/mako/lookup.py @@ -1,6 +1,5 @@ -# lookup.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer -# mike_mp@zzzcomputing.com +# mako/lookup.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/parsetree.py b/mako/parsetree.py index 3fbd2fc..3ef85e6 100644 --- a/mako/parsetree.py +++ b/mako/parsetree.py @@ -1,5 +1,5 @@ -# parsetree.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# mako/parsetree.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/pygen.py b/mako/pygen.py index fd19a99..07f2667 100644 --- a/mako/pygen.py +++ b/mako/pygen.py @@ -1,5 +1,5 @@ -# pygen.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# mako/pygen.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/pyparser.py b/mako/pyparser.py index 4192ddd..aaf8125 100644 --- a/mako/pyparser.py +++ b/mako/pyparser.py @@ -1,4 +1,5 @@ -# ast.py +# mako/pyparser.py +# Copyright (C) 2006-2011 the Mako authors and contributors # Copyright (C) Mako developers # # This module is part of Mako and is released under diff --git a/mako/runtime.py b/mako/runtime.py index 1011aa4..78c209f 100644 --- a/mako/runtime.py +++ b/mako/runtime.py @@ -1,5 +1,5 @@ -# runtime.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# mako/runtime.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/template.py b/mako/template.py index e152c3b..5c67b14 100644 --- a/mako/template.py +++ b/mako/template.py @@ -1,6 +1,5 @@ -# template.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer -# mike_mp@zzzcomputing.com +# mako/template.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/mako/util.py b/mako/util.py index 8d0385a..e279f5e 100644 --- a/mako/util.py +++ b/mako/util.py @@ -1,5 +1,5 @@ -# util.py -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# mako/util.py +# Copyright (C) 2006-2011 the Mako authors and contributors # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php -- cgit v1.2.1