/usr/share/tdiary/misc/plugin/src.rb is in tdiary-plugin 3.1.3-3.
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 | # -*- coding: utf-8 -*-
# src.rb
#
# src: 外部ファイルを挿入する(HTMLエスケープ付き)
# パラメタ:
# file: ファイル名
#
# Copyright (c) 2005 TADA Tadashi <sho@spc.gr.jp>
# You can distribute this file under the GPL2.
#
def src( file )
h( File::readlines( file ).join )
end
#
# src_inline: テキストを挿入する(HTMLエスケープ付き)
#
# パラメタ: テキスト文字列
#
def src_inline( str )
h( str )
end
# Local Variables:
# mode: ruby
# indent-tabs-mode: t
# tab-width: 3
# ruby-indent-level: 3
# End:
|