aboutsummaryrefslogtreecommitdiffstats
path: root/mako/ext
diff options
context:
space:
mode:
Diffstat (limited to 'mako/ext')
-rw-r--r--mako/ext/autohandler.py6
-rw-r--r--mako/ext/babelplugin.py6
-rw-r--r--mako/ext/preprocessors.py6
-rw-r--r--mako/ext/pygmentplugin.py6
-rw-r--r--mako/ext/turbogears.py6
5 files changed, 30 insertions, 0 deletions
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 <see AUTHORS file>
+#
+# 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 <see AUTHORS file>
+#
+# 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 <see AUTHORS file>
+#
+# 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 <see AUTHORS file>
+#
+# 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 <see AUTHORS file>
+#
+# 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