| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- module Docs
- class Http < Mdn
- include MultipleBaseUrls
- self.name = 'HTTP'
- self.base_urls = ['https://developer.mozilla.org/en-US/docs/Web/HTTP', 'https://tools.ietf.org/html/']
- html_filters.push 'http/clean_html', 'http/entries', 'title'
- options[:root_title] = 'HTTP'
- options[:title] = ->(filter) {
- filter.current_url.host == 'tools.ietf.org' ? false : filter.default_title
- }
- options[:container] = ->(filter) {
- filter.current_url.host == 'tools.ietf.org' ? '.content' : nil
- }
- options[:skip_links] = ->(filter) {
- filter.current_url.host == 'tools.ietf.org' ? true : false
- }
- options[:attribution] = ->(filter) {
- if filter.current_url.host == 'tools.ietf.org'
- "© document authors. All rights reserved."
- else
- Docs::Mdn.options[:attribution]
- end
- }
- def initial_urls
- %w(https://developer.mozilla.org/en-US/docs/Web/HTTP
- https://tools.ietf.org/html/rfc2616
- https://tools.ietf.org/html/rfc4918
- https://tools.ietf.org/html/rfc7230
- https://tools.ietf.org/html/rfc7231
- https://tools.ietf.org/html/rfc7232
- https://tools.ietf.org/html/rfc7233
- https://tools.ietf.org/html/rfc7234
- https://tools.ietf.org/html/rfc7235)
- end
- end
- end
|