Skip to content

Commit

Permalink
Reverted james filter in tags branch
Browse files Browse the repository at this point in the history
This reverts commit 282786d.

Conflicts:

	lib/liquid.rb
	lib/liquid/variable.rb
	test/if_else_test.rb
  • Loading branch information
Tobias Lütke committed Apr 6, 2009
1 parent e3fd003 commit edcc14f
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 56 deletions.
10 changes: 2 additions & 8 deletions lib/liquid.rb
Expand Up @@ -22,7 +22,7 @@
$LOAD_PATH.unshift(File.dirname(__FILE__))

module Liquid
FilterSeparator = /\|/
FilterSperator = /\|/
ArgumentSeparator = ','
FilterArgumentSeparator = ':'
VariableAttributeSeparator = '.'
Expand All @@ -33,13 +33,7 @@ module Liquid
VariableStart = /\{\{/
VariableEnd = /\}\}/
VariableIncompleteEnd = /\}\}?/
QuotedString = /"[^"]+"|'[^']+'/
QuotedFragment = /#{QuotedString}|(?:[^\s,\|'"]|#{QuotedString})+/
StrictQuotedFragment = /"[^"]+"|'[^']+'|[^\s,\|,\:,\,]+/
FirstFilterArgument = /#{FilterArgumentSeparator}(?:#{StrictQuotedFragment})/
OtherFilterArgument = /#{ArgumentSeparator}(?:#{StrictQuotedFragment})/
SpacelessFilter = /#{FilterSeparator}(?:#{StrictQuotedFragment})(?:#{FirstFilterArgument}(?:#{OtherFilterArgument})*)?/
Expression = /(?:#{QuotedFragment}(?:#{SpacelessFilter})*)/
QuotedFragment = /"[^"]+"|'[^']+'|[^\s,|]+/
TagAttributes = /(\w+)\s*\:\s*(#{QuotedFragment})/
AnyStartingTag = /\{\{|\{\%/
PartialTemplateParser = /#{TagStart}.*?#{TagEnd}|#{VariableStart}.*?#{VariableIncompleteEnd}/
Expand Down
7 changes: 0 additions & 7 deletions lib/liquid/context.rb
Expand Up @@ -133,9 +133,6 @@ def resolve(key)
:blank?
when 'empty'
:empty?
# filtered variables
when SpacelessFilter
filtered_variable(key)
# Single quoted strings
when /^'(.*)'$/
$1.to_s
Expand Down Expand Up @@ -224,9 +221,5 @@ def variable(markup)

object
end

def filtered_variable(markup)
Variable.new(markup).render(self)
end
end
end
2 changes: 1 addition & 1 deletion lib/liquid/tags/assign.rb
Expand Up @@ -9,7 +9,7 @@ module Liquid
# {{ monkey }}
#
class Assign < Tag
Syntax = /(#{VariableSignature}+)\s*=\s*(#{Expression}+)/
Syntax = /(#{VariableSignature}+)\s*=\s*(#{QuotedFragment}+)/

def initialize(tag_name, markup, tokens)
if markup =~ Syntax
Expand Down
4 changes: 2 additions & 2 deletions lib/liquid/tags/case.rb
@@ -1,7 +1,7 @@
module Liquid
class Case < Block
Syntax = /(#{Expression})/
WhenSyntax = /(#{Expression})(?:(?:\s+or\s+|\s*\,\s*)(#{Expression}.*))?/
Syntax = /(#{QuotedFragment})/
WhenSyntax = /(#{QuotedFragment})(?:(?:\s+or\s+|\s*\,\s*)(#{QuotedFragment}.*))?/

def initialize(tag_name, markup, tokens)
@blocks = []
Expand Down
6 changes: 3 additions & 3 deletions lib/liquid/tags/cycle.rb
Expand Up @@ -13,8 +13,8 @@ module Liquid
# <div class="green"> Item five</div>
#
class Cycle < Tag
SimpleSyntax = /^#{Expression}/
NamedSyntax = /^(#{Expression})\s*\:\s*(.*)/
SimpleSyntax = /^#{QuotedFragment}/
NamedSyntax = /^(#{QuotedFragment})\s*\:\s*(.*)/

def initialize(tag_name, markup, tokens)
case markup
Expand Down Expand Up @@ -48,7 +48,7 @@ def render(context)

def variables_from_string(markup)
markup.split(',').collect do |var|
var =~ /\s*(#{Expression})\s*/
var =~ /\s*(#{QuotedFragment})\s*/
$1 ? $1 : nil
end.compact
end
Expand Down
2 changes: 1 addition & 1 deletion lib/liquid/tags/for.rb
Expand Up @@ -42,7 +42,7 @@ module Liquid
# forloop.last:: Returns true if the item is the last item.
#
class For < Block
Syntax = /(\w+)\s+in\s+(#{Expression}+)\s*(reversed)?/
Syntax = /(\w+)\s+in\s+(#{QuotedFragment}+)\s*(reversed)?/

def initialize(tag_name, markup, tokens)
if markup =~ Syntax
Expand Down
2 changes: 1 addition & 1 deletion lib/liquid/tags/if.rb
Expand Up @@ -13,7 +13,7 @@ module Liquid
#
class If < Block
SyntaxHelp = "Syntax Error in tag 'if' - Valid syntax: if [expression]"
Syntax = /(#{Expression})\s*([=!<>a-z_]+)?\s*(#{Expression})?/
Syntax = /(#{QuotedFragment})\s*([=!<>a-z_]+)?\s*(#{QuotedFragment})?/

def initialize(tag_name, markup, tokens)

Expand Down
5 changes: 3 additions & 2 deletions lib/liquid/variable.rb
Expand Up @@ -19,8 +19,9 @@ def initialize(markup)
@filters = []
if match = markup.match(/\s*(#{QuotedFragment})/)
@name = match[1]
if markup.match(/#{FilterSeparator}\s*(.*)/)
filters = Regexp.last_match(1).split(/#{FilterSeparator}/)
if markup.match(/#{FilterSperator}\s*(.*)/)
filters = Regexp.last_match(1).split(/#{FilterSperator}/)

filters.each do |f|
if matches = f.match(/\s*(\w+)/)
filtername = matches[1]
Expand Down
7 changes: 3 additions & 4 deletions test/assign_test.rb
@@ -1,11 +1,10 @@
require File.dirname(__FILE__) + '/helper'

class IfElseTest < Test::Unit::TestCase
class AssignTest < Test::Unit::TestCase
include Liquid

def test_with_filtered_expressions
assert_template_result('foo','{% assign foo = values|sort|last %}{{ foo }}', 'values' => %w{foo bar baz})
assert_template_result('foo','{% assign sorted = values|sort %}{{ sorted | last }}', 'values' => %w{foo bar baz})
def test_assigned_variable
assert_template_result('.foo.','{% assign foo = values %}.{{ foo }}.', 'values' => %w{foo bar baz})
end

end
19 changes: 0 additions & 19 deletions test/if_else_test.rb
Expand Up @@ -112,25 +112,6 @@ def test_else_if
assert_template_result('elsif','{% if false %}if{% elsif true %}elsif{% endif %}')
end

def test_with_filtered_expressions
assert_template_result('yes','{% if "BLAH"|downcase == "blah" %}yes{% endif %}')
assert_template_result('yes','{% if "FOO BAR"|truncatewords:1,"--" == "FOO--" %}yes{% endif %}')
assert_template_result('yes','{% if "FOO BAR"|truncatewords:1,"--"|downcase == "foo--" %}yes{% endif %}')
assert_template_result('yes','{% if "foo--" == "FOO BAR"|truncatewords:1,"--"|downcase %}yes{% endif %}')
# array transformation, to make sure we aren't converting arrays to strings somewhere along the way:
assert_template_result('yes','{% if values|sort == sorted %}yes{% endif %}', 'values' => %w{foo bar baz}, 'sorted' => %w{bar baz foo})
end

def test_allow_no_spaces_in_filtered_expressions
assert_template_result('','{% if "foo--" == "FOO BAR" |truncatewords:1,"--"|downcase %}yes{% endif %}')
assert_template_result('','{% if "foo--" == "FOO BAR"| truncatewords:1,"--"|downcase %}yes{% endif %}')
assert_template_result('','{% if "foo--" == "FOO BAR"|truncatewords :1,"--"|downcase %}yes{% endif %}')
assert_template_result('','{% if "foo--" == "FOO BAR"|truncatewords: 1,"--"|downcase %}yes{% endif %}')
assert_template_result('','{% if "foo--" == "FOO BAR"|truncatewords:1 ,"--"|downcase %}yes{% endif %}')
assert_template_result('','{% if "foo--" == "FOO BAR"|truncatewords:1, "--"|downcase %}yes{% endif %}')
assert_template_result('','{% if "foo--" == "FOO BAR"|truncatewords:1,"--" |downcase %}yes{% endif %}')
end

def test_syntax_error_no_variable
assert_raise(SyntaxError){ assert_template_result('', '{% if jerry == 1 %}')}
end
Expand Down
12 changes: 4 additions & 8 deletions test/standard_tag_test.rb
Expand Up @@ -98,11 +98,7 @@ def test_for_and_if
assigns = {'array' => [1,2,3] }
assert_template_result('+--', '{%for item in array%}{% if forloop.first %}+{% else %}-{% endif %}{%endfor%}', assigns)
end

def test_for_with_filtered_expressions
assert_template_result('abc','{% for letter in letters|sort %}{{ letter }}{% endfor %}', 'letters' => %w{c b a})
end


def test_limiting
assigns = {'array' => [1,2,3,4,5,6,7,8,9,0]}
assert_template_result('12','{%for i in array limit:2 %}{{ i }}{%endfor%}',assigns)
Expand Down Expand Up @@ -353,10 +349,10 @@ def test_cycle

assert_template_result('one two one','{%cycle "one", "two"%} {%cycle "one", "two"%} {%cycle "one", "two"%}')

assert_template_result('text-align: left text-align: right','{%cycle "text-align: left", "text-align: right" %} {%cycle "text-align: left", "text-align: right"%}')
assert_template_result('text-align: left,text-align: right','{%cycle "text-align: left", "text-align: right" %},{%cycle "text-align: left", "text-align: right"%}')

assert_template_result(' ','{% cycle "", "", "</tr><tr>" %}')
assert_template_result(' </tr><tr> ','{% cycle "", "", "</tr><tr>" %} {% cycle "", "", "</tr><tr>" %} {% cycle "", "", "</tr><tr>" %} {% cycle "", "", "</tr><tr>" %}')
assert_template_result('.','.{% cycle "", "", "</tr><tr>" %}')
assert_template_result('...</tr><tr> ','.{% cycle "", "", "</tr><tr>" %}.{% cycle "", "", "</tr><tr>" %}.{% cycle "", "", "</tr><tr>" %} {% cycle "", "", "</tr><tr>" %}')

end

Expand Down

0 comments on commit edcc14f

Please sign in to comment.