Update nginx documentation (1.7.11)

pull/200/head
Thibaut 10 years ago
parent 7f34f68499
commit d1b252c4f7

@ -252,7 +252,7 @@ credits = [
'https://github.com/LearnBoost/mongoose/blob/master/README.md#license' 'https://github.com/LearnBoost/mongoose/blob/master/README.md#license'
], [ ], [
'nginx', 'nginx',
'2002-2014 Igor Sysoev<br>&copy; 2011-2014 Nginx, Inc.', '2002-2015 Igor Sysoev<br>&copy; 2011-2015 Nginx, Inc.',
'BSD', 'BSD',
'http://nginx.org/LICENSE' 'http://nginx.org/LICENSE'
], [ ], [

@ -2,4 +2,5 @@
h4 { @extend %block-heading; } h4 { @extend %block-heading; }
.note { @extend %note; } .note { @extend %note; }
.directive { margin: 2.5em 0 1em; } .directive { margin: 2.5em 0 1em; }
td > pre { margin: 0; }
} }

@ -2,8 +2,12 @@ module Docs
class Nginx < UrlScraper class Nginx < UrlScraper
self.name = 'nginx' self.name = 'nginx'
self.type = 'nginx' self.type = 'nginx'
self.version = '1.7.9' self.version = '1.7.11'
self.base_url = 'http://nginx.org/en/docs/' self.base_url = 'http://nginx.org/en/docs/'
self.links = {
home: 'http://nginx.org/',
code: 'http://hg.nginx.org/nginx'
}
html_filters.push 'nginx/clean_html', 'nginx/entries' html_filters.push 'nginx/clean_html', 'nginx/entries'
@ -17,8 +21,8 @@ module Docs
options[:skip_patterns] = [/\/faq\//] options[:skip_patterns] = [/\/faq\//]
options[:attribution] = <<-HTML options[:attribution] = <<-HTML
&copy; 2002-2014 Igor Sysoev<br> &copy; 2002-2015 Igor Sysoev<br>
&copy; 2011-2014 Nginx, Inc.<br> &copy; 2011-2015 Nginx, Inc.<br>
Licensed under the BSD License. Licensed under the BSD License.
HTML HTML
end end

Loading…
Cancel
Save