/usr/share/tdiary/contrib/plugin/slideshow.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 | #
# slideshow.rb : tDiary plugin for show slides
#
# Copyright (C) 2016 TADA Tadashi
# Distributed under the GPL2 or any later version.
#
# @options['slideshow.css'] = "URL of CSS"
#
enable_js('slideshow.js')
def slideshow
%Q|<button class="slideshow">Start Slideshow >></button>|
end
if @conf['slideshow.css']
add_header_proc do
%Q[<link rel="stylesheet" href="#{h @conf['slideshow.css']}" media="screen">]
end
end
|