aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2010-07-12 08:49:31 -0400
committerRalph Amissah <ralph@amissah.com>2010-07-12 08:49:31 -0400
commit88909db5a7fe112b9a3d9c60588d48f03e0a4ee5 (patch)
tree2a1078591a50f661d12c4da1997687b9ac4cbe48
parentvim syntax, in bulleted and indented text recognize bold (diff)
param, rights (all) add line breaks between copyright, license and other rights
-rw-r--r--lib/sisu/v2/param.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/sisu/v2/param.rb b/lib/sisu/v2/param.rb
index a313fa1c..89eaced3 100644
--- a/lib/sisu/v2/param.rb
+++ b/lib/sisu/v2/param.rb
@@ -433,27 +433,27 @@ module SiSU_Param
s=copyright.text + ';'
if defined? copyright.translation \
and copyright.translation
- s +=' translation ' + copyright.translation + ';'
+ s +='<br> translation ' + copyright.translation + ';'
end
if defined? copyright.illustrations \
and copyright.illustrations
- s +=' illustrations ' + copyright.illustrations + ';'
+ s +='<br> illustrations ' + copyright.illustrations + ';'
end
if defined? copyright.photographs \
and copyright.photographs
- s +=' photographs ' + copyright.photographs + ';'
+ s +='<br> photographs ' + copyright.photographs + ';'
end
if defined? copyright.digitization \
and copyright.digitization
- s +=' digitization ' + copyright.digitization + ';'
+ s +='<br> digitization ' + copyright.digitization + ';'
end
if defined? copyright.audio \
and copyright.audio
- s +=' audio ' + copyright.audio + ';'
+ s +='<br> audio ' + copyright.audio + ';'
end
if defined? copyright.license \
and copyright.license
- s +=' License: ' + copyright.license
+ s +='<br> License: ' + copyright.license
end
if s.empty?
SiSU_Screen::Ansi.new(@cmd,'WARNING Document Rights information missing; provide @rights: :copyright:').warn unless @opt.cmd =~/q/