aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sisu/v4/concordance.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sisu/v4/concordance.rb')
-rw-r--r--lib/sisu/v4/concordance.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sisu/v4/concordance.rb b/lib/sisu/v4/concordance.rb
index f93fbd6a..8c122706 100644
--- a/lib/sisu/v4/concordance.rb
+++ b/lib/sisu/v4/concordance.rb
@@ -8,7 +8,7 @@
* Author: Ralph Amissah
* Copyright: (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
- 2007, 2008, 2009, 2010, 2011, 2012 Ralph Amissah, All Rights Reserved.
+ 2007, 2008, 2009, 2010, 2011, 2012, 2013 Ralph Amissah, All Rights Reserved.
* License: GPL 3 or later:
@@ -118,20 +118,20 @@ module SiSU_Concordance
@doc_details =<<WOK
<table summary="links to text related to this rudimentary index" width="96%" border="0" bgcolor="white" cellpadding="0" align="center"><tr><td width="2%" align="right">&nbsp;</td><td width="94%" valign="top" align="justify"><h1 class="small"><a href="#{@md.file.base_filename.html_segtoc}"><b>#{@md.title.full}</b></a></h1><p class="bold">#{@md.author}</p></td></tr></table>
WOK
+ @make=SiSU_Env::ProcessingSettings.new(@md)
end
def create
head_banner=SiSU_HTML_Format::HeadToc.new(@md)
minitoc=SiSU_HTML_MiniToc::TocMini.new(@md,@data).songsheet.join("\n")
stylesheet=SiSU_Style::CSS_HeadInfo.new(@md).stylesheet
- make=SiSU_Env::ProcessingSettings.new(@md)
- if make.build.manifest_minitoc?
+ if @make.build.manifest_minitoc?
toc='<div class="toc">' + minitoc + '</div>'
div_class='content'
else
toc=''
div_class='content0'
end
- top_band=if make.build.html_top_band?
+ top_band=if @make.build.html_top_band?
head_banner.concordance_navigation_band
else ''
end