summaryrefslogtreecommitdiff
path: root/pygments/lexers
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-12-10 11:31:03 +0100
committergbrandl <devnull@localhost>2006-12-10 11:31:03 +0100
commit74d7585b086181a8cd62205938970b80fe7aa4df (patch)
treee38c10178f674fbe35d82d3630c898a118408329 /pygments/lexers
parent0a767b5548b7e0800196ad1beba56e34bcc4d6a8 (diff)
downloadpygments-74d7585b086181a8cd62205938970b80fe7aa4df.tar.gz
[svn] Change Pygments license to BSD.
Diffstat (limited to 'pygments/lexers')
-rw-r--r--pygments/lexers/__init__.py2
-rw-r--r--pygments/lexers/_luabuiltins.py2
-rw-r--r--pygments/lexers/_mapping.py2
-rw-r--r--pygments/lexers/_phpbuiltins.py2
-rw-r--r--pygments/lexers/agile.py4
-rw-r--r--pygments/lexers/compiled.py2
-rw-r--r--pygments/lexers/dotnet.py2
-rw-r--r--pygments/lexers/other.py2
-rw-r--r--pygments/lexers/special.py2
-rw-r--r--pygments/lexers/templates.py2
-rw-r--r--pygments/lexers/text.py2
-rw-r--r--pygments/lexers/web.py2
12 files changed, 13 insertions, 13 deletions
diff --git a/pygments/lexers/__init__.py b/pygments/lexers/__init__.py
index 751d49bc..0f2b7093 100644
--- a/pygments/lexers/__init__.py
+++ b/pygments/lexers/__init__.py
@@ -6,7 +6,7 @@
Pygments lexers.
:copyright: 2006 by Georg Brandl.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
import fnmatch
import types
diff --git a/pygments/lexers/_luabuiltins.py b/pygments/lexers/_luabuiltins.py
index b680d1c8..c7c1496b 100644
--- a/pygments/lexers/_luabuiltins.py
+++ b/pygments/lexers/_luabuiltins.py
@@ -10,7 +10,7 @@
Do not edit the MODULES dict by hand.
:copyright: 2006 by Lukas Meuser.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
MODULES = {'basic': ['_G',
diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py
index 68b8be3c..ab56d8c0 100644
--- a/pygments/lexers/_mapping.py
+++ b/pygments/lexers/_mapping.py
@@ -10,7 +10,7 @@
Do not alter the LEXERS dictionary by hand.
:copyright: 2006 by Armin Ronacher, Georg Brandl.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
LEXERS = {
diff --git a/pygments/lexers/_phpbuiltins.py b/pygments/lexers/_phpbuiltins.py
index 626bc99b..0a49dd09 100644
--- a/pygments/lexers/_phpbuiltins.py
+++ b/pygments/lexers/_phpbuiltins.py
@@ -13,7 +13,7 @@
a server ;-)
:copyright: 2006 by Armin Ronacher.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py
index af3aef1d..5e074731 100644
--- a/pygments/lexers/agile.py
+++ b/pygments/lexers/agile.py
@@ -7,7 +7,7 @@
:copyright: 2006 by Georg Brandl, Armin Ronacher,
Lukas Meuser, Marek Kubica.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
import re
@@ -906,7 +906,7 @@ class SchemeLexer(RegexLexer):
# find the remaining variables
(valid_name, Name.Variable),
- # the famous parantheses!
+ # the famous parentheses!
(r'(\(|\))', Punctuation),
],
}
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py
index 9fea6808..491c234c 100644
--- a/pygments/lexers/compiled.py
+++ b/pygments/lexers/compiled.py
@@ -6,7 +6,7 @@
Lexers for compiled languages: C/C++, Delphi, Java.
:copyright: 2006 by Georg Brandl, Armin Ronacher, Christoph Hack.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
import re
diff --git a/pygments/lexers/dotnet.py b/pygments/lexers/dotnet.py
index a32298bf..c240d17a 100644
--- a/pygments/lexers/dotnet.py
+++ b/pygments/lexers/dotnet.py
@@ -6,7 +6,7 @@
.net languages
:copyright: 2006 by Georg Brandl, Armin Ronacher.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
import re
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py
index 01822fc5..4c3b524f 100644
--- a/pygments/lexers/other.py
+++ b/pygments/lexers/other.py
@@ -6,7 +6,7 @@
Lexers for other languages: SQL, BrainFuck.
:copyright: 2006 by Georg Brandl.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
import re
diff --git a/pygments/lexers/special.py b/pygments/lexers/special.py
index e0d26e8c..fb033647 100644
--- a/pygments/lexers/special.py
+++ b/pygments/lexers/special.py
@@ -6,7 +6,7 @@
Special lexers.
:copyright: 2006 by Georg Brandl.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
import re
diff --git a/pygments/lexers/templates.py b/pygments/lexers/templates.py
index 64dad6f0..495c04fe 100644
--- a/pygments/lexers/templates.py
+++ b/pygments/lexers/templates.py
@@ -6,7 +6,7 @@
Lexers for various template engines.
:copyright: 2006 by Armin Ronacher, Georg Brandl, Matt Good.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
import re
diff --git a/pygments/lexers/text.py b/pygments/lexers/text.py
index b2c38ebb..c322badf 100644
--- a/pygments/lexers/text.py
+++ b/pygments/lexers/text.py
@@ -6,7 +6,7 @@
Lexers for non-source code file types: Diff, Makefiles, Ini configs etc.
:copyright: 2006 by Armin Ronacher, Georg Brandl.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
import re
diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py
index 7e74ccb5..904c8c11 100644
--- a/pygments/lexers/web.py
+++ b/pygments/lexers/web.py
@@ -6,7 +6,7 @@
Lexers for web-related languages: JavaScript, CSS, HTML, XML, PHP.
:copyright: 2006 by Georg Brandl, Armin Ronacher.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
import re