aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mako/util.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-11-17 22:06:11 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-11-17 22:06:11 +0000
commit7dac1fc2bb08661e5f7cdfe41a75fffccf136265 (patch)
tree18e1348bfbf91afbb3fc080509bacedb59d4faad /lib/mako/util.py
parent02eac60bd2ddc420650d1a66217e89347a834497 (diff)
downloadexternal_python_mako-7dac1fc2bb08661e5f7cdfe41a75fffccf136265.tar.gz
external_python_mako-7dac1fc2bb08661e5f7cdfe41a75fffccf136265.tar.bz2
external_python_mako-7dac1fc2bb08661e5f7cdfe41a75fffccf136265.zip
lexer completed
Diffstat (limited to 'lib/mako/util.py')
-rw-r--r--lib/mako/util.py35
1 files changed, 34 insertions, 1 deletions
diff --git a/lib/mako/util.py b/lib/mako/util.py
index bc2377c..74ff01b 100644
--- a/lib/mako/util.py
+++ b/lib/mako/util.py
@@ -1,5 +1,38 @@
-
+from StringIO import StringIO
+import re, string
try:
Set = set
except:
+ import sets
Set = sets.Set
+
+
+def adjust_whitespace(text):
+ state = [False, False]
+ (backslashed, triplequoted) = (0, 1)
+ def in_multi_line(line):
+ current_state = (state[backslashed] or state[triplequoted])
+ if re.search(r"\\$", line):
+ state[backslashed] = True
+ else:
+ state[backslashed] = False
+ triples = len(re.findall(r"\"\"\"|\'\'\'", line))
+ if triples == 1 or triples % 2 != 0:
+ state[triplequoted] = not state[triplequoted]
+ return current_state
+
+ def _indent_line(line, stripspace = ''):
+ return re.sub(r"^%s" % stripspace, '', line)
+
+ stream = StringIO()
+ stripspace = None
+
+ for line in re.split(r'\r?\n', text):
+ if in_multi_line(line):
+ stream.write(line + "\n")
+ else:
+ line = string.expandtabs(line)
+ if stripspace is None and re.search(r"^[ \t]*[^# \t]", line):
+ stripspace = re.match(r"^([ \t]*)", line).group(1)
+ stream.write(_indent_line(line, stripspace) + "\n")
+ return stream.getvalue()