This file is indexed.

/usr/share/tdiary/contrib/plugin/steam.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
# -*- coding: utf-8 -*-
# steam.rb $Revision: 1.0 $
#
# 概要:
# steam(store.steampowered.com)のゲームのウィジェットを
# 貼るプラグインです。
#
# 使い方:
# steamの任意のゲームのID(store.steampowered.com/app/{id})
# を指定することにより、ウィジェットが貼り付けられます。
#
# Copyright (c) 2016 kp <kp@mmho.net>
# Distributed under the GPL
#

=begin ChangeLog
=end

def steam( id )
   %Q[<iframe src="//store.steampowered.com/widget/#{id}/" frameborder="0" width="646" height="190" style="max-width:100%;"></iframe>]
end