forked from emberjs/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.rb
114 lines (85 loc) · 2.32 KB
/
config.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
require "redcarpet"
require "active_support/core_ext"
Dir["./lib/*"].each{|f| require f }
# Debugging
set(:logging, ENV['RACK_ENV'] != 'production')
set :markdown_engine, :redcarpet
set :markdown, :layout_engine => :erb,
:fenced_code_blocks => true,
:lax_html_blocks => true,
:renderer => Highlighter::HighlightedHTML.new
activate :directory_indexes
activate :toc
activate :highlighter
activate :api_docs,
:default_class => "Ember",
:repo_url => "https://github.com/emberjs/ember.js"
###
# Blog
###
activate :blog do |blog|
blog.prefix = "blog"
blog.layout = "blog_layout"
blog.summary_separator = %r{(<p>READMORE</p>)} # Markdown adds the <p>
end
###
# Pages
###
page "/doc*" do
@chapters = data.docs.chapters
end
data.guides.each do |guide_name, properties|
page "/guides/#{guide_name}", :proxy => "guide.html" do
@guide = guide_name
end
end
page "community.html" do
@chapters = data.community.chapters
end
# Is this used?
page "examples/*", :directory_index => false
page "index.html", :proxy => "about.html"
page "404.html", :directory_index => false
###
# Helpers
###
helpers do
# Workaround for content_for not working in nested layouts
def partial_for(key, partial_name=nil)
@partial_names ||= {}
if partial_name
@partial_names[key] = partial_name
else
@partial_names[key]
end
end
def rendered_partial_for(key)
partial_name = partial_for(key)
partial(partial_name) if partial_name
end
def link_to_page name, url
path = request.path
current = path =~ Regexp.new(url)
if path == '/index.html' and name == 'about'
current = true
end
class_name = current ? ' class="active"' : ''
"<li#{class_name}><a href=\"#{url}\">#{name}</a></li>"
end
# The default one is buggy as of beta 2
def wrap_layout(layout_name, &block)
# Save current buffer for later
@_out_buf, _buf_was = "", @_out_buf
begin
content = capture(&block) if block_given?
ensure
# Reset stored buffer
@_out_buf = _buf_was
end
layout_path = locate_layout(layout_name, current_engine)
if !@_out_buf
raise "wrap_layout is currently broken for this templating system"
end
@_out_buf.concat render_individual_file(layout_path, @current_locs || {}, @current_opts || {}, self) { content }
end
end