File tree Expand file tree Collapse file tree
assets/javascripts/templates/pages Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ credits = [
303303 ' https://raw.githubusercontent.com/falconry/falcon/master/LICENSE'
304304 ], [
305305 ' Fish' ,
306- ' 2005-2009 Axel Liljencrantz' ,
306+ ' 2005-2009 Axel Liljencrantz, 2009-2020 fish-shell contributors ' ,
307307 ' GPLv2' ,
308308 ' https://fishshell.com/docs/current/license.html'
309309 ], [
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ class EntriesSphinxFilter < Docs::EntriesFilter
44 def get_name
55 if slug == 'faq'
66 'FAQ'
7+ elsif slug == 'fish_for_bash_users'
8+ 'Fish for Bash Users'
79 elsif slug . starts_with? ( 'cmds/' )
810 slug . split ( '/' ) . last
911 else
@@ -12,9 +14,9 @@ def get_name
1214 end
1315
1416 def get_type
15- if root_page? || slug == 'faq'
17+ if root_page? || slug == 'faq' || slug == 'completions' || slug == 'fish_for_bash_users'
1618 'Manual'
17- elsif slug . starts_with? ( 'cmds' )
19+ elsif slug . starts_with? ( 'cmds' ) || slug == 'commands'
1820 'Commands'
1921 elsif slug == 'tutorial'
2022 'Tutorial'
Original file line number Diff line number Diff line change @@ -12,10 +12,18 @@ class Fish < UrlScraper
1212
1313 # https://fishshell.com/docs/current/license.html
1414 options [ :attribution ] = <<-HTML
15- © 2019 fish-shell developers< br >
15+ © 2020 fish-shell developers< br >
1616 Licensed under the GNU General Public License, version 2.
1717 HTML
1818
19+ version '3.2' do
20+ self . release = '3.2.0'
21+ self . base_url = "https://fishshell.com/docs/#{ version } /"
22+
23+ options [ :skip ] . concat %w( genindex.html relnotes.html )
24+ html_filters . push 'sphinx/clean_html' , 'fish/clean_html_sphinx' , 'fish/entries_sphinx'
25+ end
26+
1927 version '3.1' do
2028 self . release = '3.1.2'
2129 self . base_url = "https://fishshell.com/docs/#{ version } /"
You can’t perform that action at this time.
0 commit comments