This file is indexed.

/usr/share/tdiary/contrib/plugin/retweet.rb is in tdiary-contrib 3.2.2-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
#
# retweet.rb - show retweet count in each section
#   This plugin uses a Topsy Retweet Button for Web Sites powered by Topsy.com
#
# Copyright (C) 2010, MATSUOKA Kohei <http://www.machu.jp/diary/>
# You can redistribute it and/or modify it under GPL2.
#

#
# settings for Topsy Retweet Button.
# see: http://labs.topsy.com/button/retweet-button/#global_settings
#
# your Twitter username
@topsy_nick = "your_twitter_account"
# retweet button color
#@topsy_theme = "blue"
# retweet button text
#@topsy_retweet_text = "retweet"

unless defined?(permalink)
  def permalink( date, index, escape = true )
    ymd = date.strftime( "%Y%m%d" )
    uri = @conf.index.dup
    uri.sub!( %r|\A(?!https?://)|i, @conf.base_url )
    uri.gsub!( %r|/\.(?=/)|, "" ) # /././ -> /
    link = uri + anchor( "#{ymd}p%02d" % index )
    link.sub!( "#", "%23" ) if escape
    link
  end
end

unless defined?(subtitle)
  def subtitle( date, index, escape = true )
    diary = @diaries[date.strftime( "%Y%m%d" )]
    return "" unless diary
    sn = 1
    diary.each_section do |section|
      if sn == index
        old_apply_plugin = @options["apply_plugin"]
        @options["apply_plugin"] = true
        title = apply_plugin( section.subtitle_to_html, true )
        @options["apply_plugin"] = old_apply_plugin
        title.gsub!( /(?=")/, "\\" ) if escape
        return title
      end
      sn += 1
    end
  end
end

# load Tospy's script and initialize
add_header_proc do
  r = ""
  r << %Q|<script type="text/javascript" src="http://cdn.topsy.com/topsy.js?init=topsyWidgetCreator"></script>\n|
  return r unless @topsy_theme or @topsy_nick or @topsy_retweet_text
  r << %Q|<script type="text/javascript" id="topsy_global_settings"><!--\n|
  r << %Q|  var topsy_theme = "#{@topsy_theme}";\n| if @topsy_theme
  r << %Q|  var topsy_nick = "#{@topsy_nick}";\n| if @topsy_nick
  r << %Q|  var topsy_retweet_text = "#{@topsy_retweet_text}";\n| if @topsy_retweet_text
  r << %Q|//--></script>\n|
end

# show retweet button in top of section
add_section_enter_proc do |date, index|
  <<-"EOS"
  <div class="topsy_widget_data" style="float: right; margin-left: 1em;"><!-- {
    "url": "#{permalink(date, index)}",
    "title": "#{subtitle(date, index)}",
    "style": "big"
  } --></div>
  EOS
end

# show retweet button in end of section
add_section_leave_proc do |date, index|
  <<-"EOS"
  <div class="tags">
    <img src="http://www.machu.jp/diary/twitter_logo_small.png" height="16" width="62" alt="Twitter">:
    <div class="topsy_widget_data" style="float: right; margin-left: 1em;"><!-- {
      "url": "#{permalink(date, index)}",
      "title": "#{subtitle(date, index)}",
      "style": "small"
    } --></div>
  </div>
  EOS
end