/usr/share/tdiary/contrib/plugin/bigpresen.rb is in tdiary-contrib 5.0.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | # bigpresen.rb $Revision: 1.03 $
#
# bigpresen : クリックで進行する「高橋メソッド」風巨大文字プレゼンテーションを挿入
#
# パラメタ :
# str : 本文。"|"はスライドの区切り、"/"はスライド内の改行となる。
# "|"と"|"を表示する場合には、前に"\"をつけてエスケープ。
# width : スライドの幅。ピクセルで指定。(デフォルト : 480)
# height : スライドの高さ。ピクセルで指定。(デフォルト : 320)
#
# 日記本文に、<%= bigpresen 'str','width','height' %> の形式で記述します。
# 文字のサイズは、表示テキストとスライドのサイズに合うよう自動的に調整されます。
# JavaScriptとDHTMLを用いて動かすので、閲覧環境によっては表示されないこともあります。
#
# Copyright (c) 2006 Maripo Goda
# mailto:madin@madin.jp
# Document URL http://www.madin.jp/works/plugin.html
# You can redistribute it and/or modify it under GPL2.
@bigPresenID = 0;
def bigpresen (str='', width='480',height='320')
scriptID = 'bp' + @bigPresenID.to_s
@bigPresenID += 1;
presen_ary = str.gsub("\\/",'⁄').gsub("\\|","&\#65073").split(/\|/);
presen_ary.collect!{|s|
s = '"' + s.gsub('/','<br>') + '"'
}
presen_str = presen_ary.join(',')
return <<HTML
<script type="text/javascript">
<!--
t#{scriptID} = 0;
w#{scriptID}=#{width};
h#{scriptID}="#{height}";
msg#{scriptID} = new Array(#{presen_str});
function #{scriptID} () {
if (t#{scriptID} < msg#{scriptID}.length) {
msgArr = msg#{scriptID}[t#{scriptID}].split('<br>');
maxPx = h#{scriptID} * 0.8;
for (t = 0; t < msgArr.length; t ++) {
maxPx = Math.min(maxPx, w#{scriptID} * 2 * 0.9 / countLength(msgArr[t]));
}
maxPx = Math.min(maxPx, Math.floor(h#{scriptID} * 0.8 / msgArr.length));
with (document.getElementById("#{scriptID}")) {
innerHTML = msg#{scriptID}[t#{scriptID}];
style.fontSize = maxPx+"px";
style.top = ((h#{scriptID}-(maxPx * msgArr.length)) / 2) + "px";
}
t#{scriptID} ++;
}
else {
t#{scriptID} = 0;
with (document.getElementById("#{scriptID}")) {
innerHTML = "《REPLAY》";
style.fontSize = '100%';
style.top = '50%';
}
}
}
function countLength (str)
{
len = 0;
for (i = 0; i < str.length; i++) {
len ++;
if (escape(str.charAt(i)).length > 3) {
len ++
}
}
return Math.max(len, 1);
}
-->
</script>
<noscript><p>JavaScript Required.</p></noscript>
<div class="bigpresen" style="text-align:center; position:relative; width:#{width}px; height:#{height}px; background:#fff;border:ridge 4px #ccc;" onclick="#{scriptID}()">
<span id="#{scriptID}" style="width:100%; position:absolute; top:50%; left:0; line-height:100%; color:black; font-family:'MS Pゴシック', sans-serif;">《START》</span>
</div>
HTML
end
|