mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
import erb_2_0_4b2
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4216 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e078a75b73
commit
38ac53f0c1
1 changed files with 14 additions and 6 deletions
18
lib/erb.rb
18
lib/erb.rb
|
@ -34,6 +34,8 @@ class ERB
|
|||
end
|
||||
|
||||
class TrimScanner < Scanner
|
||||
TrimSplitRegexp = /(<%%)|(%%>)|(<%=)|(<%#)|(<%)|(%>\n)|(%>)|(\n)/
|
||||
|
||||
def initialize(src, trim_mode, percent)
|
||||
super(src)
|
||||
@trim_mode = trim_mode
|
||||
|
@ -83,17 +85,21 @@ class ERB
|
|||
def trim_line(line)
|
||||
head = nil
|
||||
last = nil
|
||||
line.split(SplitRegexp).each do |token|
|
||||
line.split(TrimSplitRegexp).each do |token|
|
||||
next if token.empty?
|
||||
head = token unless head
|
||||
if token == "\n" && last == '%>'
|
||||
next if @trim_mode == '>'
|
||||
next if @trim_mode == '<>' && is_erb_stag?(head)
|
||||
if token == "%>\n"
|
||||
yield('%>')
|
||||
if @trim_mode == '>'
|
||||
yield(:cr)
|
||||
elsif @trim_mode == '<>' && is_erb_stag?(head)
|
||||
yield(:cr)
|
||||
else
|
||||
yield("\n")
|
||||
end
|
||||
break
|
||||
end
|
||||
yield(token)
|
||||
last = token
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -158,6 +164,8 @@ class ERB
|
|||
content = ''
|
||||
out.push(token.to_s)
|
||||
out.cr
|
||||
when :cr
|
||||
out.cr
|
||||
when '<%', '<%=', '<%#'
|
||||
scanner.stag = token
|
||||
out.push("#{@put_cmd} #{content.dump}") if content.size > 0
|
||||
|
|
Loading…
Reference in a new issue