Sha256: 535648d5b16354431777061c2e5c717c5eaf807fb7616b550d7e93a1f4fc0b59
Contents?: true
Size: 933 Bytes
Versions: 6
Compression:
Stored size: 933 Bytes
Contents
# # tDiary language setup: English(en) # # Copyright (C) 2001-2011, TADA Tadashi <t@tdtds.jp> # You can redistribute it and/or modify it under GPL2 or any later version. # # # 'html_lang' method returns String of HTML language attribute. # def html_lang 'en-US' end # # 'encoding' method returns String of HTTP or HTML charactor encoding. # def encoding 'UTF-8' end def encoding_old 'UTF-8' end # # 'migrate_to_utf8' method converts string to UTF-8, but dummy in en. # def migrate_to_utf8( str ) str.dup end # # 'shorten' method cuts string length. # def shorten( str, length = 120 ) matched = str.gsub( /\n/, ' ' ).scan( /^.{0,#{length - 2}}/u )[0] unless $'.empty? matched + '..' else matched end end # # 'comment_length' returns length of shorten comment on recent or monthly view. # def comment_length 120 end # Local Variables: # mode: ruby # indent-tabs-mode: t # tab-width: 3 # ruby-indent-level: 3 # End:
Version data entries
6 entries across 6 versions & 1 rubygems