mirror of https://github.com/freeCodeCamp/devdocs
parent
0fc2aacb83
commit
9d47e02cf1
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 65 KiB |
@ -0,0 +1,6 @@
|
|||||||
|
#= require views/pages/base
|
||||||
|
|
||||||
|
class app.views.BowerPage extends app.views.BasePage
|
||||||
|
afterRender: ->
|
||||||
|
@highlightCode @findAll('pre[data-lang="js"], pre[data-lang="json"]'), 'javascript'
|
||||||
|
return
|
@ -0,0 +1,7 @@
|
|||||||
|
._bower {
|
||||||
|
h2 { @extend %block-heading; }
|
||||||
|
h3 { @extend %block-label, %label-blue; }
|
||||||
|
h4 { @extend %block-label; }
|
||||||
|
|
||||||
|
code { @extend %label; }
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
module Docs
|
||||||
|
class Bower
|
||||||
|
class CleanHtmlFilter < Filter
|
||||||
|
def call
|
||||||
|
title = at_css('.page-title')
|
||||||
|
@doc = at_css('.main')
|
||||||
|
doc.child.before(title)
|
||||||
|
|
||||||
|
css('.site-footer').remove
|
||||||
|
|
||||||
|
css('.highlight').each do |node|
|
||||||
|
node.name = 'pre'
|
||||||
|
node['data-lang'] = node.at_css('[data-lang]')['data-lang']
|
||||||
|
node.content = node.content
|
||||||
|
end
|
||||||
|
|
||||||
|
doc
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,26 @@
|
|||||||
|
module Docs
|
||||||
|
class Bower
|
||||||
|
class EntriesFilter < Docs::EntriesFilter
|
||||||
|
ENTRIES_TYPE_BY_SLUG = {
|
||||||
|
'api' => 'Commands',
|
||||||
|
'config' => '.bowerrc'
|
||||||
|
}
|
||||||
|
|
||||||
|
def get_name
|
||||||
|
at_css('h1').content
|
||||||
|
end
|
||||||
|
|
||||||
|
def get_type
|
||||||
|
'Guides'
|
||||||
|
end
|
||||||
|
|
||||||
|
def additional_entries
|
||||||
|
return [] unless type = ENTRIES_TYPE_BY_SLUG[slug]
|
||||||
|
|
||||||
|
css('#bowerrc-specification + ul a', '#commands + p + ul a').map do |node|
|
||||||
|
[node.content, node['href'].remove('#'), type]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,19 @@
|
|||||||
|
module Docs
|
||||||
|
class Bower < UrlScraper
|
||||||
|
self.name = 'Bower'
|
||||||
|
self.type = 'bower'
|
||||||
|
self.version = '1.3.12'
|
||||||
|
self.base_url = 'http://bower.io/docs/'
|
||||||
|
self.root_path = 'api'
|
||||||
|
|
||||||
|
html_filters.push 'bower/clean_html', 'bower/entries'
|
||||||
|
|
||||||
|
options[:trailing_slash] = false
|
||||||
|
options[:skip] = %w(tools about)
|
||||||
|
|
||||||
|
options[:attribution] = <<-HTML
|
||||||
|
© 2014 Bower contributors<br>
|
||||||
|
Licensed under the Creative Commons Attribution License.
|
||||||
|
HTML
|
||||||
|
end
|
||||||
|
end
|
After Width: | Height: | Size: 738 B |
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1 @@
|
|||||||
|
http://bower.io/docs/about/#logo
|
Loading…
Reference in new issue