2010-01-23 02:16:25 +00:00
|
|
|
require 'rdiscount'
|
2010-01-21 19:54:47 +00:00
|
|
|
|
|
|
|
def stylesheets_dir(framework)
|
|
|
|
Compass::Frameworks[framework].stylesheets_directory
|
|
|
|
end
|
|
|
|
|
2010-02-07 17:14:20 +00:00
|
|
|
def tree_key(item)
|
|
|
|
"tree/"+[item[:framework], item[:stylesheet]].join("/")
|
2010-01-21 19:54:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def tree(item)
|
2010-02-07 17:14:20 +00:00
|
|
|
@site.cached(tree_key(item)) do
|
2010-01-21 19:54:47 +00:00
|
|
|
file = File.join(stylesheets_dir(item[:framework]), item[:stylesheet])
|
|
|
|
contents = File.read(file)
|
2010-04-12 09:46:33 +00:00
|
|
|
syntax = item[:stylesheet] =~ /\.scss$/ ? :scss : :sass
|
|
|
|
Sass::Engine.new(contents, :syntax => syntax).send :to_tree
|
2010-01-21 19:54:47 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def imports(item)
|
|
|
|
sass_tree = tree(item)
|
|
|
|
imports = []
|
|
|
|
sass_tree.children.each do |child|
|
|
|
|
if child.is_a?(Sass::Tree::ImportNode)
|
|
|
|
imports << child.imported_filename
|
|
|
|
end
|
|
|
|
end
|
|
|
|
imports
|
|
|
|
end
|
2010-01-22 19:40:56 +00:00
|
|
|
|
2010-02-03 16:02:27 +00:00
|
|
|
def reference_item(options)
|
2010-01-24 07:01:30 +00:00
|
|
|
stylesheet = options[:stylesheet]
|
2010-02-07 17:14:20 +00:00
|
|
|
@site.cached("reference/item/#{stylesheet}") do
|
|
|
|
path = stylesheet_path(stylesheet)
|
|
|
|
if path
|
|
|
|
@items.detect do |i|
|
2010-02-07 17:37:07 +00:00
|
|
|
i.identifier =~ /^\/reference/ &&
|
|
|
|
i[:stylesheet] == path
|
|
|
|
|
2010-02-07 17:14:20 +00:00
|
|
|
end
|
2010-01-24 07:01:30 +00:00
|
|
|
end
|
2010-02-03 16:02:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-03-28 06:23:45 +00:00
|
|
|
def departialize(path)
|
|
|
|
path.gsub(%r{(\b|/)_}){|m| m.size > 1 ? "/" : ""}
|
|
|
|
end
|
|
|
|
|
2010-02-03 16:02:27 +00:00
|
|
|
def reference_path(options)
|
|
|
|
if item = reference_item(options)
|
|
|
|
rep = item.reps.find { |r| r.name == :default }
|
|
|
|
rep.path
|
2010-01-24 07:01:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def import_paths
|
2010-01-28 08:37:17 +00:00
|
|
|
paths = Compass::Frameworks::ALL.inject([]) {|m, f| m << f.stylesheets_directory}
|
|
|
|
paths.map!{|p|[p, '']}
|
|
|
|
if @item[:stylesheet]
|
|
|
|
paths << [File.join(Compass::Frameworks[@item[:framework]].stylesheets_directory,
|
|
|
|
File.dirname(@item[:stylesheet])), File.dirname(@item[:stylesheet])]
|
|
|
|
end
|
|
|
|
paths
|
2010-01-24 07:01:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def stylesheet_path(ss)
|
2010-02-07 17:14:20 +00:00
|
|
|
@site.cached("stylesheet/path/#{ss}") do
|
|
|
|
possible_filenames_for_stylesheet(ss).each do |filename|
|
|
|
|
import_paths.each do |import_path|
|
|
|
|
full_path = File.join(import_path.first, filename)
|
|
|
|
if File.exist?(full_path)
|
|
|
|
return "#{import_path.last}#{"/" if import_path.last && import_path.last.length > 0}#{filename}"
|
|
|
|
end
|
2010-01-24 07:01:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def possible_filenames_for_stylesheet(ss)
|
|
|
|
ext = File.extname(ss)
|
|
|
|
path = File.dirname(ss)
|
2010-01-25 00:02:53 +00:00
|
|
|
path = path == "." ? "" : "#{path}/"
|
2010-01-24 07:01:30 +00:00
|
|
|
base = File.basename(ss)[0..-(ext.size+1)]
|
|
|
|
extensions = if ext.size > 0
|
|
|
|
[ext]
|
|
|
|
else
|
|
|
|
[".sass", ".scss"]
|
|
|
|
end
|
|
|
|
basenames = [base, "_#{base}"]
|
|
|
|
filenames = []
|
|
|
|
basenames.each do |basename|
|
|
|
|
extensions.each do |extension|
|
2010-01-25 00:02:53 +00:00
|
|
|
filenames << "#{path}#{basename}#{extension}"
|
2010-01-24 07:01:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
filenames
|
|
|
|
end
|
|
|
|
|
2010-01-22 19:40:56 +00:00
|
|
|
def mixins(item)
|
|
|
|
sass_tree = tree(item)
|
|
|
|
mixins = []
|
|
|
|
comment = nil
|
|
|
|
sass_tree.children.each do |child|
|
|
|
|
if child.is_a?(Sass::Tree::MixinDefNode)
|
2010-03-16 23:39:56 +00:00
|
|
|
child.comment = comment && Sass::Tree::CommentNode.clean(comment)
|
2010-01-22 19:40:56 +00:00
|
|
|
comment = nil
|
|
|
|
mixins << child
|
|
|
|
elsif child.is_a?(Sass::Tree::CommentNode)
|
|
|
|
comment ||= ""
|
|
|
|
comment << "\n" unless comment.empty?
|
|
|
|
comment << child.docstring
|
|
|
|
else
|
|
|
|
comment = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
mixins
|
|
|
|
end
|
|
|
|
|
2010-01-24 03:47:28 +00:00
|
|
|
def constants(item)
|
|
|
|
sass_tree = tree(item)
|
|
|
|
constants = []
|
|
|
|
comment = nil
|
|
|
|
sass_tree.children.each do |child|
|
|
|
|
if child.is_a?(Sass::Tree::VariableNode)
|
2010-03-29 06:09:03 +00:00
|
|
|
child.comment = comment && Sass::Tree::CommentNode.clean(comment)
|
2010-01-24 03:47:28 +00:00
|
|
|
comment = nil
|
|
|
|
constants << child
|
|
|
|
elsif child.is_a?(Sass::Tree::CommentNode)
|
|
|
|
comment ||= ""
|
|
|
|
comment << "\n" unless comment.empty?
|
|
|
|
comment << child.docstring
|
|
|
|
else
|
|
|
|
comment = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
constants
|
|
|
|
end
|
|
|
|
|
2010-03-29 06:06:56 +00:00
|
|
|
def mixin_signature(mixin, format = :html)
|
|
|
|
mixin.sass_signature(:include, format)
|
2010-01-22 19:40:56 +00:00
|
|
|
end
|
|
|
|
|
2010-01-30 23:50:25 +00:00
|
|
|
def example_items
|
2010-02-07 17:14:20 +00:00
|
|
|
@site.cached("examples") do
|
2010-02-07 17:37:07 +00:00
|
|
|
@items.select do |i|
|
|
|
|
i.identifier =~ /^\/examples/ && i[:example]
|
|
|
|
end
|
2010-02-07 17:14:20 +00:00
|
|
|
end
|
2010-01-30 23:50:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def examples_for_item(item)
|
2010-02-07 17:14:20 +00:00
|
|
|
@site.cached("examples/#{item.identifier}") do
|
|
|
|
example_items.select do |i|
|
|
|
|
i[:framework] == item[:framework] &&
|
|
|
|
i[:stylesheet] == item[:stylesheet]
|
|
|
|
end
|
2010-01-30 23:50:25 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-01-31 00:20:03 +00:00
|
|
|
def examples(item, mixin = nil)
|
|
|
|
examples = examples_for_item(item)
|
|
|
|
if mixin
|
|
|
|
examples = examples.select {|i| i[:mixin] == mixin.name }
|
|
|
|
else
|
|
|
|
examples = examples.reject {|i| i[:mixin] }
|
|
|
|
end
|
|
|
|
examples.map{|i| i.reps.find{|r| r.name == :default}}
|
2010-01-27 06:08:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2010-01-24 03:47:28 +00:00
|
|
|
def mixin_source_dialog(mixin, &block)
|
|
|
|
vars = {
|
|
|
|
:html => {
|
|
|
|
:id => "mixin-source-#{mixin.name}",
|
|
|
|
:class => "mixin",
|
|
|
|
:title => "Source for +#{mixin.name}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
render 'dialog', vars, &block
|
|
|
|
end
|
|
|
|
|
2010-01-23 02:16:25 +00:00
|
|
|
def format_doc(docstring)
|
2010-01-25 00:02:53 +00:00
|
|
|
if docstring
|
|
|
|
RDiscount.new(docstring).to_html
|
|
|
|
end
|
2010-01-23 02:16:25 +00:00
|
|
|
end
|
|
|
|
|