Class: TMail::ContentTypeHeader
Constant Summary
collapse
- PARSE_TYPE =
:CTYPE
Constants inherited
from HeaderField
HeaderField::FNAME_TO_CLASS
Constants included
from TextUtils
TextUtils::ATOM_UNSAFE, TextUtils::CONTROL_CHAR, TextUtils::MESSAGE_ID, TextUtils::MIME_ENCODED, TextUtils::MONTH, TextUtils::NKF_FLAGS, TextUtils::PHRASE_UNSAFE, TextUtils::RFC2231_ENCODED, TextUtils::TOKEN_UNSAFE, TextUtils::WDAY, TextUtils::ZONESTR_TABLE
Instance Method Summary
collapse
#comments
Methods inherited from HeaderField
#accept, #body, #body=, #empty?, #illegal?, #initialize, #inspect, internal_new, new, new_from_port, newobj
#accept_strategy, create_dest, #decoded, #encoded
Methods included from TextUtils
#atom_safe?, #decode_RFC2231, #decode_params, #join_domain, #message_id?, #mime_encoded?, #quote_atom, #quote_boundary, #quote_phrase, #quote_token, #quote_unquoted_bencode, #quote_unquoted_name, #time2str, #timezone_string_to_unixtime, #to_kcode, #token_safe?, #unquote
Instance Method Details
788
789
790
791
|
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb', line 788
def []( key )
ensure_parsed
@params and unquote(@params[key])
end
|
#[]=(key, val) ⇒ Object
793
794
795
796
|
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb', line 793
def []=( key, val )
ensure_parsed
(@params ||= {})[key] = val
end
|
#content_type ⇒ Object
773
774
775
776
|
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb', line 773
def content_type
ensure_parsed
@sub ? sprintf('%s/%s', @main, @sub) : @main
end
|
#main_type ⇒ Object
753
754
755
756
|
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb', line 753
def main_type
ensure_parsed
@main
end
|
#main_type=(arg) ⇒ Object
758
759
760
761
|
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb', line 758
def main_type=( arg )
ensure_parsed
@main = arg.downcase
end
|
778
779
780
781
782
783
784
785
786
|
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb', line 778
def params
ensure_parsed
unless @params.blank?
@params.each do |k, v|
@params[k] = unquote(v)
end
end
@params
end
|
763
764
765
766
|
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb', line 763
def sub_type
ensure_parsed
@sub
end
|
#sub_type=(arg) ⇒ Object
768
769
770
771
|
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb', line 768
def sub_type=( arg )
ensure_parsed
@sub = arg.downcase
end
|