2008-08-08 23:00:48 -04:00
|
|
|
require 'strscan'
|
2006-12-04 03:40:23 -05:00
|
|
|
require 'sass/tree/node'
|
|
|
|
require 'sass/tree/rule_node'
|
2007-03-17 19:34:26 -04:00
|
|
|
require 'sass/tree/comment_node'
|
|
|
|
require 'sass/tree/attr_node'
|
2007-08-12 06:54:35 -04:00
|
|
|
require 'sass/tree/directive_node'
|
2008-10-15 04:21:12 -04:00
|
|
|
require 'sass/tree/variable_node'
|
2008-10-15 23:00:28 -04:00
|
|
|
require 'sass/tree/mixin_def_node'
|
2008-10-13 12:49:35 -04:00
|
|
|
require 'sass/tree/mixin_node'
|
|
|
|
require 'sass/tree/if_node'
|
|
|
|
require 'sass/tree/while_node'
|
|
|
|
require 'sass/tree/for_node'
|
2008-12-24 22:33:47 -05:00
|
|
|
require 'sass/tree/debug_node'
|
2008-10-15 23:36:39 -04:00
|
|
|
require 'sass/tree/file_node'
|
2008-10-15 23:00:28 -04:00
|
|
|
require 'sass/environment'
|
2008-10-12 22:03:06 -04:00
|
|
|
require 'sass/script'
|
2007-01-28 05:14:15 -05:00
|
|
|
require 'sass/error'
|
2008-06-01 00:17:43 -04:00
|
|
|
require 'haml/shared'
|
2006-11-28 14:43:58 -05:00
|
|
|
|
|
|
|
module Sass
|
2008-10-15 23:00:28 -04:00
|
|
|
# :stopdoc:
|
|
|
|
Mixin = Struct.new(:name, :args, :environment, :tree)
|
|
|
|
# :startdoc:
|
|
|
|
|
2006-12-17 11:45:07 -05:00
|
|
|
# This is the class where all the parsing and processing of the Sass
|
|
|
|
# template is done. It can be directly used by the user by creating a
|
|
|
|
# new instance and calling <tt>render</tt> to render the template. For example:
|
|
|
|
#
|
|
|
|
# template = File.load('stylesheets/sassy.sass')
|
|
|
|
# sass_engine = Sass::Engine.new(template)
|
|
|
|
# output = sass_engine.render
|
|
|
|
# puts output
|
2006-11-28 14:43:58 -05:00
|
|
|
class Engine
|
2009-01-22 17:53:59 -05:00
|
|
|
include Haml::Util
|
2008-12-09 16:27:29 -05:00
|
|
|
Line = Struct.new(:text, :tabs, :index, :offset, :filename, :children)
|
2008-08-04 01:00:32 -04:00
|
|
|
|
2006-12-04 03:40:23 -05:00
|
|
|
# The character that begins a CSS attribute.
|
2007-01-28 05:14:15 -05:00
|
|
|
ATTRIBUTE_CHAR = ?:
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2006-12-22 01:22:15 -05:00
|
|
|
# The character that designates that
|
2008-10-12 22:03:06 -04:00
|
|
|
# an attribute should be assigned to a SassScript expression.
|
2007-01-28 05:14:15 -05:00
|
|
|
SCRIPT_CHAR = ?=
|
2007-03-17 16:48:29 -04:00
|
|
|
|
|
|
|
# The character that designates the beginning of a comment,
|
|
|
|
# either Sass or CSS.
|
|
|
|
COMMENT_CHAR = ?/
|
|
|
|
|
2007-03-17 19:34:26 -04:00
|
|
|
# The character that follows the general COMMENT_CHAR and designates a Sass comment,
|
2007-03-17 16:48:29 -04:00
|
|
|
# which is not output as a CSS comment.
|
|
|
|
SASS_COMMENT_CHAR = ?/
|
2007-02-28 11:35:37 -05:00
|
|
|
|
2007-03-17 19:34:26 -04:00
|
|
|
# The character that follows the general COMMENT_CHAR and designates a CSS comment,
|
|
|
|
# which is embedded in the CSS document.
|
|
|
|
CSS_COMMENT_CHAR = ?*
|
2007-03-18 17:11:32 -04:00
|
|
|
|
|
|
|
# The character used to denote a compiler directive.
|
|
|
|
DIRECTIVE_CHAR = ?@
|
2008-04-08 02:09:17 -04:00
|
|
|
|
2007-12-11 05:36:40 -05:00
|
|
|
# Designates a non-parsed rule.
|
|
|
|
ESCAPE_CHAR = ?\\
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2008-04-09 05:21:49 -04:00
|
|
|
# Designates block as mixin definition rather than CSS rules to output
|
2008-04-16 10:13:55 -04:00
|
|
|
MIXIN_DEFINITION_CHAR = ?=
|
2008-04-09 05:21:49 -04:00
|
|
|
|
|
|
|
# Includes named mixin declared using MIXIN_DEFINITION_CHAR
|
|
|
|
MIXIN_INCLUDE_CHAR = ?+
|
|
|
|
|
2007-06-28 04:43:09 -04:00
|
|
|
# The regex that matches and extracts data from
|
|
|
|
# attributes of the form <tt>:name attr</tt>.
|
2009-03-27 20:49:03 -04:00
|
|
|
ATTRIBUTE = /^:([^\s=:"]+)\s*(=?)(?:\s+|$)(.*)/
|
2007-05-03 04:46:02 -04:00
|
|
|
|
|
|
|
# The regex that matches attributes of the form <tt>name: attr</tt>.
|
2009-03-27 20:49:03 -04:00
|
|
|
ATTRIBUTE_ALTERNATE_MATCHER = /^[^\s:"]+\s*[=:](\s|$)/
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2007-06-28 04:43:09 -04:00
|
|
|
# The regex that matches and extracts data from
|
|
|
|
# attributes of the form <tt>name: attr</tt>.
|
2009-03-27 20:49:03 -04:00
|
|
|
ATTRIBUTE_ALTERNATE = /^([^\s=:"]+)(\s*=|:)(?:\s+|$)(.*)/
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2006-12-17 11:45:07 -05:00
|
|
|
# Creates a new instace of Sass::Engine that will compile the given
|
|
|
|
# template string when <tt>render</tt> is called.
|
2008-03-13 04:07:07 -04:00
|
|
|
# See README.rdoc for available options.
|
2006-12-17 11:45:07 -05:00
|
|
|
#
|
|
|
|
#--
|
|
|
|
#
|
2007-02-02 01:15:28 -05:00
|
|
|
# TODO: Add current options to REFRENCE. Remember :filename!
|
2006-12-17 11:45:07 -05:00
|
|
|
#
|
|
|
|
# When adding options, remember to add information about them
|
2008-03-13 04:07:07 -04:00
|
|
|
# to README.rdoc!
|
2006-12-17 11:45:07 -05:00
|
|
|
#++
|
|
|
|
#
|
2006-12-03 21:47:37 -05:00
|
|
|
def initialize(template, options={})
|
2007-02-05 20:58:23 -05:00
|
|
|
@options = {
|
2007-03-18 17:11:32 -04:00
|
|
|
:style => :nested,
|
|
|
|
:load_paths => ['.']
|
2007-02-05 20:58:23 -05:00
|
|
|
}.merge! options
|
2008-08-04 01:00:32 -04:00
|
|
|
@template = template
|
2009-04-05 03:13:08 -04:00
|
|
|
@environment = Environment.new(nil, @options)
|
2008-10-15 23:00:28 -04:00
|
|
|
@environment.set_var("important", Script::String.new("!important"))
|
2006-11-28 15:33:22 -05:00
|
|
|
end
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2006-12-17 11:45:07 -05:00
|
|
|
# Processes the template and returns the result as a string.
|
2006-12-03 21:47:37 -05:00
|
|
|
def render
|
2007-01-31 01:38:23 -05:00
|
|
|
begin
|
2008-10-15 04:21:12 -04:00
|
|
|
render_to_tree.perform(@environment).to_s
|
2007-01-31 01:38:23 -05:00
|
|
|
rescue SyntaxError => err
|
2008-08-10 14:10:01 -04:00
|
|
|
err.sass_line = @line unless err.sass_line
|
2007-03-25 00:57:03 -04:00
|
|
|
unless err.sass_filename
|
|
|
|
err.add_backtrace_entry(@options[:filename])
|
|
|
|
end
|
2007-01-31 01:38:23 -05:00
|
|
|
raise err
|
|
|
|
end
|
2006-12-04 03:40:23 -05:00
|
|
|
end
|
2007-02-01 01:59:08 -05:00
|
|
|
|
|
|
|
alias_method :to_css, :render
|
2007-03-18 17:11:32 -04:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
2008-10-12 22:03:06 -04:00
|
|
|
def environment
|
|
|
|
@environment
|
2007-03-18 17:11:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def render_to_tree
|
2008-07-19 23:27:17 -04:00
|
|
|
root = Tree::Node.new(@options)
|
2008-08-04 01:00:32 -04:00
|
|
|
append_children(root, tree(tabulate(@template)).first, true)
|
2008-10-15 04:21:12 -04:00
|
|
|
root
|
2007-03-18 17:11:32 -04:00
|
|
|
end
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2006-12-04 03:40:23 -05:00
|
|
|
private
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
def tabulate(string)
|
|
|
|
tab_str = nil
|
|
|
|
first = true
|
2009-04-06 15:16:57 -04:00
|
|
|
index_offset = (@options[:line] || 1) - 1
|
2009-01-22 17:53:59 -05:00
|
|
|
enum_with_index(string.gsub(/\r|\n|\r\n|\r\n/, "\n").scan(/^.*?$/)).map do |line, index|
|
2008-08-04 01:00:32 -04:00
|
|
|
index += 1
|
2009-02-21 21:09:14 -05:00
|
|
|
next if line.strip.empty?
|
2007-01-30 23:30:30 -05:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
line_tab_str = line[/^\s*/]
|
|
|
|
unless line_tab_str.empty?
|
|
|
|
tab_str ||= line_tab_str
|
2008-06-01 00:37:44 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
raise SyntaxError.new("Indenting at the beginning of the document is illegal.", index) if first
|
|
|
|
if tab_str.include?(?\s) && tab_str.include?(?\t)
|
|
|
|
raise SyntaxError.new("Indentation can't use both tabs and spaces.", index)
|
2006-12-19 00:22:19 -05:00
|
|
|
end
|
2006-11-28 14:43:58 -05:00
|
|
|
end
|
2008-08-04 01:00:32 -04:00
|
|
|
first &&= !tab_str.nil?
|
2009-04-06 15:16:57 -04:00
|
|
|
next Line.new(line.strip, 0, index + index_offset, 0, @options[:filename], []) if tab_str.nil?
|
2008-08-04 01:00:32 -04:00
|
|
|
|
|
|
|
line_tabs = line_tab_str.scan(tab_str).size
|
|
|
|
raise SyntaxError.new(<<END.strip.gsub("\n", ' '), index) if tab_str * line_tabs != line_tab_str
|
|
|
|
Inconsistent indentation: #{Haml::Shared.human_indentation line_tab_str, true} used for indentation,
|
|
|
|
but the rest of the document was indented using #{Haml::Shared.human_indentation tab_str}.
|
|
|
|
END
|
2009-04-06 15:16:57 -04:00
|
|
|
Line.new(line.strip, line_tabs, index + index_offset, tab_str.size, @options[:filename], [])
|
2008-08-04 01:00:32 -04:00
|
|
|
end.compact
|
2006-12-04 03:40:23 -05:00
|
|
|
end
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
def tree(arr, i = 0)
|
2008-11-22 19:54:02 -05:00
|
|
|
return [], i if arr[i].nil?
|
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
base = arr[i].tabs
|
|
|
|
nodes = []
|
|
|
|
while (line = arr[i]) && line.tabs >= base
|
|
|
|
if line.tabs > base
|
|
|
|
if line.tabs > base + 1
|
|
|
|
raise SyntaxError.new("The line was indented #{line.tabs - base} levels deeper than the previous line.", line.index)
|
|
|
|
end
|
2008-04-19 12:58:45 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
nodes.last.children, i = tree(arr, i)
|
|
|
|
else
|
|
|
|
nodes << line
|
|
|
|
i += 1
|
2008-06-01 01:03:28 -04:00
|
|
|
end
|
2007-01-28 05:14:15 -05:00
|
|
|
end
|
2008-08-04 01:00:32 -04:00
|
|
|
return nodes, i
|
2006-12-19 00:22:19 -05:00
|
|
|
end
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2008-10-15 02:10:41 -04:00
|
|
|
def build_tree(parent, line, root = false)
|
2008-08-04 01:00:32 -04:00
|
|
|
@line = line.index
|
2008-10-15 02:10:41 -04:00
|
|
|
node = parse_line(parent, line, root)
|
2007-01-28 05:14:15 -05:00
|
|
|
|
2008-10-12 22:03:06 -04:00
|
|
|
# Node is a symbol if it's non-outputting, like a variable assignment,
|
2008-08-09 11:00:11 -04:00
|
|
|
# or an array if it's a group of nodes to add
|
|
|
|
return node unless node.is_a? Tree::Node
|
2007-03-18 00:52:16 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
node.line = line.index
|
2008-08-08 21:20:14 -04:00
|
|
|
node.filename = line.filename
|
2008-04-24 16:28:15 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
unless node.is_a?(Tree::CommentNode)
|
|
|
|
append_children(node, line.children, false)
|
|
|
|
else
|
|
|
|
node.children = line.children
|
2008-03-30 14:15:37 -04:00
|
|
|
end
|
2008-08-04 01:00:32 -04:00
|
|
|
return node
|
|
|
|
end
|
2008-03-30 14:15:37 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
def append_children(parent, children, root)
|
|
|
|
continued_rule = nil
|
|
|
|
children.each do |line|
|
2008-10-15 02:10:41 -04:00
|
|
|
child = build_tree(parent, line, root)
|
2008-08-04 01:00:32 -04:00
|
|
|
|
|
|
|
if child.is_a?(Tree::RuleNode) && child.continued?
|
|
|
|
raise SyntaxError.new("Rules can't end in commas.", child.line) unless child.children.empty?
|
|
|
|
if continued_rule
|
|
|
|
continued_rule.add_rules child
|
|
|
|
else
|
|
|
|
continued_rule = child
|
2007-03-18 00:52:16 -04:00
|
|
|
end
|
2008-08-04 01:00:32 -04:00
|
|
|
next
|
2007-03-18 00:52:16 -04:00
|
|
|
end
|
2008-03-30 14:15:37 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
if continued_rule
|
|
|
|
raise SyntaxError.new("Rules can't end in commas.", continued_rule.line) unless child.is_a?(Tree::RuleNode)
|
|
|
|
continued_rule.add_rules child
|
|
|
|
continued_rule.children = child.children
|
|
|
|
continued_rule, child = nil, continued_rule
|
|
|
|
end
|
2008-03-30 14:15:37 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
validate_and_append_child(parent, child, line, root)
|
2006-12-19 00:22:19 -05:00
|
|
|
end
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
raise SyntaxError.new("Rules can't end in commas.", continued_rule.line) if continued_rule
|
2008-08-09 11:00:11 -04:00
|
|
|
|
|
|
|
parent
|
2006-12-19 00:22:19 -05:00
|
|
|
end
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2008-08-04 01:00:32 -04:00
|
|
|
def validate_and_append_child(parent, child, line, root)
|
|
|
|
unless root
|
|
|
|
case child
|
2008-10-15 23:00:28 -04:00
|
|
|
when Tree::MixinDefNode
|
2008-08-04 01:00:32 -04:00
|
|
|
raise SyntaxError.new("Mixins may only be defined at the root of a document.", line.index)
|
2009-04-06 19:08:31 -04:00
|
|
|
when Tree::DirectiveNode, Tree::FileNode
|
2008-08-04 01:00:32 -04:00
|
|
|
raise SyntaxError.new("Import directives may only be used at the root of a document.", line.index)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-04-09 05:21:49 -04:00
|
|
|
case child
|
|
|
|
when Array
|
2008-08-04 01:00:32 -04:00
|
|
|
child.each {|c| validate_and_append_child(parent, c, line, root)}
|
2008-04-09 05:21:49 -04:00
|
|
|
when Tree::Node
|
|
|
|
parent << child
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-10-15 02:10:41 -04:00
|
|
|
def parse_line(parent, line, root)
|
2008-08-04 01:00:32 -04:00
|
|
|
case line.text[0]
|
2007-06-28 04:43:09 -04:00
|
|
|
when ATTRIBUTE_CHAR
|
2008-10-30 02:42:17 -04:00
|
|
|
if line.text[1] != ATTRIBUTE_CHAR
|
2008-12-09 16:27:29 -05:00
|
|
|
parse_attribute(line, ATTRIBUTE)
|
2008-10-30 02:39:36 -04:00
|
|
|
else
|
|
|
|
# Support CSS3-style pseudo-elements,
|
|
|
|
# which begin with ::
|
2008-10-30 02:42:17 -04:00
|
|
|
Tree::RuleNode.new(line.text, @options)
|
2008-10-30 02:39:36 -04:00
|
|
|
end
|
2008-10-12 22:03:06 -04:00
|
|
|
when Script::VARIABLE_CHAR
|
|
|
|
parse_variable(line)
|
2007-06-28 04:43:09 -04:00
|
|
|
when COMMENT_CHAR
|
2008-08-04 01:00:32 -04:00
|
|
|
parse_comment(line.text)
|
2007-06-28 04:43:09 -04:00
|
|
|
when DIRECTIVE_CHAR
|
2008-10-15 02:10:41 -04:00
|
|
|
parse_directive(parent, line, root)
|
2007-12-11 05:36:40 -05:00
|
|
|
when ESCAPE_CHAR
|
2008-08-04 01:00:32 -04:00
|
|
|
Tree::RuleNode.new(line.text[1..-1], @options)
|
2008-04-09 05:21:49 -04:00
|
|
|
when MIXIN_DEFINITION_CHAR
|
|
|
|
parse_mixin_definition(line)
|
|
|
|
when MIXIN_INCLUDE_CHAR
|
2008-09-15 02:57:43 -04:00
|
|
|
if line.text[1].nil?
|
2008-08-04 01:00:32 -04:00
|
|
|
Tree::RuleNode.new(line.text, @options)
|
2008-05-29 15:05:04 -04:00
|
|
|
else
|
2008-08-09 11:00:11 -04:00
|
|
|
parse_mixin_include(line, root)
|
2008-05-29 15:05:04 -04:00
|
|
|
end
|
2007-03-17 16:48:29 -04:00
|
|
|
else
|
2008-08-04 01:00:32 -04:00
|
|
|
if line.text =~ ATTRIBUTE_ALTERNATE_MATCHER
|
2008-12-09 16:27:29 -05:00
|
|
|
parse_attribute(line, ATTRIBUTE_ALTERNATE)
|
2007-05-03 04:46:02 -04:00
|
|
|
else
|
2008-10-13 12:49:35 -04:00
|
|
|
Tree::RuleNode.new(line.text, @options)
|
2007-05-03 04:46:02 -04:00
|
|
|
end
|
2006-12-21 20:52:45 -05:00
|
|
|
end
|
|
|
|
end
|
2007-05-03 04:46:02 -04:00
|
|
|
|
|
|
|
def parse_attribute(line, attribute_regx)
|
2007-08-11 19:13:43 -04:00
|
|
|
if @options[:attribute_syntax] == :normal &&
|
|
|
|
attribute_regx == ATTRIBUTE_ALTERNATE
|
|
|
|
raise SyntaxError.new("Illegal attribute syntax: can't use alternate syntax when :attribute_syntax => :normal is set.")
|
|
|
|
elsif @options[:attribute_syntax] == :alternate &&
|
|
|
|
attribute_regx == ATTRIBUTE
|
|
|
|
raise SyntaxError.new("Illegal attribute syntax: can't use normal syntax when :attribute_syntax => :alternate is set.")
|
|
|
|
end
|
|
|
|
|
2008-12-09 16:27:29 -05:00
|
|
|
name, eq, value = line.text.scan(attribute_regx)[0]
|
2007-01-28 05:14:15 -05:00
|
|
|
|
2007-02-28 11:35:37 -05:00
|
|
|
if name.nil? || value.nil?
|
2008-12-09 16:27:29 -05:00
|
|
|
raise SyntaxError.new("Invalid attribute: \"#{line.text}\".", @line)
|
|
|
|
end
|
|
|
|
expr = if (eq.strip[0] == SCRIPT_CHAR)
|
|
|
|
parse_script(value, :offset => line.offset + line.text.index(value))
|
|
|
|
else
|
|
|
|
value
|
2007-01-28 05:14:15 -05:00
|
|
|
end
|
2008-10-13 12:49:35 -04:00
|
|
|
Tree::AttrNode.new(name, expr, @options)
|
2006-12-21 20:52:45 -05:00
|
|
|
end
|
2007-05-03 04:46:02 -04:00
|
|
|
|
2008-10-12 22:03:06 -04:00
|
|
|
def parse_variable(line)
|
|
|
|
name, op, value = line.text.scan(Script::MATCH)[0]
|
|
|
|
raise SyntaxError.new("Illegal nesting: Nothing may be nested beneath variable declarations.", @line + 1) unless line.children.empty?
|
|
|
|
raise SyntaxError.new("Invalid variable: \"#{line.text}\".", @line) unless name && value
|
2008-02-29 16:18:52 -05:00
|
|
|
|
2008-12-10 04:12:19 -05:00
|
|
|
Tree::VariableNode.new(name, parse_script(value, :offset => line.offset + line.text.index(value)), op == '||=', @options)
|
2007-03-17 16:48:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def parse_comment(line)
|
2009-02-21 21:09:14 -05:00
|
|
|
if line[1] == CSS_COMMENT_CHAR || line[1] == SASS_COMMENT_CHAR
|
|
|
|
Tree::CommentNode.new(line, @options.merge(:silent => (line[1] == SASS_COMMENT_CHAR)))
|
2007-03-17 16:48:29 -04:00
|
|
|
else
|
2008-07-19 23:27:17 -04:00
|
|
|
Tree::RuleNode.new(line, @options)
|
2007-03-17 16:48:29 -04:00
|
|
|
end
|
2006-12-04 03:40:23 -05:00
|
|
|
end
|
2007-03-18 17:11:32 -04:00
|
|
|
|
2008-10-15 02:10:41 -04:00
|
|
|
def parse_directive(parent, line, root)
|
2008-12-25 17:19:19 -05:00
|
|
|
directive, whitespace, value = line.text[1..-1].split(/(\s+)/, 2)
|
2008-12-28 16:32:04 -05:00
|
|
|
offset = directive.size + whitespace.size + 1 if whitespace
|
2007-03-18 17:11:32 -04:00
|
|
|
|
2008-03-01 01:38:01 -05:00
|
|
|
# If value begins with url( or ",
|
|
|
|
# it's a CSS @import rule and we don't want to touch it.
|
|
|
|
if directive == "import" && value !~ /^(url\(|")/
|
2008-08-09 11:00:11 -04:00
|
|
|
raise SyntaxError.new("Illegal nesting: Nothing may be nested beneath import directives.", @line + 1) unless line.children.empty?
|
2007-03-18 17:11:32 -04:00
|
|
|
import(value)
|
2008-08-10 14:10:01 -04:00
|
|
|
elsif directive == "for"
|
|
|
|
parse_for(line, root, value)
|
2008-10-15 02:10:41 -04:00
|
|
|
elsif directive == "else"
|
|
|
|
parse_else(parent, line, value)
|
2008-08-10 14:21:25 -04:00
|
|
|
elsif directive == "while"
|
2008-12-28 16:36:10 -05:00
|
|
|
raise SyntaxError.new("Invalid while directive '@while': expected expression.") unless value
|
2008-12-25 17:43:07 -05:00
|
|
|
Tree::WhileNode.new(parse_script(value, :offset => offset), @options)
|
2008-10-13 12:49:35 -04:00
|
|
|
elsif directive == "if"
|
2008-12-28 16:36:10 -05:00
|
|
|
raise SyntaxError.new("Invalid if directive '@if': expected expression.") unless value
|
2008-12-25 17:43:07 -05:00
|
|
|
Tree::IfNode.new(parse_script(value, :offset => offset), @options)
|
2008-12-24 22:33:47 -05:00
|
|
|
elsif directive == "debug"
|
2008-12-28 16:36:10 -05:00
|
|
|
raise SyntaxError.new("Invalid debug directive '@debug': expected expression.") unless value
|
2008-12-24 22:33:47 -05:00
|
|
|
raise SyntaxError.new("Illegal nesting: Nothing may be nested beneath debug directives.", @line + 1) unless line.children.empty?
|
|
|
|
offset = line.offset + line.text.index(value).to_i
|
2008-12-25 17:43:07 -05:00
|
|
|
Tree::DebugNode.new(parse_script(value, :offset => offset), @options)
|
2007-03-18 17:11:32 -04:00
|
|
|
else
|
2008-08-09 11:00:11 -04:00
|
|
|
Tree::DirectiveNode.new(line.text, @options)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-08-10 14:10:01 -04:00
|
|
|
def parse_for(line, root, text)
|
|
|
|
var, from_expr, to_name, to_expr = text.scan(/^([^\s]+)\s+from\s+(.+)\s+(to|through)\s+(.+)$/).first
|
|
|
|
|
|
|
|
if var.nil? # scan failed, try to figure out why for error message
|
|
|
|
if text !~ /^[^\s]+/
|
2008-10-12 22:03:06 -04:00
|
|
|
expected = "variable name"
|
2008-08-10 14:10:01 -04:00
|
|
|
elsif text !~ /^[^\s]+\s+from\s+.+/
|
|
|
|
expected = "'from <expr>'"
|
|
|
|
else
|
|
|
|
expected = "'to <expr>' or 'through <expr>'"
|
|
|
|
end
|
|
|
|
raise SyntaxError.new("Invalid for directive '@for #{text}': expected #{expected}.", @line)
|
|
|
|
end
|
2008-10-12 22:03:06 -04:00
|
|
|
raise SyntaxError.new("Invalid variable \"#{var}\".", @line) unless var =~ Script::VALIDATE
|
2008-08-10 14:10:01 -04:00
|
|
|
|
2008-12-09 16:27:29 -05:00
|
|
|
parsed_from = parse_script(from_expr, :offset => line.offset + line.text.index(from_expr))
|
|
|
|
parsed_to = parse_script(to_expr, :offset => line.offset + line.text.index(to_expr))
|
|
|
|
Tree::ForNode.new(var[1..-1], parsed_from, parsed_to, to_name == 'to', @options)
|
2008-08-10 14:21:25 -04:00
|
|
|
end
|
|
|
|
|
2008-10-15 02:10:41 -04:00
|
|
|
def parse_else(parent, line, text)
|
|
|
|
previous = parent.last
|
|
|
|
raise SyntaxError.new("@else must come after @if.") unless previous.is_a?(Tree::IfNode)
|
|
|
|
|
|
|
|
if text
|
|
|
|
if text !~ /^if\s+(.+)/
|
2008-12-28 16:36:10 -05:00
|
|
|
raise SyntaxError.new("Invalid else directive '@else #{text}': expected 'if <expr>'.", @line)
|
2008-10-15 02:10:41 -04:00
|
|
|
end
|
2008-12-09 16:27:29 -05:00
|
|
|
expr = parse_script($1, :offset => line.offset + line.text.index($1))
|
2008-10-15 02:10:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
node = Tree::IfNode.new(expr, @options)
|
|
|
|
append_children(node, line.children, false)
|
|
|
|
previous.add_else node
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2008-09-30 01:43:05 -04:00
|
|
|
# parses out the arguments between the commas and cleans up the mixin arguments
|
|
|
|
# returns nil if it fails to parse, otherwise an array.
|
|
|
|
def parse_mixin_arguments(arg_string)
|
2008-10-03 03:24:05 -04:00
|
|
|
arg_string = arg_string.strip
|
|
|
|
return [] if arg_string.empty?
|
|
|
|
return nil unless (arg_string[0] == ?( && arg_string[-1] == ?))
|
|
|
|
arg_string = arg_string[1...-1]
|
2008-09-30 01:43:05 -04:00
|
|
|
arg_string.split(",", -1).map {|a| a.strip}
|
|
|
|
end
|
|
|
|
|
2008-04-09 05:21:49 -04:00
|
|
|
def parse_mixin_definition(line)
|
2008-09-30 01:43:05 -04:00
|
|
|
name, arg_string = line.text.scan(/^=\s*([^(]+)(.*)$/).first
|
2008-10-03 03:24:05 -04:00
|
|
|
args = parse_mixin_arguments(arg_string)
|
|
|
|
raise SyntaxError.new("Invalid mixin \"#{line.text[1..-1]}\".", @line) if name.nil? || args.nil?
|
2008-08-10 16:14:10 -04:00
|
|
|
default_arg_found = false
|
|
|
|
required_arg_count = 0
|
2008-10-03 03:24:05 -04:00
|
|
|
args.map! do |arg|
|
2008-08-08 21:20:14 -04:00
|
|
|
raise SyntaxError.new("Mixin arguments can't be empty.", @line) if arg.empty? || arg == "!"
|
2008-10-12 22:03:06 -04:00
|
|
|
unless arg[0] == Script::VARIABLE_CHAR
|
2008-08-08 21:20:14 -04:00
|
|
|
raise SyntaxError.new("Mixin argument \"#{arg}\" must begin with an exclamation point (!).", @line)
|
|
|
|
end
|
2008-08-10 16:14:10 -04:00
|
|
|
arg, default = arg.split(/\s*=\s*/, 2)
|
|
|
|
required_arg_count += 1 unless default
|
|
|
|
default_arg_found ||= default
|
2008-10-12 22:03:06 -04:00
|
|
|
raise SyntaxError.new("Invalid variable \"#{arg}\".", @line) unless arg =~ Script::VALIDATE
|
2008-08-10 16:14:10 -04:00
|
|
|
raise SyntaxError.new("Required arguments must not follow optional arguments \"#{arg}\".", @line) if default_arg_found && !default
|
2008-12-09 16:27:29 -05:00
|
|
|
default = parse_script(default, :offset => line.offset + line.text.index(default)) if default
|
2008-08-10 16:14:10 -04:00
|
|
|
{ :name => arg[1..-1], :default_value => default }
|
2008-08-08 21:20:14 -04:00
|
|
|
end
|
2008-10-15 23:00:28 -04:00
|
|
|
Tree::MixinDefNode.new(name, args, @options)
|
2008-04-09 05:21:49 -04:00
|
|
|
end
|
|
|
|
|
2008-08-08 21:20:14 -04:00
|
|
|
def parse_mixin_include(line, root)
|
2008-09-30 01:43:05 -04:00
|
|
|
name, arg_string = line.text.scan(/^\+\s*([^(]+)(.*)$/).first
|
|
|
|
args = parse_mixin_arguments(arg_string)
|
2008-08-09 11:00:11 -04:00
|
|
|
raise SyntaxError.new("Illegal nesting: Nothing may be nested beneath mixin directives.", @line + 1) unless line.children.empty?
|
2008-09-30 01:43:05 -04:00
|
|
|
raise SyntaxError.new("Invalid mixin include \"#{line.text}\".", @line) if name.nil? || args.nil?
|
2008-08-08 21:20:14 -04:00
|
|
|
args.each {|a| raise SyntaxError.new("Mixin arguments can't be empty.", @line) if a.empty?}
|
|
|
|
|
2008-12-09 16:27:29 -05:00
|
|
|
Tree::MixinNode.new(name, args.map {|s| parse_script(s, :offset => line.offset + line.text.index(s))}, @options)
|
2008-08-08 23:00:48 -04:00
|
|
|
end
|
|
|
|
|
2008-12-09 16:27:29 -05:00
|
|
|
def parse_script(script, options = {})
|
|
|
|
line = options[:line] || @line
|
|
|
|
offset = options[:offset] || 0
|
2008-12-10 04:05:30 -05:00
|
|
|
Script.parse(script, line, offset, @options[:filename])
|
2008-12-09 12:28:48 -05:00
|
|
|
end
|
2008-12-10 04:05:30 -05:00
|
|
|
|
2008-08-02 13:07:53 -04:00
|
|
|
def import_paths
|
|
|
|
paths = @options[:load_paths] || []
|
|
|
|
paths.unshift(File.dirname(@options[:filename])) if @options[:filename]
|
|
|
|
paths
|
|
|
|
end
|
|
|
|
|
2007-03-18 17:11:32 -04:00
|
|
|
def import(files)
|
2008-10-15 23:36:39 -04:00
|
|
|
files.split(/,\s*/).map do |filename|
|
2007-03-18 17:11:32 -04:00
|
|
|
engine = nil
|
2007-09-01 21:48:25 -04:00
|
|
|
|
|
|
|
begin
|
2008-08-02 13:07:53 -04:00
|
|
|
filename = self.class.find_file_to_import(filename, import_paths)
|
2007-09-01 21:48:25 -04:00
|
|
|
rescue Exception => e
|
|
|
|
raise SyntaxError.new(e.message, @line)
|
|
|
|
end
|
|
|
|
|
2008-10-15 23:36:39 -04:00
|
|
|
next Tree::DirectiveNode.new("@import url(#{filename})", @options) if filename =~ /\.css$/
|
2007-03-18 17:11:32 -04:00
|
|
|
|
2008-10-15 23:36:39 -04:00
|
|
|
File.open(filename) do |file|
|
|
|
|
new_options = @options.dup
|
|
|
|
new_options[:filename] = filename
|
|
|
|
engine = Sass::Engine.new(file.read, new_options)
|
2007-03-25 00:34:55 -04:00
|
|
|
end
|
2007-03-18 17:11:32 -04:00
|
|
|
|
2008-10-15 23:36:39 -04:00
|
|
|
begin
|
|
|
|
root = engine.render_to_tree
|
|
|
|
rescue Sass::SyntaxError => err
|
|
|
|
err.add_backtrace_entry(filename)
|
|
|
|
raise err
|
|
|
|
end
|
|
|
|
Tree::FileNode.new(filename, root.children, @options)
|
|
|
|
end.flatten
|
2007-03-18 17:11:32 -04:00
|
|
|
end
|
|
|
|
|
2007-09-01 21:48:25 -04:00
|
|
|
def self.find_file_to_import(filename, load_paths)
|
2007-03-25 04:20:33 -04:00
|
|
|
was_sass = false
|
|
|
|
original_filename = filename
|
2007-03-18 17:11:32 -04:00
|
|
|
|
2007-03-25 04:20:33 -04:00
|
|
|
if filename[-5..-1] == ".sass"
|
|
|
|
filename = filename[0...-5]
|
|
|
|
was_sass = true
|
|
|
|
elsif filename[-4..-1] == ".css"
|
|
|
|
return filename
|
|
|
|
end
|
2007-03-18 17:11:32 -04:00
|
|
|
|
2007-09-01 21:48:25 -04:00
|
|
|
new_filename = find_full_path("#{filename}.sass", load_paths)
|
2007-03-18 17:11:32 -04:00
|
|
|
|
2008-10-15 23:20:31 -04:00
|
|
|
return new_filename if new_filename
|
|
|
|
return filename + '.css' unless was_sass
|
|
|
|
raise SyntaxError.new("File to import not found or unreadable: #{original_filename}.", @line)
|
2007-03-18 17:11:32 -04:00
|
|
|
end
|
2007-08-28 01:33:57 -04:00
|
|
|
|
2007-09-01 21:48:25 -04:00
|
|
|
def self.find_full_path(filename, load_paths)
|
2008-10-02 14:34:22 -04:00
|
|
|
segments = filename.split(File::SEPARATOR)
|
|
|
|
segments.push "_#{segments.pop}"
|
|
|
|
partial_name = segments.join(File::SEPARATOR)
|
2007-09-01 21:48:25 -04:00
|
|
|
load_paths.each do |path|
|
2008-10-02 14:34:22 -04:00
|
|
|
[partial_name, filename].each do |name|
|
2007-08-28 01:33:57 -04:00
|
|
|
full_path = File.join(path, name)
|
|
|
|
if File.readable?(full_path)
|
|
|
|
return full_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
nil
|
|
|
|
end
|
2006-11-28 14:43:58 -05:00
|
|
|
end
|
|
|
|
end
|