diff --git a/assets/javascripts/templates/pages/about_tmpl.coffee b/assets/javascripts/templates/pages/about_tmpl.coffee
index 4ae650e5..c29745f8 100644
--- a/assets/javascripts/templates/pages/about_tmpl.coffee
+++ b/assets/javascripts/templates/pages/about_tmpl.coffee
@@ -566,7 +566,7 @@ credits = [
'https://creativecommons.org/licenses/by/3.0/'
], [
'Twig',
- '2009-2016 The Twig Team',
+ '2009-2017 The Twig Team',
'BSD',
'http://twig.sensiolabs.org/license'
], [
diff --git a/lib/docs/scrapers/twig.rb b/lib/docs/scrapers/twig.rb
index 596300d3..b1e4b17f 100755
--- a/lib/docs/scrapers/twig.rb
+++ b/lib/docs/scrapers/twig.rb
@@ -1,8 +1,6 @@
module Docs
class Twig < UrlScraper
self.type = 'sphinx'
- self.release = '1.29'
- self.base_url = 'http://twig.sensiolabs.org/doc/'
self.root_path = 'index.html'
self.initial_paths = %w(extensions/index.html)
self.links = {
@@ -11,14 +9,24 @@ module Docs
}
options[:attribution] = <<-HTML
- © 2009–2016 by the Twig Team
+ © 2009–2017 by the Twig Team
Licensed under the three clause BSD license.
- The Twig logo is © 2010–2016 SensioLabs
+ The Twig logo is © 2010–2017 SensioLabs
HTML
html_filters.push 'twig/clean_html', 'twig/entries'
options[:container] = 'div.bd > div.content'
options[:skip] = %w(deprecated.html advanced_legacy.html)
+
+ version '2' do
+ self.release = '2.1.0'
+ self.base_url = 'http://twig.sensiolabs.org/doc/2.x/'
+ end
+
+ version '1' do
+ self.release = '1.31.0'
+ self.base_url = 'http://twig.sensiolabs.org/doc/1.x/'
+ end
end
end