/usr/share/tdiary/contrib/plugin/search-google-custom.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 | # -*- coding: utf-8 -*-
#
# search-google-custom.rb - site search plugin using Goole Custom Search.
#
# Copyright (C) 2011, hb <http://www.smallstyle.com>
# You can redistribute it and/or modify it under GPL.
#
# Needed these options below:
#
# @options["search-google-custom.id"] : Your Google Custome Search ID
# @options["search-google-custom.cof"] : 広告の表示場所(9:右,10:一番上と右,11:一番上と下)
# @options["search-google-custom.width"] : 検索結果のフレームの幅
# @options["search-google-custom.height"] : 検索結果のフレームの高さ
# @options["search-google-custom.search_label"] : 検索テキストボックス左のラベル
# @options["search-google-custom.button_text"] : 検索ボタンに書かれる文字列
#
def search_title
'全文検索 by Google カスタム検索'
end
add_footer_proc do
%Q|<script type="text/javascript" src="//www.google.com/cse/brand?form=cse-search-box&lang=ja"></script>|
end
def search_input_form(q='')
cof = @conf["search-google-custom.cof"] || 9
search_label = @conf["search-google-custom.search_label"] || '検索キーワード:'
button_text = @conf["search-google-custom.button_text"] || '検索'
r = <<-HTML
<form action="#{@conf.index}" id="cse-search-box">
<div>
<input type="hidden" name="cx" value="#{@conf["search-google-custom.id"]}">
<input type="hidden" name="cof" value="FORID:#{cof}">
<input type="hidden" name="ie" value="UTF-8">
<label for="q">#{search_label}</label><input type="text" name="q" value="#{h q}">
<input type="submit" name="sa" value="#{button_text}">
</div>
</form>
HTML
end
def search_result
w = @conf["search-google-custom.width"] || 600
h = @conf["search-google-custom.height"] || 1300
r = <<-HTML
<div id="cse-search-results"></div>
<script type="text/javascript">
var googleSearchIframeName = "cse-search-results";
var googleSearchFormName = "cse-search-box";
var googleSearchFrameWidth = #{w};
var googleSearchFrameHeight = #{h};
var googleSearchDomain = "www.google.com";
var googleSearchPath = "/cse";
</script>
<script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script>
HTML
end
|