aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2007-10-20 15:04:09 +0100
committerRalph Amissah <ralph@amissah.com>2007-10-20 15:04:09 +0100
commitf21af4b58d3b4e17dba1f907c99506472f1f4161 (patch)
treeb04d4469390ea906b0506d025067de26f4f76418
parentdal todo with path to shared source; shared xml cosmetic (diff)
dal, available shared output shortcut, adjustment needed for footnote/endnote
-rw-r--r--lib/sisu/v0/dal.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/sisu/v0/dal.rb b/lib/sisu/v0/dal.rb
index 5b21b33d..a9b319f1 100644
--- a/lib/sisu/v0/dal.rb
+++ b/lib/sisu/v0/dal.rb
@@ -401,12 +401,16 @@ module SiSU_DAL
end
if describe
tuned_file_tmp << if @u.remote #to double space <:br> at beginning of entry
- "&nbsp;&nbsp;&nbsp;&nbsp; { #{describe} }#{@u.remote}/#{url_dir}/#{o_f} "
+ if describe =~/^~\^ /
+ "&nbsp;&nbsp;&nbsp;&nbsp; {#{describe} }#{@u.remote}/#{url_dir}/#{o_f} "
+ else
+ "&nbsp;&nbsp;&nbsp;&nbsp; { #{describe} }#{@u.remote}/#{url_dir}/#{o_f} "
+ end
else
if describe =~/^~\^ /
- "&nbsp;&nbsp;&nbsp;&nbsp; {#{describe} }../#{url_dir}/#{o_f} "
- else "&nbsp;&nbsp;&nbsp;&nbsp; { #{describe} }../#{url_dir}/#{o_f} "
- end
+ "&nbsp;&nbsp;&nbsp;&nbsp; {#{describe} }../#{url_dir}/#{o_f} "
+ else "&nbsp;&nbsp;&nbsp;&nbsp; { #{describe} }../#{url_dir}/#{o_f} "
+ end
end
end
end