Sha256: fbd3388c8481625fe30a457b95f6d40be80fb58268b96d21e2539d9f501eb94c
Contents?: true
Size: 1.26 KB
Versions: 9
Compression:
Stored size: 1.26 KB
Contents
# -*- coding: utf-8; -*- # # 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 # # 'mobile_encoding' method returns charactor encoding in mobile mode. # def mobile_encoding 'UTF-8' end # # 'migrate_to_utf8' method converts string to UTF-8, but dummy in en. # def migrate_to_utf8( str ) str.dup end # # 'to_mobile' method converts string automatically to mobile mode encoding. # def to_mobile( str ) str.dup end # # 'to_mail' method converts string automatically to E-mail encoding. # def to_mail( 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
9 entries across 8 versions & 1 rubygems