2014-02-03 05:59:01 -05:00
|
|
|
require 'yaml'
|
|
|
|
|
2009-02-03 20:44:58 -05:00
|
|
|
module RailsGuides
|
|
|
|
module Helpers
|
|
|
|
def guide(name, url, options = {}, &block)
|
|
|
|
link = content_tag(:a, :href => url) { name }
|
|
|
|
result = content_tag(:dt, link)
|
|
|
|
|
2010-11-19 15:42:18 -05:00
|
|
|
if options[:work_in_progress]
|
|
|
|
result << content_tag(:dd, 'Work in progress', :class => 'work-in-progress')
|
2009-02-03 20:44:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
result << content_tag(:dd, capture(&block))
|
2010-03-30 17:02:05 -04:00
|
|
|
result
|
2009-02-03 20:44:58 -05:00
|
|
|
end
|
2011-12-31 12:25:25 -05:00
|
|
|
|
2011-12-24 20:26:18 -05:00
|
|
|
def documents_by_section
|
2015-07-05 01:12:48 -04:00
|
|
|
@documents_by_section ||= YAML.load_file(File.expand_path("../../source/#{@lang ? @lang + '/' : ''}documents.yaml", __FILE__))
|
2011-12-24 20:26:18 -05:00
|
|
|
end
|
2011-12-31 12:25:25 -05:00
|
|
|
|
2011-12-24 20:26:18 -05:00
|
|
|
def documents_flat
|
2013-08-03 15:35:52 -04:00
|
|
|
documents_by_section.flat_map {|section| section['documents']}
|
2011-12-24 20:26:18 -05:00
|
|
|
end
|
2009-02-03 20:44:58 -05:00
|
|
|
|
2011-12-31 12:25:25 -05:00
|
|
|
def finished_documents(documents)
|
|
|
|
documents.reject { |document| document['work_in_progress'] }
|
|
|
|
end
|
|
|
|
|
2012-05-26 00:28:24 -04:00
|
|
|
def docs_for_menu(position=nil)
|
|
|
|
if position.nil?
|
|
|
|
documents_by_section
|
|
|
|
elsif position == 'L'
|
|
|
|
documents_by_section.to(3)
|
|
|
|
else
|
|
|
|
documents_by_section.from(4)
|
|
|
|
end
|
2011-12-31 12:25:25 -05:00
|
|
|
end
|
|
|
|
|
2009-02-03 20:44:58 -05:00
|
|
|
def author(name, nick, image = 'credits_pic_blank.gif', &block)
|
|
|
|
image = "images/#{image}"
|
|
|
|
|
2013-10-27 15:14:41 -04:00
|
|
|
result = tag(:img, :src => image, :class => 'left pic', :alt => name, :width => 91, :height => 91)
|
2009-02-03 20:44:58 -05:00
|
|
|
result << content_tag(:h3, name)
|
|
|
|
result << content_tag(:p, capture(&block))
|
2010-03-30 17:02:05 -04:00
|
|
|
content_tag(:div, result, :class => 'clearfix', :id => nick)
|
2009-02-03 20:44:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def code(&block)
|
|
|
|
c = capture(&block)
|
|
|
|
content_tag(:code, c)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|