actionmailer-rack-upgrade-2 2.3.15
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +387 -0
- data/MIT-LICENSE +21 -0
- data/README +149 -0
- data/Rakefile +97 -0
- data/install.rb +30 -0
- data/lib/action_mailer/adv_attr_accessor.rb +30 -0
- data/lib/action_mailer/base.rb +739 -0
- data/lib/action_mailer/helpers.rb +113 -0
- data/lib/action_mailer/mail_helper.rb +17 -0
- data/lib/action_mailer/part.rb +107 -0
- data/lib/action_mailer/part_container.rb +55 -0
- data/lib/action_mailer/quoting.rb +62 -0
- data/lib/action_mailer/test_case.rb +64 -0
- data/lib/action_mailer/test_helper.rb +68 -0
- data/lib/action_mailer/utils.rb +7 -0
- data/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +1466 -0
- data/lib/action_mailer/vendor/text_format.rb +10 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/Makefile +18 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/address.rb +392 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/attachments.rb +65 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/base64.rb +46 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/compat.rb +41 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/config.rb +67 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/core_extensions.rb +63 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/encode.rb +590 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb +962 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/index.rb +9 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/interface.rb +1162 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/loader.rb +3 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/mail.rb +578 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/mailbox.rb +496 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/main.rb +6 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/mbox.rb +3 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/net.rb +250 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/obsolete.rb +132 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/parser.rb +1060 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/parser.y +416 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/port.rb +379 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/quoting.rb +164 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/require_arch.rb +58 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/scanner.rb +49 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/scanner_r.rb +262 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/stringio.rb +280 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/utils.rb +362 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/COPYING +504 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/README +12 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/big5freq.rb +927 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/big5prober.rb +42 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/chardistribution.rb +238 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/charsetgroupprober.rb +112 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/charsetprober.rb +75 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/codingstatemachine.rb +64 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/constants.rb +42 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/escprober.rb +89 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/escsm.rb +244 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/eucjpprober.rb +88 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euckrfreq.rb +596 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euckrprober.rb +42 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euctwfreq.rb +430 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euctwprober.rb +42 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312freq.rb +474 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312prober.rb +42 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/hebrewprober.rb +289 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/jisfreq.rb +570 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/jpcntx.rb +229 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langbulgarianmodel.rb +229 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langcyrillicmodel.rb +330 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langgreekmodel.rb +227 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langhebrewmodel.rb +202 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langhungarianmodel.rb +226 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langthaimodel.rb +201 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/latin1prober.rb +147 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/mbcharsetprober.rb +89 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/mbcsgroupprober.rb +45 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/mbcssm.rb +542 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sbcharsetprober.rb +124 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sbcsgroupprober.rb +56 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sjisprober.rb +88 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/universaldetector.rb +168 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/utf8prober.rb +87 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet.rb +67 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail/version.rb +39 -0
- data/lib/action_mailer/vendor/tmail-1.2.7/tmail.rb +6 -0
- data/lib/action_mailer/vendor/tmail.rb +17 -0
- data/lib/action_mailer/version.rb +9 -0
- data/lib/action_mailer.rb +62 -0
- data/lib/actionmailer.rb +2 -0
- data/test/abstract_unit.rb +62 -0
- data/test/asset_host_test.rb +54 -0
- data/test/delivery_method_test.rb +51 -0
- data/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
- data/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
- data/test/fixtures/auto_layout_mailer/multipart.text.html.erb +1 -0
- data/test/fixtures/auto_layout_mailer/multipart.text.plain.erb +1 -0
- data/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
- data/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
- data/test/fixtures/first_mailer/share.erb +1 -0
- data/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
- data/test/fixtures/helper_mailer/use_helper.erb +1 -0
- data/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
- data/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
- data/test/fixtures/helpers/example_helper.rb +5 -0
- data/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
- data/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
- data/test/fixtures/layouts/spam.html.erb +1 -0
- data/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
- data/test/fixtures/raw_email +14 -0
- data/test/fixtures/raw_email10 +20 -0
- data/test/fixtures/raw_email12 +32 -0
- data/test/fixtures/raw_email13 +29 -0
- data/test/fixtures/raw_email2 +114 -0
- data/test/fixtures/raw_email3 +70 -0
- data/test/fixtures/raw_email4 +59 -0
- data/test/fixtures/raw_email5 +19 -0
- data/test/fixtures/raw_email6 +20 -0
- data/test/fixtures/raw_email7 +66 -0
- data/test/fixtures/raw_email8 +47 -0
- data/test/fixtures/raw_email9 +28 -0
- data/test/fixtures/raw_email_quoted_with_0d0a +14 -0
- data/test/fixtures/raw_email_with_invalid_characters_in_content_type +104 -0
- data/test/fixtures/raw_email_with_nested_attachment +100 -0
- data/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
- data/test/fixtures/second_mailer/share.erb +1 -0
- data/test/fixtures/templates/signed_up.erb +3 -0
- data/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
- data/test/fixtures/test_mailer/body_ivar.erb +2 -0
- data/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +6 -0
- data/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +6 -0
- data/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
- data/test/fixtures/test_mailer/implicitly_multipart_example.rhtml.bak +1 -0
- data/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +10 -0
- data/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb~ +10 -0
- data/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +2 -0
- data/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +1 -0
- data/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +1 -0
- data/test/fixtures/test_mailer/rxml_template.builder +2 -0
- data/test/fixtures/test_mailer/rxml_template.rxml +2 -0
- data/test/fixtures/test_mailer/signed_up.html.erb +3 -0
- data/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
- data/test/mail_helper_test.rb +95 -0
- data/test/mail_layout_test.rb +123 -0
- data/test/mail_render_test.rb +116 -0
- data/test/mail_service_test.rb +1145 -0
- data/test/quoting_test.rb +105 -0
- data/test/test_helper_test.rb +129 -0
- data/test/tmail_test.rb +22 -0
- data/test/url_test.rb +76 -0
- metadata +209 -0
data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sbcsgroupprober.rb
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
######################## BEGIN LICENSE BLOCK ########################
|
2
|
+
# The Original Code is Mozilla Universal charset detector code.
|
3
|
+
#
|
4
|
+
# The Initial Developer of the Original Code is
|
5
|
+
# Netscape Communications Corporation.
|
6
|
+
# Portions created by the Initial Developer are Copyright (C) 2001
|
7
|
+
# the Initial Developer. All Rights Reserved.
|
8
|
+
#
|
9
|
+
# Contributor(s):
|
10
|
+
# Jeff Hodges - port to Ruby
|
11
|
+
# Mark Pilgrim - port to Python
|
12
|
+
# Shy Shalom - original C code
|
13
|
+
#
|
14
|
+
# This library is free software; you can redistribute it and/or
|
15
|
+
# modify it under the terms of the GNU Lesser General Public
|
16
|
+
# License as published by the Free Software Foundation; either
|
17
|
+
# version 2.1 of the License, or (at your option) any later version.
|
18
|
+
#
|
19
|
+
# This library is distributed in the hope that it will be useful,
|
20
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
21
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
22
|
+
# Lesser General Public License for more details.
|
23
|
+
#
|
24
|
+
# You should have received a copy of the GNU Lesser General Public
|
25
|
+
# License along with this library; if not, write to the Free Software
|
26
|
+
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
27
|
+
# 02110-1301 USA
|
28
|
+
######################### END LICENSE BLOCK #########################
|
29
|
+
|
30
|
+
module CharDet
|
31
|
+
class SBCSGroupProber < CharSetGroupProber
|
32
|
+
def initialize
|
33
|
+
super
|
34
|
+
@_mProbers = [ SingleByteCharSetProber.new(Win1251CyrillicModel),
|
35
|
+
SingleByteCharSetProber.new(Koi8rModel),
|
36
|
+
SingleByteCharSetProber.new(Latin5CyrillicModel),
|
37
|
+
SingleByteCharSetProber.new(MacCyrillicModel),
|
38
|
+
SingleByteCharSetProber.new(Ibm866Model),
|
39
|
+
SingleByteCharSetProber.new(Ibm855Model),
|
40
|
+
SingleByteCharSetProber.new(Latin7GreekModel),
|
41
|
+
SingleByteCharSetProber.new(Win1253GreekModel),
|
42
|
+
SingleByteCharSetProber.new(Latin5BulgarianModel),
|
43
|
+
SingleByteCharSetProber.new(Win1251BulgarianModel),
|
44
|
+
SingleByteCharSetProber.new(Latin2HungarianModel),
|
45
|
+
SingleByteCharSetProber.new(Win1250HungarianModel),
|
46
|
+
SingleByteCharSetProber.new(TIS620ThaiModel) ]
|
47
|
+
hebrewProber = HebrewProber.new()
|
48
|
+
logicalHebrewProber = SingleByteCharSetProber.new(Win1255HebrewModel, false, hebrewProber)
|
49
|
+
visualHebrewProber = SingleByteCharSetProber.new(Win1255HebrewModel, true, hebrewProber)
|
50
|
+
hebrewProber.set_model_probers(logicalHebrewProber, visualHebrewProber)
|
51
|
+
@_mProbers += [hebrewProber, logicalHebrewProber, visualHebrewProber]
|
52
|
+
|
53
|
+
reset()
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sjisprober.rb
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
######################## BEGIN LICENSE BLOCK ########################
|
2
|
+
# The Original Code is mozilla.org code.
|
3
|
+
#
|
4
|
+
# The Initial Developer of the Original Code is
|
5
|
+
# Netscape Communications Corporation.
|
6
|
+
# Portions created by the Initial Developer are Copyright (C) 1998
|
7
|
+
# the Initial Developer. All Rights Reserved.
|
8
|
+
#
|
9
|
+
# Contributor(s):
|
10
|
+
# Jeff Hodges - port to Ruby
|
11
|
+
# Mark Pilgrim - port to Python
|
12
|
+
#
|
13
|
+
# This library is free software; you can redistribute it and/or
|
14
|
+
# modify it under the terms of the GNU Lesser General Public
|
15
|
+
# License as published by the Free Software Foundation; either
|
16
|
+
# version 2.1 of the License, or (at your option) any later version.
|
17
|
+
#
|
18
|
+
# This library is distributed in the hope that it will be useful,
|
19
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
20
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
21
|
+
# Lesser General Public License for more details.
|
22
|
+
#
|
23
|
+
# You should have received a copy of the GNU Lesser General Public
|
24
|
+
# License along with this library; if not, write to the Free Software
|
25
|
+
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
26
|
+
# 02110-1301 USA
|
27
|
+
######################### END LICENSE BLOCK #########################
|
28
|
+
|
29
|
+
module CharDet
|
30
|
+
class SJISProber < MultiByteCharSetProber
|
31
|
+
def initialize
|
32
|
+
super()
|
33
|
+
@_mCodingSM = CodingStateMachine.new(SJISSMModel)
|
34
|
+
@_mDistributionAnalyzer = SJISDistributionAnalysis.new()
|
35
|
+
@_mContextAnalyzer = SJISContextAnalysis.new()
|
36
|
+
reset()
|
37
|
+
end
|
38
|
+
|
39
|
+
def reset
|
40
|
+
super()
|
41
|
+
@_mContextAnalyzer.reset()
|
42
|
+
end
|
43
|
+
|
44
|
+
def get_charset_name
|
45
|
+
return "SHIFT_JIS"
|
46
|
+
end
|
47
|
+
|
48
|
+
def feed(aBuf)
|
49
|
+
aLen = aBuf.length
|
50
|
+
for i in (0...aLen)
|
51
|
+
codingState = @_mCodingSM.next_state(aBuf[i..i])
|
52
|
+
if codingState == EError
|
53
|
+
$stderr << "#{get_charset_name} prober hit error at byte #{i}\n" if $debug
|
54
|
+
@_mState = ENotMe
|
55
|
+
break
|
56
|
+
elsif codingState == EItsMe
|
57
|
+
@_mState = EFoundIt
|
58
|
+
break
|
59
|
+
elsif codingState == EStart
|
60
|
+
charLen = @_mCodingSM.get_current_charlen()
|
61
|
+
if i == 0
|
62
|
+
@_mLastChar[1] = aBuf[0..0]
|
63
|
+
@_mContextAnalyzer.feed(@_mLastChar[2 - charLen..-1], charLen)
|
64
|
+
@_mDistributionAnalyzer.feed(@_mLastChar, charLen)
|
65
|
+
else
|
66
|
+
@_mContextAnalyzer.feed(aBuf[i + 1 - charLen ... i + 3 - charLen], charLen)
|
67
|
+
@_mDistributionAnalyzer.feed(aBuf[i - 1 ... i + 1], charLen)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
@_mLastChar[0] = aBuf[aLen - 1.. aLen-1]
|
73
|
+
|
74
|
+
if get_state() == EDetecting
|
75
|
+
if @_mContextAnalyzer.got_enough_data() and (get_confidence() > SHORTCUT_THRESHOLD)
|
76
|
+
@_mState = EFoundIt
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
return get_state()
|
81
|
+
end
|
82
|
+
|
83
|
+
def get_confidence
|
84
|
+
l = [@_mContextAnalyzer.get_confidence(), @_mDistributionAnalyzer.get_confidence()]
|
85
|
+
return l.max
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
@@ -0,0 +1,168 @@
|
|
1
|
+
# encoding: us-ascii
|
2
|
+
######################## BEGIN LICENSE BLOCK ########################
|
3
|
+
# The Original Code is Mozilla Universal charset detector code.
|
4
|
+
#
|
5
|
+
# The Initial Developer of the Original Code is
|
6
|
+
# Netscape Communications Corporation.
|
7
|
+
# Portions created by the Initial Developer are Copyright (C) 2001
|
8
|
+
# the Initial Developer. All Rights Reserved.
|
9
|
+
#
|
10
|
+
# Contributor(s):
|
11
|
+
# Jeff Hodges - port to Ruby
|
12
|
+
# Mark Pilgrim - port to Python
|
13
|
+
# Shy Shalom - original C code
|
14
|
+
#
|
15
|
+
# This library is free software; you can redistribute it and/or
|
16
|
+
# modify it under the terms of the GNU Lesser General Public
|
17
|
+
# License as published by the Free Software Foundation; either
|
18
|
+
# version 2.1 of the License, or (at your option) any later version.
|
19
|
+
#
|
20
|
+
# This library is distributed in the hope that it will be useful,
|
21
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
22
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
23
|
+
# Lesser General Public License for more details.
|
24
|
+
#
|
25
|
+
# You should have received a copy of the GNU Lesser General Public
|
26
|
+
# License along with this library; if not, write to the Free Software
|
27
|
+
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
28
|
+
# 02110-1301 USA
|
29
|
+
######################### END LICENSE BLOCK #########################
|
30
|
+
|
31
|
+
module CharDet
|
32
|
+
MINIMUM_THRESHOLD = 0.20
|
33
|
+
EPureAscii = 0
|
34
|
+
EEscAscii = 1
|
35
|
+
EHighbyte = 2
|
36
|
+
|
37
|
+
class UniversalDetector
|
38
|
+
attr_accessor :result
|
39
|
+
def initialize
|
40
|
+
@_highBitDetector = /[\x80-\xFF]/
|
41
|
+
@_escDetector = /(\033|\~\{)/
|
42
|
+
@_mEscCharSetProber = nil
|
43
|
+
@_mCharSetProbers = []
|
44
|
+
reset()
|
45
|
+
end
|
46
|
+
|
47
|
+
def reset
|
48
|
+
@result = {'encoding' => nil, 'confidence' => 0.0}
|
49
|
+
@done = false
|
50
|
+
@_mStart = true
|
51
|
+
@_mGotData = false
|
52
|
+
@_mInputState = EPureAscii
|
53
|
+
@_mLastChar = ''
|
54
|
+
if @_mEscCharSetProber
|
55
|
+
@_mEscCharSetProber.reset()
|
56
|
+
end
|
57
|
+
for prober in @_mCharSetProbers
|
58
|
+
prober.reset()
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def feed(aBuf)
|
63
|
+
return if @done
|
64
|
+
|
65
|
+
aLen = aBuf.length
|
66
|
+
return if not aLen
|
67
|
+
|
68
|
+
if not @_mGotData
|
69
|
+
# If the data starts with BOM, we know it is UTF
|
70
|
+
if aBuf[0...3] == "\xEF\xBB\xBF"
|
71
|
+
# EF BB BF UTF-8 with BOM
|
72
|
+
@result = {'encoding' => "UTF-8", 'confidence' => 1.0}
|
73
|
+
elsif aBuf[0...4] == "\xFF\xFE\x00\x00"
|
74
|
+
# FF FE 00 00 UTF-32, little-endian BOM
|
75
|
+
@result = {'encoding' => "UTF-32LE", 'confidence' => 1.0}
|
76
|
+
elsif aBuf[0...4] == "\x00\x00\xFE\xFF"
|
77
|
+
# 00 00 FE FF UTF-32, big-endian BOM
|
78
|
+
@result = {'encoding' => "UTF-32BE", 'confidence' => 1.0}
|
79
|
+
elsif aBuf[0...4] == "\xFE\xFF\x00\x00"
|
80
|
+
# FE FF 00 00 UCS-4, unusual octet order BOM (3412)
|
81
|
+
@result = {'encoding' => "X-ISO-10646-UCS-4-3412", 'confidence' => 1.0}
|
82
|
+
elsif aBuf[0...4] == "\x00\x00\xFF\xFE"
|
83
|
+
# 00 00 FF FE UCS-4, unusual octet order BOM (2143)
|
84
|
+
@result = {'encoding' => "X-ISO-10646-UCS-4-2143", 'confidence' => 1.0}
|
85
|
+
elsif aBuf[0...2] == "\xFF\xFE"
|
86
|
+
# FF FE UTF-16, little endian BOM
|
87
|
+
@result = {'encoding' => "UTF-16LE", 'confidence' => 1.0}
|
88
|
+
elsif aBuf[0...2] == "\xFE\xFF"
|
89
|
+
# FE FF UTF-16, big endian BOM
|
90
|
+
@result = {'encoding' => "UTF-16BE", 'confidence' => 1.0}
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
@_mGotData = true
|
95
|
+
if @result['encoding'] and (@result['confidence'] > 0.0)
|
96
|
+
@done = true
|
97
|
+
return
|
98
|
+
end
|
99
|
+
|
100
|
+
if @_mInputState == EPureAscii
|
101
|
+
if @_highBitDetector =~ (aBuf)
|
102
|
+
@_mInputState = EHighbyte
|
103
|
+
elsif (@_mInputState == EPureAscii) and @_escDetector =~ (@_mLastChar + aBuf)
|
104
|
+
@_mInputState = EEscAscii
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
@_mLastChar = aBuf[-1..-1]
|
109
|
+
if @_mInputState == EEscAscii
|
110
|
+
if not @_mEscCharSetProber
|
111
|
+
@_mEscCharSetProber = EscCharSetProber.new()
|
112
|
+
end
|
113
|
+
if @_mEscCharSetProber.feed(aBuf) == EFoundIt
|
114
|
+
@result = {'encoding' => self._mEscCharSetProber.get_charset_name(),
|
115
|
+
'confidence' => @_mEscCharSetProber.get_confidence()
|
116
|
+
}
|
117
|
+
@done = true
|
118
|
+
end
|
119
|
+
elsif @_mInputState == EHighbyte
|
120
|
+
if not @_mCharSetProbers or @_mCharSetProbers.empty?
|
121
|
+
@_mCharSetProbers = [MBCSGroupProber.new(), SBCSGroupProber.new(), Latin1Prober.new()]
|
122
|
+
end
|
123
|
+
for prober in @_mCharSetProbers
|
124
|
+
if prober.feed(aBuf) == EFoundIt
|
125
|
+
@result = {'encoding' => prober.get_charset_name(),
|
126
|
+
'confidence' => prober.get_confidence()}
|
127
|
+
@done = true
|
128
|
+
break
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
end
|
134
|
+
|
135
|
+
def close
|
136
|
+
return if @done
|
137
|
+
if not @_mGotData
|
138
|
+
$stderr << "no data received!\n" if $debug
|
139
|
+
return
|
140
|
+
end
|
141
|
+
@done = true
|
142
|
+
|
143
|
+
if @_mInputState == EPureAscii
|
144
|
+
@result = {'encoding' => 'ascii', 'confidence' => 1.0}
|
145
|
+
return @result
|
146
|
+
end
|
147
|
+
|
148
|
+
if @_mInputState == EHighbyte
|
149
|
+
confidences = {}
|
150
|
+
@_mCharSetProbers.each{ |prober| confidences[prober] = prober.get_confidence }
|
151
|
+
maxProber = @_mCharSetProbers.max{ |a,b| confidences[a] <=> confidences[b] }
|
152
|
+
if maxProber and maxProber.get_confidence > MINIMUM_THRESHOLD
|
153
|
+
@result = {'encoding' => maxProber.get_charset_name(),
|
154
|
+
'confidence' => maxProber.get_confidence()}
|
155
|
+
return @result
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
if $debug
|
160
|
+
$stderr << "no probers hit minimum threshhold\n" if $debug
|
161
|
+
for prober in @_mCharSetProbers[0]._mProbers
|
162
|
+
next if not prober
|
163
|
+
$stderr << "#{prober.get_charset_name} confidence = #{prober.get_confidence}\n" if $debug
|
164
|
+
end
|
165
|
+
end
|
166
|
+
end
|
167
|
+
end
|
168
|
+
end
|
data/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/utf8prober.rb
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
######################## BEGIN LICENSE BLOCK ########################
|
2
|
+
# The Original Code is mozilla.org code.
|
3
|
+
#
|
4
|
+
# The Initial Developer of the Original Code is
|
5
|
+
# Netscape Communications Corporation.
|
6
|
+
# Portions created by the Initial Developer are Copyright (C) 1998
|
7
|
+
# the Initial Developer. All Rights Reserved.
|
8
|
+
#
|
9
|
+
# Contributor(s):
|
10
|
+
# Jeff Hodges - port to Ruby
|
11
|
+
# Mark Pilgrim - port to Python
|
12
|
+
#
|
13
|
+
# This library is free software; you can redistribute it and/or
|
14
|
+
# modify it under the terms of the GNU Lesser General Public
|
15
|
+
# License as published by the Free Software Foundation; either
|
16
|
+
# version 2.1 of the License, or (at your option) any later version.
|
17
|
+
#
|
18
|
+
# This library is distributed in the hope that it will be useful,
|
19
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
20
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
21
|
+
# Lesser General Public License for more details.
|
22
|
+
#
|
23
|
+
# You should have received a copy of the GNU Lesser General Public
|
24
|
+
# License along with this library; if not, write to the Free Software
|
25
|
+
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
26
|
+
# 02110-1301 USA
|
27
|
+
######################### END LICENSE BLOCK #########################
|
28
|
+
|
29
|
+
module CharDet
|
30
|
+
ONE_CHAR_PROB = 0.5
|
31
|
+
|
32
|
+
class UTF8Prober < CharSetProber
|
33
|
+
def initialize
|
34
|
+
super()
|
35
|
+
@_mCodingSM = CodingStateMachine.new(UTF8SMModel)
|
36
|
+
reset()
|
37
|
+
end
|
38
|
+
|
39
|
+
def reset
|
40
|
+
super()
|
41
|
+
@_mCodingSM.reset()
|
42
|
+
@_mNumOfMBChar = 0
|
43
|
+
end
|
44
|
+
|
45
|
+
def get_charset_name
|
46
|
+
return "utf-8"
|
47
|
+
end
|
48
|
+
|
49
|
+
def feed(aBuf)
|
50
|
+
aBuf.each_byte do |b|
|
51
|
+
c = b.chr
|
52
|
+
codingState = @_mCodingSM.next_state(c)
|
53
|
+
if codingState == EError
|
54
|
+
@_mState = ENotMe
|
55
|
+
break
|
56
|
+
elsif codingState == EItsMe
|
57
|
+
@_mState = EFoundIt
|
58
|
+
break
|
59
|
+
elsif codingState == EStart
|
60
|
+
if @_mCodingSM.get_current_charlen() >= 2
|
61
|
+
@_mNumOfMBChar += 1
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
if get_state() == EDetecting
|
67
|
+
if get_confidence() > SHORTCUT_THRESHOLD
|
68
|
+
@_mState = EFoundIt
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
return get_state()
|
73
|
+
end
|
74
|
+
|
75
|
+
def get_confidence
|
76
|
+
unlike = 0.99
|
77
|
+
if @_mNumOfMBChar < 6
|
78
|
+
for i in (0...@_mNumOfMBChar)
|
79
|
+
unlike = unlike * ONE_CHAR_PROB
|
80
|
+
end
|
81
|
+
return 1.0 - unlike
|
82
|
+
else
|
83
|
+
return unlike
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
######################## BEGIN LICENSE BLOCK ########################
|
2
|
+
# This library is free software; you can redistribute it and/or
|
3
|
+
# modify it under the terms of the GNU Lesser General Public
|
4
|
+
# License as published by the Free Software Foundation; either
|
5
|
+
# version 2.1 of the License, or (at your option) any later version.
|
6
|
+
#
|
7
|
+
# This library is distributed in the hope that it will be useful,
|
8
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
9
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
10
|
+
# Lesser General Public License for more details.
|
11
|
+
#
|
12
|
+
# You should have received a copy of the GNU Lesser General Public
|
13
|
+
# License along with this library; if not, write to the Free Software
|
14
|
+
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
15
|
+
# 02110-1301 USA
|
16
|
+
######################### END LICENSE BLOCK #########################
|
17
|
+
|
18
|
+
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__))
|
19
|
+
|
20
|
+
require 'rchardet/charsetprober'
|
21
|
+
require 'rchardet/mbcharsetprober'
|
22
|
+
|
23
|
+
require 'rchardet/big5freq'
|
24
|
+
require 'rchardet/big5prober'
|
25
|
+
require 'rchardet/chardistribution'
|
26
|
+
require 'rchardet/charsetgroupprober'
|
27
|
+
|
28
|
+
require 'rchardet/codingstatemachine'
|
29
|
+
require 'rchardet/constants'
|
30
|
+
require 'rchardet/escprober'
|
31
|
+
require 'rchardet/escsm'
|
32
|
+
require 'rchardet/eucjpprober'
|
33
|
+
require 'rchardet/euckrfreq'
|
34
|
+
require 'rchardet/euckrprober'
|
35
|
+
require 'rchardet/euctwfreq'
|
36
|
+
require 'rchardet/euctwprober'
|
37
|
+
require 'rchardet/gb2312freq'
|
38
|
+
require 'rchardet/gb2312prober'
|
39
|
+
require 'rchardet/hebrewprober'
|
40
|
+
require 'rchardet/jisfreq'
|
41
|
+
require 'rchardet/jpcntx'
|
42
|
+
require 'rchardet/langbulgarianmodel'
|
43
|
+
require 'rchardet/langcyrillicmodel'
|
44
|
+
require 'rchardet/langgreekmodel'
|
45
|
+
require 'rchardet/langhebrewmodel'
|
46
|
+
require 'rchardet/langhungarianmodel'
|
47
|
+
require 'rchardet/langthaimodel'
|
48
|
+
require 'rchardet/latin1prober'
|
49
|
+
|
50
|
+
require 'rchardet/mbcsgroupprober'
|
51
|
+
require 'rchardet/mbcssm'
|
52
|
+
require 'rchardet/sbcharsetprober'
|
53
|
+
require 'rchardet/sbcsgroupprober'
|
54
|
+
require 'rchardet/sjisprober'
|
55
|
+
require 'rchardet/universaldetector'
|
56
|
+
require 'rchardet/utf8prober'
|
57
|
+
|
58
|
+
module CharDet
|
59
|
+
VERSION = "1.3"
|
60
|
+
def CharDet.detect(aBuf)
|
61
|
+
u = UniversalDetector.new
|
62
|
+
u.reset
|
63
|
+
u.feed(aBuf)
|
64
|
+
u.close
|
65
|
+
u.result
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
#
|
2
|
+
# version.rb
|
3
|
+
#
|
4
|
+
#--
|
5
|
+
# Copyright (c) 1998-2003 Minero Aoki <aamine@loveruby.net>
|
6
|
+
#
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
8
|
+
# a copy of this software and associated documentation files (the
|
9
|
+
# "Software"), to deal in the Software without restriction, including
|
10
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
11
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
12
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
13
|
+
# the following conditions:
|
14
|
+
#
|
15
|
+
# The above copyright notice and this permission notice shall be
|
16
|
+
# included in all copies or substantial portions of the Software.
|
17
|
+
#
|
18
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
19
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
21
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
22
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
23
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
24
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
25
|
+
#
|
26
|
+
# Note: Originally licensed under LGPL v2+. Using MIT license for Rails
|
27
|
+
# with permission of Minero Aoki.
|
28
|
+
#++
|
29
|
+
|
30
|
+
#:stopdoc:
|
31
|
+
module TMail
|
32
|
+
module VERSION
|
33
|
+
MAJOR = 1
|
34
|
+
MINOR = 2
|
35
|
+
TINY = 6
|
36
|
+
|
37
|
+
STRING = [MAJOR, MINOR, TINY].join('.')
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# Prefer gems to the bundled libs.
|
2
|
+
require 'rubygems'
|
3
|
+
|
4
|
+
begin
|
5
|
+
gem 'tmail', '~> 1.2.7'
|
6
|
+
rescue Gem::LoadError
|
7
|
+
$:.unshift "#{File.dirname(__FILE__)}/tmail-1.2.7"
|
8
|
+
end
|
9
|
+
|
10
|
+
module TMail
|
11
|
+
end
|
12
|
+
|
13
|
+
require 'tmail'
|
14
|
+
|
15
|
+
silence_warnings do
|
16
|
+
TMail::Encoder.const_set("MAX_LINE_LEN", 200)
|
17
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2004-2010 David Heinemeier Hansson
|
3
|
+
#
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
# a copy of this software and associated documentation files (the
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
# the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be
|
13
|
+
# included in all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
#++
|
23
|
+
|
24
|
+
begin
|
25
|
+
require 'action_controller'
|
26
|
+
rescue LoadError
|
27
|
+
actionpack_path = "#{File.dirname(__FILE__)}/../../actionpack/lib"
|
28
|
+
if File.directory?(actionpack_path)
|
29
|
+
$:.unshift actionpack_path
|
30
|
+
require 'action_controller'
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
require 'action_view'
|
35
|
+
|
36
|
+
module ActionMailer
|
37
|
+
def self.load_all!
|
38
|
+
[Base, Part, ::Text::Format, ::Net::SMTP]
|
39
|
+
end
|
40
|
+
|
41
|
+
autoload :AdvAttrAccessor, 'action_mailer/adv_attr_accessor'
|
42
|
+
autoload :Base, 'action_mailer/base'
|
43
|
+
autoload :Helpers, 'action_mailer/helpers'
|
44
|
+
autoload :Part, 'action_mailer/part'
|
45
|
+
autoload :PartContainer, 'action_mailer/part_container'
|
46
|
+
autoload :Quoting, 'action_mailer/quoting'
|
47
|
+
autoload :TestCase, 'action_mailer/test_case'
|
48
|
+
autoload :TestHelper, 'action_mailer/test_helper'
|
49
|
+
autoload :Utils, 'action_mailer/utils'
|
50
|
+
end
|
51
|
+
|
52
|
+
module Text
|
53
|
+
autoload :Format, 'action_mailer/vendor/text_format'
|
54
|
+
end
|
55
|
+
|
56
|
+
module Net
|
57
|
+
autoload :SMTP, 'net/smtp'
|
58
|
+
end
|
59
|
+
|
60
|
+
autoload :MailHelper, 'action_mailer/mail_helper'
|
61
|
+
|
62
|
+
require 'action_mailer/vendor/tmail'
|
data/lib/actionmailer.rb
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'test/unit'
|
3
|
+
|
4
|
+
$:.unshift File.expand_path('../../lib', __FILE__)
|
5
|
+
$:.unshift File.expand_path('../../../activesupport/lib', __FILE__)
|
6
|
+
$:.unshift File.expand_path('../../../actionpack/lib', __FILE__)
|
7
|
+
require 'action_mailer'
|
8
|
+
require 'action_mailer/test_case'
|
9
|
+
|
10
|
+
# Show backtraces for deprecated behavior for quicker cleanup.
|
11
|
+
ActiveSupport::Deprecation.debug = true
|
12
|
+
|
13
|
+
# Bogus template processors
|
14
|
+
ActionView::Template.register_template_handler :haml, lambda { |template| "Look its HAML!".inspect }
|
15
|
+
ActionView::Template.register_template_handler :bak, lambda { |template| "Lame backup".inspect }
|
16
|
+
|
17
|
+
$:.unshift "#{File.dirname(__FILE__)}/fixtures/helpers"
|
18
|
+
|
19
|
+
ActionView::Base.cache_template_loading = true
|
20
|
+
FIXTURE_LOAD_PATH = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures'))
|
21
|
+
ActionMailer::Base.template_root = FIXTURE_LOAD_PATH
|
22
|
+
|
23
|
+
class MockSMTP
|
24
|
+
def self.deliveries
|
25
|
+
@@deliveries
|
26
|
+
end
|
27
|
+
|
28
|
+
def initialize
|
29
|
+
@@deliveries = []
|
30
|
+
end
|
31
|
+
|
32
|
+
def sendmail(mail, from, to)
|
33
|
+
@@deliveries << [mail, from, to]
|
34
|
+
end
|
35
|
+
|
36
|
+
def start(*args)
|
37
|
+
yield self
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
class Net::SMTP
|
42
|
+
def self.new(*args)
|
43
|
+
MockSMTP.new
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def uses_gem(gem_name, test_name, version = '> 0')
|
48
|
+
gem gem_name.to_s, version
|
49
|
+
require gem_name.to_s
|
50
|
+
yield
|
51
|
+
rescue LoadError
|
52
|
+
$stderr.puts "Skipping #{test_name} tests. `gem install #{gem_name}` and try again."
|
53
|
+
end
|
54
|
+
|
55
|
+
def set_delivery_method(delivery_method)
|
56
|
+
@old_delivery_method = ActionMailer::Base.delivery_method
|
57
|
+
ActionMailer::Base.delivery_method = delivery_method
|
58
|
+
end
|
59
|
+
|
60
|
+
def restore_delivery_method
|
61
|
+
ActionMailer::Base.delivery_method = @old_delivery_method
|
62
|
+
end
|