aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2014-12-09 19:09:11 -0500
committerRalph Amissah <ralph@amissah.com>2014-12-09 19:22:44 -0500
commit7d9281ca1cda283b24257e5fde7e269e592662a1 (patch)
treeb42ee2438b8c93e1248cdcbef577d980b5e59a11 /lib
parentc&d, cgi, search form, html ref, remove leading o ocn, bugfix (diff)
c&d: html, output by filename, filenames, fix
Diffstat (limited to 'lib')
-rw-r--r--lib/sisu/current/se_file_op.rb18
-rw-r--r--lib/sisu/develop/se_file_op.rb18
2 files changed, 10 insertions, 26 deletions
diff --git a/lib/sisu/current/se_file_op.rb b/lib/sisu/current/se_file_op.rb
index b64aef94..bccb7605 100644
--- a/lib/sisu/current/se_file_op.rb
+++ b/lib/sisu/current/se_file_op.rb
@@ -1008,19 +1008,11 @@ module SiSU_File_Op
def html_seg(fh)
fh=default_hash_build(fh,Sfx[:html])
fh[:lng]=lang_code?(fh[:lng])
- fnh=if output_dir_structure.by_filename?
- {
- fn: 'scroll',
- ft: fh[:ft],
- lng: fh[:lng],
- }
- else
- {
- fn: fh[:fn],
- ft: fh[:ft],
- lng: fh[:lng],
- }
- end
+ fnh={
+ fn: fh[:fn],
+ ft: fh[:ft],
+ lng: fh[:lng],
+ }
i18n(fnh)
end
def html_book_index(fh=nil)
diff --git a/lib/sisu/develop/se_file_op.rb b/lib/sisu/develop/se_file_op.rb
index 38b52f98..1555d119 100644
--- a/lib/sisu/develop/se_file_op.rb
+++ b/lib/sisu/develop/se_file_op.rb
@@ -1043,19 +1043,11 @@ module SiSU_File_Op
def html_seg(fh)
fh=default_hash_build(fh,Sfx[:html])
fh[:lng]=lang_code?(fh[:lng])
- fnh=if output_dir_structure.by_filename?
- {
- fn: 'scroll',
- ft: fh[:ft],
- lng: fh[:lng],
- }
- else
- {
- fn: fh[:fn],
- ft: fh[:ft],
- lng: fh[:lng],
- }
- end
+ fnh={
+ fn: fh[:fn],
+ ft: fh[:ft],
+ lng: fh[:lng],
+ }
i18n(fnh)
end
def html_book_index(fh=nil)