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
|
# Copyright (c) 2003 URABE Shyouhei <root@mput.dip.jp>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this code, to deal in the code without restriction, including without
# limitation the rights to use, copy, modify, merge, publish, distribute,
# sublicense, and/or sell copies of the code, and to permit persons to whom the
# code is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the code.
#
# THE CODE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE CODE OR THE USE OR OTHER DEALINGS IN THE
# CODE.
# title_tag2.rb to enhance <title> element of generating HTML
# $Id: title_tag.rb,v 1.3 2004/05/16 15:27:19 kazuhiko Exp $
# To use, just put this file into plugin folder.
alias :title_tag2 :title_tag
eval(<<__END_OF_TOPLEVEL__,TOPLEVEL_BINDING)
module TDiary
module DiaryBase
def all_subtitles_to_html
titles = Array.new
each_section do |section|
titles << section.subtitle_to_html
end
return titles
end
def all_stripped_subtitles_to_html
return all_subtitles_to_html unless categorizable?
titles = Array.new
each_section do |section|
titles << section.stripped_subtitle_to_html
end
return titles
end
end
end
__END_OF_TOPLEVEL__
def title_tag
if @mode == 'day' and diary = @diaries[@date.strftime('%Y%m%d')] then
title = @html_title + ' - '
if !diary.title.empty? then
title << apply_plugin(diary.title, true) << ' - '
end
t2 = ''
if @plugin_files.grep(/\/category.rb$/).empty? then
t2 << diary.all_subtitles_to_html.join(' , ')
else
t2 << diary.all_stripped_subtitles_to_html.join(' , ')
end
return "<title>#{CGI::escapeHTML(title)}#{@conf.shorten(apply_plugin(t2, true))}</title>"
elsif @mode == 'categoryview' then
return @conf.shorten("<title>#{CGI::escapeHTML(@html_title)}#{category_title()}</title>")
else
return title_tag2
end
end
# Local Variables:
# mode: ruby
# code: euc-jp-unix
# indent-tabs-mode: t
# tab-width: 3
# ruby-indent-level: 3
# fill-column: 79
# default-justification: full
# End:
# vi: ts=3 sw=3
|