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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
|
=begin
= 本日のリンク元もうちょっとだけ強化プラグイン((-$Id: disp_referrer.rb,v 1.70 2008-03-02 09:01:45 kazuhiko Exp $-))
== 概要
アンテナからのリンク、サーチエンジンの検索結果を、通常のリンク元の下にま
とめて表示します。サーチエンジンの検索結果は、検索語毎にまとめられます。
最新の日記の表示では、通常のリンク元以外のリンク元を隠します。
== Acknowledgements
This plugin uses
* Some of the search engine names and URLs
from disp_referrer.rb by MUTOH Masao.
Methods that parses URL is copied from cgi.rb distributed with Ruby and
edited.
The idea that categorize the URLs with [] delimited strings is from
kazuhiko.
The author of this plugin appreciates them.
== Copyright notice
Copyright (C) 2003-2005 zunda <zunda at freeshell.org>
Please note that some methods in this plugin are written by other
authors as written in the comments.
Permission is granted for use, copying, modification, distribution, and
distribution of modified versions of this work under the terms of GPL version 2 or later.
=end
=begin ChangeLog
See ChangeLog for changes after this.
* Mon Sep 29, 2003 zunda <zunda at freeshell.org>
- forgot to change arguments after changing initialize()
* Thu Sep 25, 2003 zunda <zunda at freeshell.org>
- name.untaint to eval name
* Thu Sep 25, 2003 zunda <zunda at freeshell.org>
- use to_native instead of to_euc
* Mon Sep 19, 2003 zunda <zunda at freeshell.org>
- disp_referrer2.rb,v 1.1.2.104 commited as disp_referrer.rb
* Mon Sep 1, 2003 zunda <zunda at freeshell.org>
- more strcit check for infoseek search enigne
* Wed Aug 27, 2003 zunda <zunda at freeshell.org>
- rd.yahoo, Searchalot, Hotbot added
* Tue Aug 12, 2003 zunda <zunda at freeshell.org>
- search engine list cleaned up
* Mon Aug 11, 2003 zunda <zunda at freeshell.org>
- instance_eval for e[2] in the search engine list
* Wed Aug 7, 2003 zunda <zunda at freeshell.org>
- WWW browser configuration interface
- キャッシュの更新をより確実にするようにしました。WWWブラウザから置換
リストを作った場合にはリストの最初に追加されます。
- secure=trueな日記でその他のリンク元リストが表示できるようになりました。
- Regexp generation for Wiki sites
* Wed Aug 6, 2003 zunda <zunda at freeshell.org>
- WWW browser configuration interface
- 主なオプションとリンク元置換リストの効率的な編集がWWWブラウザからで
きるようになりました。secure=trueな日記では一部の機能は使えません。
* Sat Aug 2, 2003 zunda <zunda at freeshell.org>
- Second version
- basic functions re-implemented
- オプションを命名しなおしました。また不要なオプションを消しました。
tdiary.confを編集していた方は、お手数ですが設定をしなおしてください。
- Noraライブラリとキャッシュの利用で高速化しました。
- 検索エンジンのリストをプラグインで持つようになりました。&や;を含む検
索文字列も期待通りに抽出できます。
* Mon Feb 17, 2003 zunda <zunda at freeshell.org>
- First version
=end
# to be visible from inside classes
Dispref2plugin = self
Dispref2plugin_cache_path = @cache_path
Dispref2plugin_cache_dir = @cache_dir
# cache format
Root_DispRef2URL = 'dispref2url' # root for DispRef2URLs
=begin
=== Tdiary::Plugin::DispRef2DummyPStore
PStoreと同じメソッドを提供しますがなにもしません。db[key]は全てnilを返す
ことに注意してください。
=end
# dummy PStore
class DispRef2DummyPStore
def initialize( file )
end
def transaction( read_only = false )
yield
end
def method_missing( name, *args )
nil
end
end
class DispRef2CachePathDummy
def initialize( setup )
@setup = setup
end
def size
0
end
def caches( include_backup = true )
[]
end
def method_missing( name, *args )
nil
end
end
=begin
=== Tdiary::Plugin::DispRef2CachePath
DispRef2Storeのパスの管理をします。
--- DispRef2CachePath::new( setup )
--- DispRef2CachePath#cache( date )
その日の日記のためのキャッシュのパスを返します。
--- DispRef2CachePath#caches
現在存在するそれぞれのキャッシュファイルのパスの配列を返します。
--- DispRef2CachePath#shrink
最近使われていないキャッシュを削除することで、
キャッシュの大きさを設定値程度に抑えます。
=== Tdiary::Plugin::DispRef2PStore
@secure=falseな日記ではPStoreと同等のメソッドを、@secure=trueな日記では
何もしないメソッドを提供します。
--- DispRef2PSTore#transaction( read_only = false )
Ruby-1.7以降の場合は読み込み専用に開くこともできます。Ruby-1.6の場
合はread_only = trueでも読み書き用に開きます。
--- DispRef2PSTore#real?
本物のPSToreが使える時はtrue、そうでない時はfalseを返します。
=end
class DispRef2PStore < DispRef2DummyPStore
def real?
false
end
end
class DispRef2CachePath < DispRef2CachePathDummy
end
=begin
=== Tdiary::Plugin::DispRef2String
文字コードの変換、URL、HTMLでの取り扱いに関するメソッド群です。インスタ
ンスは作りません。Uconvライブラリがあればそれを使い、無ければ無いなりに処理します。
--- DispRef2String::normalize( str )
続く空白を取り去ったりsite:...という文字列を消したりして、検索キー
ワードを規格化します。
--- DispRef2String::parse_query( str )
URLに含まれるquery部(key=value&...)を解析し、結果をkeyをキー、
valueの配列を値としたハッシュとして返します。値のアンエスケープは
しません。valueが無かった場合は空文字列が設定されます。
--- DispRef2String::separate_query( str )
URLをquery部より前と後に分けて配列として返します。query部が無い場
合はnilを返します。
--- DispRef2String::hostname( str )
URLに含まれるホスト名あるいはIPアドレスを返します。ホスト名がみつ
からない場合は、((|str|))を返します。
--- DispRef2String::company_name( str, hash_list )
URLより、googleやbiglobeといった名前のうち((|hash_list|))のkeyに含
まれるものを返します。みつからない場合は、nilを返します。
--- DispRef2String::escapeHTML( str )
HTMLに含まれても安全なようにエスケープします。
--- DispRef2String::unescape( str )
URLをアンエスケープします。
--- DispRef2String::bytes( size )
バイト単位の大きさをMB KB Bの適切な単位に変換します。
--- DispRef2String::comma( integer )
数字をカンマで3桁ずつに分けます。
--- DispRef2String::url_regexp( url )
((|url|))から置換リスト用の正規表現文字列をつくります。
--- DispRef2String::url_match?( url, list )
((|url|))が((|list|))のどれかにマッチするかどうか調べます。
=end
# string handling
class DispRef2String
# strips site:... portion (google), multiple spaces, and start/end spaces
def self::normalize( str )
str.sub( /\bsite:(\w+\.)*\w+\b/u, '' ).gsub( /[ \s\n]+/u, ' ' ).strip
end
# parse_query parses the not unescaped query in a URL
# copied from from CGI::parse in cgi.rb by
# Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
# Copyright (C) 2000 Information-technology Promotion Agency, Japan
# Wakou Aoyama <wakou@ruby-lang.org>
# eand edited
def self::parse_query( str )
params = Hash.new
str.split( /[&;]/n ).each do |pair|
k, v = pair.split( '=', 2 )
( params[k] ||= Array.new ) << ( v ? v : '' )
end
params
end
# separate the query part (or nil) from a URL
def self::separate_query( str )
base, query = str.split( /\?/, 2 )
if query then
[ base, query ]
else
[ base, nil ]
end
end
# get the host name (or nil) from a URL
@@hostname_match = %r!https?://([^/]+)/?!
def self::hostname( str )
@@hostname_match =~ str ? $1 : str
end
# get the `company name' included in keys of hash_table (or nil) from a URL
def self::company_name( str, hash_table )
hostname( str ).split( /\./ ).values_at( -2, -3, 0 ).each do |s|
return s if s and hash_table.has_key?( s.downcase )
end
nil
end
def self::unescape( str )
if str then
# escape ruby 1.6 bug.
begin
str.gsub( /\+/, ' ').gsub(/((?:%[0-9a-fA-F]{2})+)/n) do
[$1.delete('%')].pack('H*')
end
rescue Encoding::CompatibilityError
''
end
else
''
end
end
extend ERB::Util
def DispRef2String::escapeHTML( str )
str ? h( str ) : ''
end
# add K, M with 1024 divisions
def self::bytes( size )
s = size.to_f
t = s / 1024.0
return( '%.0f' % s ) if t < 1
s = t
t = s / 1024.0
return( '%.1f K' % s ) if t < 1
return( '%.1f M' % t )
end
# insert comma
def self::comma( integer )
integer.to_s.reverse.scan(/.{1,3}/).join(',').reverse
# [ruby-list:30144]
end
# make up a regexp from a url
def self::url_regexp( url )
r = url.dup
r.sub!( /\/\d{4,8}\.html$/, '/' ) # from a tDiary?
r.sub!( /\/(index\.(rb|cgi))?\?date=\d{4,8}$/, '/' ) # from a tDiary?
r.gsub!( /\./, '\\.' ) # dots in the FQDN
unless /(w|h)iki/i =~ r then
r.sub!( /\?.*/, '.*' )
else
r.sub!( /\?.*/, '\?(.*)' )
end
r.sub!( /\/(index\.html?)$/, '/' ) # directory index
r.sub!( /\/$/, '/?.*' ) # may be also from a lower level
"\\A#{r}" # always good to put a \A
end
# matchs to the regexp strings?
def self::url_match?( url, list )
list = list.split( /\n/ ) if String == list.class
list.each do |entry|
entry = entry[0] if Array == entry.class
return true if /#{entry}/i =~ url
end
false
end
end
=begin
=== Tdiary::Plugin::DispRef2Setup
プラグインの動作を決めるパラメータを設定します。
--- DispRef2Setup::Last_parenthesis
文字列の最後の()の中身が$1に設定される正規表現です。
--- DispRef2Setup::First_bracket
文字列の最初の[]の中身が$1に、その後の文字列が$2に設定される正規表
現です。
--- DispRef2Setup::Defaults
オプションのデフォルト値です。tDiary本体から@optionsで設定するには、
このハッシュのkeyの前に「disp_referrer2.」をつけたkeyを使ってくだ
さい。オプションの詳細はソースのコメントを参照してください。
--- DispRef2Setup::new( conf, limit = 100, is_long = true )
((|conf|))にはtDiaryの@confを、((|limit|))には一項目あたりの表示リ
ンク元数を、((|is_long|))は一日分の表示の場合にはtrueを、最新の表
示の場合にはfalseを設定してください。
--- DispRef2Setup#update!
tDiaryの@optionsにより自身を更新します。
--- DispRef2Setup#is_long
--- DispRef2Setup#referer_table
--- DispRef2Setup#no_referer
--- DispRef2Setup#secure
それぞれ、一日分の表示かどうか、tDiaryの置換テーブル、tDiaryのリン
ク元除外リスト、日記のセキュリティ設定を返します。
--- DIspRef2Setup#to_native( str )
tDiaryの言語リソースで定義されている文字コードを正規化するメソッド
です。
--- DispRef2Setup#[]
設定されている値を返します。
=end
# configuration of this plugin
class DispRef2Setup < Hash
# useful regexps
Last_parenthesis = /\((.*?)\)\Z/m
First_bracket = /\A\[(.*?)\](.+)/m
# default options
Defaults = {
'long.only_normal' => false,
# trueの場合、一日分の表示で、通常のリンク元以外を隠します。
'short.only_normal' => true,
# trueの場合、最新の表示で、通常のリンク元以外を隠します。
# falseの場合は、プラグインの無い場合と全くおなじ表示になります。
'antenna.url' => '(\/a\/|(?!.*\/diary\/)antenna[\/\.]|\/tama\/|\Ahttp:\/\/www\.tdiary\.net\/?(i\/)?(\?|$)|links?|\Ahttp:\/\/kitaj\.no-ip\.com\/iraira\/|\Ahttp:\/\/i-know\.jp\/|\Ahttp:\/\/(www\.)?bloglines\.com\/(myblogs|public)_display|\Ahttp:\/\/del\.icio\.us\/\w+|\Ahttp:\/\/reader\.livedoor\.com\/reader\/)',
# アンテナのURLに一致する正規表現の文字列です。
'antenna.title' => '(アンテナ|links?|あんてな|antenna|entry|entries|リンク集|RSS|ブックマーク)',
# アンテナの置換後の文字列に一致する正規表現の文字列です。
'normal.label' => Dispref2plugin.referer_today,
# 通常のリンク元のタイトルです。デフォルトでは、「本日のリンク元」です。
'antenna.label' => Disp_referrer2_antenna_label,
# アンテナのリンク元のタイトルです。
'unknown.label' => Disp_referrer2_unknown_label,
# その他のリンク元のタイトルです。
'unknown.hide' => false,
# trueの場合はリンク元置換リストにないURLは表示しません
'search.label' => Disp_referrer2_search_label,
# 検索エンジンからのリンク元のタイトルです。
'unknown.divide' => true,
# trueの場合、置換リストに無いURLを通常のリンク元と分けて表示します。
# falseの場合、置換リストに無いURLを通常のリンク元と混ぜて表示します。
'normal.group' => true,
# trueの場合、置換後の文字列で通常のリンク元をグループします。
# falseの場合、URL毎に別のリンク元として表示します。
'normal.categorize' => true,
# trueの場合、置換後の文字列の最初の[]の文字列でカテゴリー分けします。
'normal.ignore_parenthesis' => true,
# trueの場合、グループする際に置換後の文字列の最後の()を無視します。
'antenna.group' => true,
# trueの場合、置換後の文字列で通常のリンク元をグループします。
# falseの場合、URL毎に別のリンク元として表示します。
'antenna.ignore_parenthesis' => true,
# trueの場合、グループする際に置換後の文字列の最後の()を無視します。
'search.expand' => false,
# trueの場合、検索キーワードとともに検索エンジン名を表示します。
# falseの場合、回数のみを表示します。
'search.unknown_keyword' => Disp_referrer2_search_unknown_keyword,
# キーワードがわからない検索エンジンからのリンクに使う文字列です。
'search_engines' => DispReferrer2_Engines,
# 検索エンジンのハッシュです。
'cache_label' => Disp_referrer2_cache_label,
# 検索エンジンのキャッシュのURLを表示する文字列です。
'cache_path' => "#{Dispref2plugin_cache_path}/disp_referrer2.cache",
# このプラグインで使うキャッシュファイルのパスです。
# このオプションは現在は使われていません。
'cache_dir' => "#{Dispref2plugin_cache_path}/disp_referrer2.d",
# このプラグインで使うキャッシュファイルのディレクトリです。
'cache_max_size' => 10485760, # 10MB
# キャッシュの合計量の制限(バイト)です。時々越えます。
# 0未満なら制限しません。
'no_cache' => false,
# trueの場合キャッシュを使いません。
'normal-unknown.title' => '\Ahttps?:\/\/',
# 置換された「その他」のリンク元のタイトル、あるいは置換されていな
# いリンク元のタイトルにマッチします。
'configure.use_link' => true,
# リンク元置換リストの編集画面で、リンク元へのリンクを作ります。
'reflist.ignore_urls' => '',
# 置換リストのリストアップの際に無視するURLの正規表現の文字列
# \n区切で並べます
}
attr_reader :is_long, :referer_table, :no_referer, :years, :conf
def initialize( conf, limit = 100, is_long = true, years = nil, mode = nil )
super()
@conf = conf
@years = years
# mode
@is_long = is_long
@limit = limit
@options = conf.options
@mode = mode
# URL tables
@referer_table = conf.referer_table
@no_referer = conf.no_referer
# options from tDiary
update!
end
def to_native( str )
@conf.to_native( str )
end
# options from tDiary
def update!
# defaults
self.replace( DispRef2Setup::Defaults.dup )
# from tDiary
self.each_key do |key|
options_key = "disp_referrer2.#{key}"
self[key] = @options[options_key] if @options.has_key?( options_key )
end
self['no_cache'] = true if defined?(::TDiary::IO::Default) && @conf.io_class == ::TDiary::IO::Default
# additions
self['labels'] = {
DispRef2URL::Normal => self['normal.label'],
DispRef2URL::Antenna => self['antenna.label'],
DispRef2URL::Search => self['search.label'],
DispRef2URL::Unknown => self['unknown.label'],
}
self['antenna.url.regexp'] = /#{self['antenna.url']}/i
self['antenna.title.regexp'] = /#{self['antenna.title']}/i
self['normal-unknown.title.regexp'] = /#{self['normal-unknown.title']}/i
# limits
self['limit'] = Hash.new
self['limit'][DispRef2URL::Normal] = @limit || 0
if ( @is_long ? self['long.only_normal'] : self['short.only_normal'] ) then
[DispRef2URL::Antenna, DispRef2URL::Search, DispRef2URL::Unknown].each do
|c| self['limit'][c] = 0
end
else
[DispRef2URL::Antenna, DispRef2URL::Search, DispRef2URL::Unknown].each do |c|
self['limit'][c] = @limit || 0
end
end
if self['unknown.hide'] and not /\A(append|replace|edit)\Z/ =~ @mode then
self['limit'][DispRef2URL::Unknown] = 0
end
self
end
def open_cache( path )
if self['no_cache'] then
DispRef2DummyPStore::new( path )
else
DispRef2PStore::new( path )
end
end
def cache_path
if self['no_cache'] then
DispRef2CachePathDummy::new( self )
else
DispRef2CachePath::new( self )
end
end
end
=begin
=== Tdiary::Plugin::DispRef2URL
--- DispRef2URL::new( unescaped_url, setup = nil )
素のURLを元にしてインスタンスを生成します。((|setup|))がnilではない
場合には、parse( ((|setup|)) ) もします。
--- DispRef2URL#restore( db )
キャッシュから自分のURLに対応する情報を取り出します。((|db|))は
DispRef2PStoreのインスタンスです。キャッシュされていなかった場合
にはnilを返します。
--- DispRef2URL#parse( setup )
DispRef2Setupのインスタンス((|setup|))にしたがって、自分を解析します。
--- DispRef2URL::Cached_options
DispRef2Setupで設定されるオプションのうち、キャッシュに影響を与え
るものの配列を返します。
--- DispRef2URL#store( db )
キャッシュに自分を記録します。((|db|))はDispRef2PStoreのインスタ
ンスです。記録に成功した場合は自分を、そうでない場合にはnilを返し
ます。
--- DispRef2URL#==( other )
解析結果が等しい場合に真を返します。
--- DispRef2URL#url
--- DispRef2URL#category
--- DispRef2URL#category_label
--- DispRef2URL#title
--- DispRef2URL#title_ignored
--- DispRef2URL#title_group
--- DispRef2URL#key
それぞれ、URL、カテゴリー、カテゴリー名(ユーザーが設定しなければnil)、
タイトル、グループ化した時に無視されたタイトル(無ければnil)、グル
ープ化した後のタイトル、グループ化する際のキーを返します。parseあ
るいはrestoreしないと設定されません。
=end
# handling of a URL
class DispRef2URL
attr_reader :url, :category, :category_label, :title, :title_ignored, :title_group, :key
# category numbers
Normal = :normal
Antenna = :antenna
Search = :search
Unknown = :unknown
Categories = [Normal, Antenna, Search, Unknown]
# options which affects the cache
Cached_options = %w(
search_engines
cache_label
unknown.divide
antenna.url.regexp
antenna.url
antenna.title.regexp
antenna.title
antenna.group
antenna.ignore_parenthesis
normal.categorize
normal.group
normal.ignore_parenthesis
)
def initialize( unescaped_url, setup = nil )
@url = unescaped_url
@dbcopy = nil
parse( setup ) if setup
end
def restore( db )
if db.real? and (
begin
db[Root_DispRef2URL]
rescue PStore::Error
false
end
) and db[Root_DispRef2URL][@url] then
@category, @category_label, @title, @title_ignored, @title_group, @key = db[Root_DispRef2URL][@url]
self
else
nil
end
end
def parse( setup )
parse_as_search( setup ) || parse_as_others( setup )
self
end
def store( db )
if db.real? and (
begin
db[Root_DispRef2URL] ||= Hash.new
rescue PStore::Error
db[Root_DispRef2URL] = Hash.new
end
) then
db[Root_DispRef2URL]["#{@url}"] = [ @category, @category_label, @title, @title_ignored, @title_group, @key ]
self
else
nil
end
end
def ==(other)
return @url == other.url &&
@category == other.category &&
@category_label == other.category_label &&
@title == other.title &&
@title_ignored == other.title_ignored &&
@title_group == other.title_group &&
@key == other.key
end
def replace_with(other)
@category = other.category
@category_label = other.category_label
@title = other.title
@title_ignored = other.title_ignored
@title_group = other.title_group
@key = other.key
return self
end
private
def parse_as_search( setup )
# see which search engine is used
engine = DispRef2String::company_name( @url, setup['search_engines'] )
return nil unless engine
# url and query
urlbase, query = DispRef2String::separate_query( @url )
# get titles and keywords
title = nil
keyword = nil
cached_url = nil
catch( :done ) do
setup['search_engines'][engine].each do |re_url, title_code, keys, cache|
next unless re_url =~ urlbase
title = eval( title_code )
throw :done if keyword
if String == keys.class then # a Ruby code to extract key
re_url =~ urlbase
keyword, cached_url = (query || @url).instance_eval( keys )
throw :done
end
next unless query # below is to extract keyword from query
values = DispRef2String::parse_query( query )
# an Array of keys in which keywords or recursive URL are stored
keys.each do |key|
if Symbol === key then
k = key.to_s
if values[k] and not (encoded_uri = values[k][0]).empty? then
begin
original_uri = URI::parse( urlbase ) + URI::parse( URI.decode_www_form_component(encoded_uri) )
throw :done if original_uri == urlbase # denial of service?
self.replace_with( DispRef2URL.new( original_uri.to_s ).parse( setup ) )
return self
rescue URI::InvalidURIError
throw :done
end
end
elsif values[key] and not (value = values[key][0]).empty? then
unless cache and cache =~ value then
cached_url = nil
keyword = values[key][0]
throw :done
else
cached_url = $1
keyword = $` + $'
throw :done
end
end
next
end
end
return nil
end
# format
keyword ||= setup['search.unknown_keyword']
@category = Search
@category_label = nil
@title = DispRef2String::normalize( setup.to_native( DispRef2String::unescape( keyword ) ) )
@title_ignored = setup.to_native( title )
@title_ignored << sprintf( setup['cache_label'], setup.to_native( DispRef2String::unescape( cached_url ) ) ) if cached_url
@title_group = @title
@key = @title_group
return self
end
def parse_as_others( setup )
# try to convert with referer_table
matched = false
title = setup.to_native( DispRef2String::unescape( @url ) )
setup.referer_table.each do |url, name|
unless /\$\d/ =~ name then
if title.gsub!( /#{url}/iu, name ) then
matched = true
break
end
else
if title.gsub!( /#{url}/iu ) { eval name } then
matched = true
break
end
end
end
if setup['antenna.url.regexp'] =~ @url or setup['antenna.title.regexp'] =~ title then
# antenna
@category = Antenna
@category_label = nil
grouping = setup['antenna.group']
ignoring = setup['antenna.ignore_parenthesis']
elsif matched and not setup['normal-unknown.title.regexp'] =~ title then
# normal
@category = Normal
if setup['normal.categorize'] and DispRef2Setup::First_bracket =~ title then
@category_label = $1
title = $2
else
@category_label = nil
end
grouping = setup['normal.group']
ignoring = setup['normal.ignore_parenthesis']
else
# unknown
@title = title
@title_ignored = nil
@title_group = title
@key = @url
if setup['unknown.divide'] then
@category = Unknown
@category_label = nil
else
@category = Normal
@category_label = nil
end
return self
end
# format the title
if not grouping then
@title = title
@title_group = title
@title_ignored = nil
@key = @url
elsif not ignoring then
@title = title
@title_group = title
@title_ignored = nil
@key = title_group
else
@title = title
@title_group = title.gsub( DispRef2Setup::Last_parenthesis, '' )
@title_ignored = $1
@key = title_group
end
self
end
# private
end
=begin
=== Tdiary::Plugin::DispRef2Refs
--- DispRef2Refs::new( diary, setup )
日記((|diary|))のリンク元を、DispRef2Setupのインスタンス((|setup|))
にしたがって解析します。
--- DispRef2Refs#special_categories
置換文字列の最初に[]でかこったカテゴリ名ラベルを挿入することによっ
てユーザーによって定義されたカテゴリーの配列を返します。
--- DispRef2Refs#urls( category = nil )
リンク元のうち、カテゴリーが((|category|))に一致するものを、
DispRef2Cache#urlsと同様のフォーマットで返します。((|category|))
がnilの場合は全てのURLの情報を返します。
--- DispRef2Refs#to_long_html
--- DispRef2Refs#to_short_html
リンク元のリストをHTML断片にします。
=end
class DispRef2Refs
def initialize( diary, setup )
@setup = setup
@refs = Hash.new
@has_ref = false
return unless diary
done_flag = Hash.new
DispRef2URL::Categories.each do |c|
done_flag[c] = (@setup['limit'][c] < 1)
end
h = Hash.new
date = diary.respond_to?( :date ) ? diary.date : nil
db = setup.open_cache( setup.cache_path.cache( date ) )
db.transaction do
diary.each_referer( diary.count_referers ) do |count, url|
ref = DispRef2URL.new( url )
@has_ref = true
unless ref.restore( db ) then
ref.parse( @setup )
ref.store( db )
end
if @setup.is_long and @setup['normal.categorize'] then
cat_key = ref.category_label || ref.category
else
cat_key = ref.category
end
next if done_flag[cat_key]
h[cat_key] ||= Hash.new
unless h[cat_key][ref.key] then
h[cat_key][ref.key] = [count, ref.title_group, [[count, ref]]]
else
h[cat_key][ref.key][0] += count
h[cat_key][ref.key][2] << [count, ref] if h[cat_key][ref.key].size < @setup['limit'][ref.category]
end
if h[cat_key].size >= @setup['limit'][ref.category] then
done_flag[ref.category] = true
break unless done_flag.has_value?( false )
end
end
end
db = nil
h.each_pair do |cat_key, hash|
@refs[cat_key] = hash.values
@refs[cat_key].sort! { |a, b| b[0] <=> a[0] }
end
end
def special_categories
@refs.keys.reject!{ |c| DispRef2URL::Categories.include?( c ) }
end
# urls in the diary as a hash
def urls( category = nil )
if category then
category = [ category ] unless category.respond_to?( :each )
else
category = @refs.keys
end
h = Hash.new
category.each do |cat|
next unless @refs[cat]
@refs[cat].each do |a|
a[2].each do |b|
h[b[1].url] = [ b[1].category, b[1].category_label, b[1].title, b[1].title_ignored, b[1].title_group, b[1].key ]
end
end
end
h
end
def to_short_html
return '' if not @refs[DispRef2URL::Normal] or @refs[DispRef2URL::Normal].size < 1
result = DispRef2String::escapeHTML( @setup['labels'][DispRef2URL::Normal] ) + ' | '
@refs[DispRef2URL::Normal].each do |a|
result << %Q[<a rel="nofollow" href="#{DispRef2String::escapeHTML( a[2][0][1].url )}" title="#{DispRef2String::escapeHTML( a[2][0][1].title )}">#{a[0]}</a> | ]
end
result
end
def to_long_html( label )
return '' if not @has_ref
# we always need a caption
result = %Q[<div class="caption">#{DispRef2String::escapeHTML( label )}</div>\n]
result << others_to_long_html( DispRef2URL::Normal )
if( @setup['normal.categorize'] and special_categories ) then
special_categories.each do |cat|
result << others_to_long_html( cat )
end
end
result << others_to_long_html( DispRef2URL::Antenna )
result << others_to_long_html( DispRef2URL::Unknown )
result << search_to_long_html
result
end
private
def others_to_long_html( cat_key )
return '' unless @refs[cat_key] and @refs[cat_key].size > 0
result = ''
unless DispRef2URL::Normal == cat_key then
# to_long_html provides the catpion for normal links
if @setup['labels'].has_key?( cat_key ) then
result << %Q[<div class="caption">#{DispRef2String::escapeHTML( @setup['labels'][cat_key] )}</div>\n]
else
result << %Q[<div class="caption">#{DispRef2String::escapeHTML( cat_key )}</div>\n]
end
end
result << '<ul>'
@refs[cat_key].each do |a|
begin
if a[2].size == 1 then
result << %Q[<li><a rel="nofollow" href="#{DispRef2String::escapeHTML( a[2][0][1].url )}">#{DispRef2String::escapeHTML( a[2][0][1].title )}</a> ×#{a[0]}</li>\n]
elsif not a[2][0][1].title_ignored then
result << %Q[<li><a rel="nofollow" href="#{DispRef2String::escapeHTML( a[2][0][1].url )}">#{DispRef2String::escapeHTML( a[1] )}</a> ×#{a[0]} : #{a[2][0][0]}]
a[2][1..-1].each do |b|
title = (b[1].title != a[1]) ? %Q[ title="#{DispRef2String::escapeHTML( b[1].title )}"] : ''
result << %Q[, <a rel="nofollow" href="#{DispRef2String::escapeHTML( b[1].url )}"#{title}>#{b[0]}</a>]
end
result << "</li>\n"
else
result << %Q[<li>#{DispRef2String::escapeHTML( a[1] )} ×#{a[0]} : ]
comma = nil
a[2][0..-1].each do |b|
title = (b[1].title != a[1]) ? %Q[ title="#{DispRef2String::escapeHTML( b[1].title )}"] : ''
result << comma if comma
result << %Q[<a rel="nofollow" href="#{DispRef2String::escapeHTML( b[1].url )}"#{title}>#{b[0]}</a>]
comma = ', '
end
result << "</li>\n"
end
rescue Encoding::CompatibilityError
end
end
result << "</ul>\n"
end
def search_to_long_html
return '' unless @refs[DispRef2URL::Search] and @refs[DispRef2URL::Search].size > 0
result = %Q[<div class="caption">#{DispRef2String::escapeHTML( @setup['labels'][DispRef2URL::Search] )}</div>\n]
result << ( @setup['search.expand'] ? "<ul>\n" : '<ul><li>' )
sep = nil
@refs[DispRef2URL::Search].each do |a|
result << sep if sep
if @setup['search.expand'] then
result << '<li>'
result << DispRef2String::escapeHTML( a[1] )
else
result << %Q[<a rel="nofollow" href="#{DispRef2String::escapeHTML( a[2][0][1].url )}">#{DispRef2String::escapeHTML( a[1] )}</a>]
end
result << %Q[ ×#{a[0]} ]
if @setup['search.expand'] then
result << ' : '
if a[2].size < 2 then
result << %Q[<a rel="nofollow" href="#{DispRef2String::escapeHTML( a[2][0][1].url )}">#{DispRef2String::escapeHTML( a[2][0][1].title_ignored )}</a>]
else
comma = nil
a[2].each do |b|
result << comma if comma
result << %Q[<a rel="nofollow" href="#{DispRef2String::escapeHTML( b[1].url )}">#{DispRef2String::escapeHTML( b[1].title_ignored )}</a> ×#{b[0]}]
comma = ', ' unless comma
end
end
end
result << '</li>' if @setup['search.expand']
sep = ( @setup['search.expand'] ? "\n" : ' / ' ) unless sep
end
result << ( @setup['search.expand'] ? "</ul>\n" : "</li></ul>\n" )
end
# private
end
=begin
=== Tdiary::Plugin::DispRef2Cache
キャッシュの管理をするクラスです。
--- DispRef2Cache.new( setup )
リンク元のキャッシュを、DispRef2Setupのインスタンス((|setup|))にした
がって管理します。
--- DispRef2Cache#urls( category = nil, nmonth = 2 )
キャッシュされているURLの情報のうち、カテゴリーが((|category|))に
一致するものを、URLをキー、下記の配列を値としたハッシュとして返し
ます。((|category|))がnilの場合は全てのURLの情報を返します。
((|nmonth|))がnilではない場合は、最近NMONTH分のキャッシュだけから
検索します。
* カテゴリー
* カテゴリーのラベル(あるいはnil)
* 置換後の文字列
* グループする際に無視された文字列
* グループ全体の文字列
* グループする際のキー
=end
# cache management
class DispRef2Cache
def initialize( setup )
@setup = setup
@cache = @setup.cache_path
end
# cached urls as a hash
def urls( category = nil, nmonth = 2 )
h = Hash.new
if nmonth then
caches = @cache.caches( false ).sort{ |a,b| b<=>a }[0...nmonth]
else
caches = @cache.caches( false )
end
caches.each do |path|
db = @setup.open_cache( path )
db.transaction( true ) do
begin
db[Root_DispRef2URL].each_pair do |url, data|
h[url] = data if not category or category == data[0]
end
rescue PStore::Error
end
end
end
h
end
end
=begin
=== TDiary::Plugin::DispRef2SetupIF
このプラグインの設定のためのHTMLを生成し、CGIリクエストを受け取ります。
--- DispRef2SetupIF::new( cgi, setup, conf, mode )
CGIのインスタンス((|cgi|))とDispRef2Setupのインスタンス((|setup|))
より、設定のためのインスタンスを生成します。TDiary::Pluginより、
@confと@modeも引数に指定してください。
--- DispRef2SetupIF#show_html
設定の更新と必要ならキャッシュの更新をしてからHTMLを表示します。
--- DispRef2SetupIF#show_description
このプラグインのHTML版の説明です。設定する項目も選べます。
--- DispRef2SetupIF#show_options
このプラグインのオプションを設定するHTML断片を返します。
--- DispRef2SetupIF#show_unknown_list
リンク元置換リストの編集のためのHTML断片を返します。
--- DispRef2SetupIF#update_options
cgiからの入力に応じて、このプラグインのオプションを更新します。
@setupも更新します。
--- DispRef2SetupIF#update_tables
cgiからの入力に応じて、リンク元置換リストを更新します。
=end
# WWW Setup interface
class DispRef2SetupIF
# setup mode
Options = 'options'
RefList = 'reflist'
def initialize( cgi, setup, conf, mode )
@cgi = cgi
@setup = setup
@conf = conf
@conf['disp_referrer2.reflist.ignore_urls'] ||= ''
@mode = mode
@need_cache_update = false
if @cgi.params['dr2.change_mode'] and @cgi.params['dr2.change_mode'][0] then
case @cgi.params['dr2.new_mode'][0]
when Options
@current_mode = Options
when RefList
@current_mode = RefList
else
@current_mode = Options
end
elsif @cgi.params['dr2.current_mode'] then
case @cgi.params['dr2.current_mode'][0]
when Options
@current_mode = Options
when RefList
@current_mode = RefList
else
@current_mode = Options
end
else
@current_mode = Options
end
unless @setup['no_cache'] then
@cache = @setup.cache_path
else
@cache = nil
end
end
# do what to do and make html
def show_html
# things to be done
if @mode == 'saveconf' then
case @current_mode
when Options
update_options
when RefList
update_tables
end
end
# clear cache
if @mode == 'saveconf' then
if not @setup['no_cache'] then
unless @cache then
@need_cache_update = true
@cache = @setup.cache_path
end
if not 'never' == @cgi.params['dr2.cache.update'][0] and ('force' == @cgi.params['dr2.cache.update'][0] or @need_cache_update) then
@cache.clear
end
else
if @setup['no_cache'] then
@cache = nil
end
end
end
# result
r = show_description
case @current_mode
when Options
r << show_options
when RefList
r << show_unknown_list
end
r
end
# show description
def show_description
r = Disp_referrer2_abstract.dup
if @cache then
r << sprintf( Disp_referrer2_cache_info, DispRef2String::bytes( @cache.size ) )
r << sprintf( Disp_referrer2_update_info, "#{DispRef2String::escapeHTML(@conf.update)}?conf=referer" )
end
r << "<p>\n"
case @current_mode
when Options
r << sprintf( Disp_referrer2_move_to_refererlist, "#{DispRef2String::escapeHTML(@conf.update)}?conf=disp_referrer2;dr2.new_mode=#{RefList};dr2.change_mode=true" )
when RefList
r << sprintf( Disp_referrer2_move_to_config, "#{DispRef2String::escapeHTML(@conf.update)}?conf=disp_referrer2;dr2.new_mode=#{Options};dr2.change_mode=true" )
end
r << sprintf( Disp_referrer2_also_todayslink, "#{DispRef2String::escapeHTML(@conf.update)}?conf=referer" )
r << %Q{<input type="hidden" name="saveconf" value="ok"></p><hr>\n}
r
end
# updates the options
def update_options
dirty = false
# T/F options
%w( antenna.group antenna.ignore_parenthesis antenna.search.expand
normal.categorize normal.group normal.ignore_parenthesis
search.expand long.only_normal short.only_normal no_cache unknown.divide
unknown.hide
).each do |key|
tdiarykey = 'disp_referrer2.' + key
case @cgi.params['dr2.' + key][0]
when 'true'
unless @conf[tdiarykey] == true then
@conf[tdiarykey] = true
@need_cache_update = true if DispRef2URL::Cached_options.include?( key )
dirty = true
end
when 'false'
unless @conf[tdiarykey] == false then
@conf[tdiarykey] = false
@need_cache_update = true if DispRef2URL::Cached_options.include?( key )
dirty = true
end
end
end
# numeric options
%w( cache_max_size ).each do |key|
tdiarykey = 'disp_referrer2.' + key
v = @cgi.params['dr2.' + key][0]
next unless v
f = 1
if v.gsub!( /M\Z/, '' ) then
f = 1024*1024
elsif v.gsub!( /K\Z/, '' ) then
f = 1024
end
if /\A\d+\Z/ =~ v then
@conf[tdiarykey] = v.to_i * f
@need_cache_update = true if DispRef2URL::Cached_options.include?( key )
dirty = true
end
end
# update @setup
@setup.update! if dirty
end
# referer tables
def update_tables
dirty = false
if @cgi.params['dr2.urls'] and @cgi.params['dr2.urls'][0].to_i > 0
@cgi.params['dr2.urls'][0].to_i.times do |i|
if not @cgi.params["dr2.#{i}.reg"][0].empty? and not @cgi.params["dr2.#{i}.title"][0].empty? then
a = [
@setup.to_native( @cgi.params["dr2.#{i}.reg"][0] ).sub( /[\r\n]+/, '' ),
@setup.to_native( @cgi.params["dr2.#{i}.title"][0] ).sub( /[\r\n]+/, '' )
]
if not a[0].empty? and not a[1].empty? then
@conf.referer_table2.unshift( a )
@conf.referer_table.unshift( a )
# to reflect the change in this requsest
@need_cache_update = true
dirty = true
end
end
if 'true' == @cgi.params["dr2.#{i}.noref"][0] then
unless @cgi.params["dr2.#{i}.reg"][0].empty? then
reg = @setup.to_native( @cgi.params["dr2.#{i}.reg"][0] ).strip
unless reg.empty? then
@conf.no_referer2.unshift( reg )
@conf.no_referer.unshift( reg )
# to reflect the change in this requsest
end
end
end
if 'true' == @cgi.params["dr2.#{i}.ignore"][0] then
unless @cgi.params["dr2.#{i}.reg"][0].empty? then
reg = @setup.to_native( @cgi.params["dr2.#{i}.reg"][0] ).strip
unless reg.empty? then
@conf['disp_referrer2.reflist.ignore_urls'] = @conf['disp_referrer2.reflist.ignore_urls'].split( /\n/ ).push( reg ).uniq.join( "\n" )
dirty = true
end
end
end
end
end
if @cgi.params['dr2.clear_ignore_urls'] and 'true' == @cgi.params['dr2.clear_ignore_urls'][0] then
@conf['disp_referrer2.reflist.ignore_urls'] = ''
dirty = true
end
%w( url title ).each do |cat|
if 'true' == @cgi.params["dr2.antenna.#{cat}.default"][0] then
@conf["disp_referrer2.antenna.#{cat}"] = DispRef2Setup::Defaults["antenna.#{cat}"]
dirty = true
@need_cache_update = true
elsif @cgi.params["dr2.antenna.#{cat}"] and @cgi.params["dr2.antenna.#{cat}"][0] and @cgi.params["dr2.antenna.#{cat}"][0] != @conf["disp_referrer2.antenna.#{cat}"] then
newval = @cgi.params["dr2.antenna.#{cat}"][0].strip
unless newval.empty? then
@conf["disp_referrer2.antenna.#{cat}"] = newval
dirty = true
@need_cache_update = true
end
end
end
# update @setup
@setup.update! if dirty
end
end
=begin
=== TDiary::Plugin::DispRef2Latest
キャッシュが無い場合に、設定プラグインで不明のリンク元を得るためのクラス
です。
--- DispRef2Latest::new( cgi, skeltonfile, conf, setup )
TDiary::TDiaryLatestの引数に加えて、DispRef2Setupのインスタンス
((|setup|))を引数にとります。
--- DispRef2Latest::unknown_urls
最新の日記のリンク元のうち、置換できなかったもののURLの配列を返し
ます。置換できなかったURLが無い場合には空の配列を返します。
=end
class DispRef2Latest < TDiary::TDiaryLatest
def initialize( cgi, rhtml, conf, setup )
super( cgi, rhtml, conf )
@setup = setup
end
# collect unknown URLs from the newest diaries
def unknown_urls
r = Array.new
self.latest( @conf.latest_limit ) do |diary|
refs = DispRef2Refs.new( diary, @setup )
h = refs.urls( DispRef2URL::Antenna )
h.each_key do |url|
next unless @setup['normal-unknown.title.regexp'] =~ h[url][2]
next if DispRef2String::url_match?( url, @setup.no_referer )
r << url
end
h = nil
refs.urls( DispRef2URL::Unknown ).each_key do |url|
next if DispRef2String::url_match?( url, @setup.no_referer )
r << url
end
end
r.uniq
end
end
=begin
=== Tdiary::Plugin
--- Tdiary::Plugin#configure_disp_referrer2
このプラグインの設定のために使われるメソッドです。add_conf_procさ
れます。
以下は、このプラグインでオーバーライドされるtDiaryのメソッドです。
--- Tdiary::Plugin#referer_of_today_long( diary, limit = 100 )
--- Tdiary::Plugin#referer_of_today_short( diary, limit = 10 )
=end
# for configuration interface
add_conf_proc( 'disp_referrer2', Disp_referrer2_name, 'referer' ) do
setup = DispRef2Setup.new( @conf, 100, true, @years, @mode )
wwwif = DispRef2SetupIF.new( @cgi, setup, @conf, @mode )
wwwif.show_html
end
# for one-day diary
def referer_of_today_long( diary, limit = 100 )
return '' if bot?
setup = DispRef2Setup.new( @conf, limit, true, nil, @mode )
r = ''
r << DispRef2Refs.new( diary, setup ).to_long_html( referer_today )
r << DispRef2Refs.new( @referer_volatile, setup ).to_long_html( volatile_referer ) if @referer_volatile and latest_day?( diary )
setup.cache_path.shrink
r
end
# we have to know the unknown urls at this moment in a secure diary
DispRef2Latest_cache = nil
# Local Variables:
# mode: ruby
# indent-tabs-mode: t
# tab-width: 3
# ruby-indent-level: 3
# End:
|