From 90e27c85d9054799e071cb6f601c8dbc3236272d Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Fri, 14 Jul 2017 07:04:18 -0400 Subject: html, minitoc, default off * default where no instruction given changed to false (requested, as minitoc is sub-optimal for viewing with smaller devices (when present minitoc is placed on left part of screen together with content to its right)) --- lib/sisu/hub_options.rb | 8 ++++---- lib/sisu/se_processing.rb | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'lib') diff --git a/lib/sisu/hub_options.rb b/lib/sisu/hub_options.rb index e0832553..fe371bd1 100644 --- a/lib/sisu/hub_options.rb +++ b/lib/sisu/hub_options.rb @@ -871,13 +871,13 @@ module SiSU_Commandline else { bool: true, set: :na } end act[:minitoc]=if select_arr.inspect \ - =~/"--inc-minitoc"/ + =~/"--minitoc"|"--inc-minitoc"/ { bool: true, set: :on } elsif select_arr.inspect \ =~/"--(?:exc|no)-minitoc"/ \ || act[:switch][:off].inspect =~/"minitoc"/ { bool: false, set: :off } - else { bool: true, set: :na } + else { bool: false, set: :na } end act[:links_to_manifest]=if select_arr.inspect \ =~/"--inc-links-to-manifest"|"--inc-manifest-links"/ @@ -902,7 +902,7 @@ module SiSU_Commandline =~/"--(?:exc|no)-manifest-minitoc"|"--(?:exc|no)-minitoc"/ \ || act[:switch][:off].inspect =~/"manifest_minitoc"|"minitoc"/ { bool: false, set: :off } - else { bool: true, set: :na } + else { bool: false, set: :na } end act[:metadata]=if select_arr.inspect \ =~/"--inc-metadata"/ @@ -920,7 +920,7 @@ module SiSU_Commandline =~/"--(?:exc|no)-html-minitoc"|"--(?:exc|no)-minitoc"/ \ || act[:switch][:off].inspect =~/"html_minitoc"|"minitoc"/ { bool: false, set: :off } - else { bool: true, set: :na } + else { bool: false, set: :na } end act[:html_navigation]=if select_arr.inspect \ =~/"--inc-html-navigation"|"--inc-navigation"/ diff --git a/lib/sisu/se_processing.rb b/lib/sisu/se_processing.rb index eba98ed0..5aa2d45a 100644 --- a/lib/sisu/se_processing.rb +++ b/lib/sisu/se_processing.rb @@ -210,7 +210,7 @@ module SiSU_Processing_Settings elsif env_rc.build.minitoc? ==:off false else - true + false end end def manifest_minitoc? @@ -233,7 +233,7 @@ module SiSU_Processing_Settings elsif minitoc? == false false else - true + false end end def html_minitoc? @@ -256,7 +256,7 @@ module SiSU_Processing_Settings elsif minitoc? == false false else - true + false end end def html_top_band? -- cgit v1.2.3