tmail 1.2.3.1 → 1.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +10 -0
- data/ext/tmailscanner/tmail/tmailscanner.c +39 -8
- data/lib/tmail.rb +1 -0
- data/lib/tmail/address.rb +6 -40
- data/lib/tmail/attachments.rb +41 -22
- data/lib/tmail/encode.rb +9 -0
- data/lib/tmail/header.rb +5 -3
- data/lib/tmail/interface.rb +40 -3
- data/lib/tmail/mail.rb +3 -3
- data/lib/tmail/mailbox.rb +3 -2
- data/lib/tmail/net.rb +3 -1
- data/lib/tmail/parser.rb +204 -620
- data/lib/tmail/parser.y +38 -3
- data/lib/tmail/quoting.rb +38 -1
- data/lib/tmail/utils.rb +28 -4
- data/lib/tmail/vendor/rchardet-1.3/COPYING +504 -0
- data/lib/tmail/vendor/rchardet-1.3/README +12 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet.rb +67 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/big5freq.rb +927 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/big5prober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/chardistribution.rb +237 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/charsetgroupprober.rb +112 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/charsetprober.rb +75 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/codingstatemachine.rb +64 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/constants.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/escprober.rb +90 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/escsm.rb +244 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/eucjpprober.rb +88 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euckrfreq.rb +596 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euckrprober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euctwfreq.rb +430 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euctwprober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312freq.rb +474 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312prober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/hebrewprober.rb +289 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/jisfreq.rb +570 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/jpcntx.rb +229 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langbulgarianmodel.rb +229 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langcyrillicmodel.rb +330 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langgreekmodel.rb +227 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langhebrewmodel.rb +202 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langhungarianmodel.rb +226 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langthaimodel.rb +201 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/latin1prober.rb +147 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcharsetprober.rb +89 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcsgroupprober.rb +47 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcssm.rb +542 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sbcharsetprober.rb +124 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sbcsgroupprober.rb +58 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sjisprober.rb +88 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/universaldetector.rb +166 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/utf8prober.rb +87 -0
- data/lib/tmail/version.rb +1 -1
- data/setup.rb +2 -2
- data/test/fixtures/apple_unquoted_content_type +44 -0
- data/test/fixtures/inline_attachment.txt +2095 -0
- data/test/fixtures/iso_8859_1_email_without_encoding_and_message_id.txt +16 -0
- data/test/fixtures/mailbox.zip +0 -0
- data/test/fixtures/marked_as_iso_8859_1_but_it_is_utf_8.txt +33 -0
- data/test/fixtures/marked_as_utf_8_but_it_is_iso_8859_1.txt +56 -0
- data/test/fixtures/raw_email_bad_time +62 -0
- data/test/fixtures/raw_email_double_at_in_header +14 -0
- data/test/fixtures/raw_email_only_attachment +17 -0
- data/test/fixtures/raw_email_string_in_date_field +17 -0
- data/test/fixtures/raw_email_trailing_dot +21 -0
- data/test/fixtures/raw_email_with_quoted_attachment_filename +60 -0
- data/test/fixtures/raw_email_with_wrong_splitted_multibyte_encoded_word_subject +15 -0
- data/test/fixtures/the_only_part_is_a_word_document.txt +425 -0
- data/test/fixtures/unquoted_filename_in_attachment +177 -0
- data/test/test_address.rb +114 -92
- data/test/test_attachments.rb +84 -1
- data/test/test_encode.rb +54 -0
- data/test/test_header.rb +60 -2
- data/test/test_mail.rb +22 -15
- data/test/test_mbox.rb +12 -3
- data/test/test_port.rb +13 -9
- data/test/test_quote.rb +9 -0
- data/tmail.gemspec +34 -0
- metadata +68 -167
- data/MANIFEST +0 -191
- data/log/BugTrackingLog.txt +0 -1231
- data/log/Changelog.txt +0 -534
- data/log/Fixme.txt +0 -6
- data/log/Testlog.txt +0 -2340
- data/log/Todo.txt +0 -30
- data/log/fixme.rdoc +0 -6
- data/meta/MANIFEST +0 -128
- data/meta/VERSION +0 -1
- data/meta/project.yaml +0 -30
- data/meta/unixname +0 -1
- data/sample/bench_base64.rb +0 -48
- data/sample/data/multipart +0 -23
- data/sample/data/normal +0 -29
- data/sample/data/sendtest +0 -5
- data/sample/data/simple +0 -14
- data/sample/data/test +0 -27
- data/sample/extract-attachements.rb +0 -33
- data/sample/from-check.rb +0 -26
- data/sample/multipart.rb +0 -26
- data/sample/parse-bench.rb +0 -68
- data/sample/parse-test.rb +0 -19
- data/sample/sendmail.rb +0 -94
- data/site/contributing/index.html +0 -183
- data/site/css/clean.css +0 -27
- data/site/css/layout.css +0 -31
- data/site/css/style.css +0 -60
- data/site/download/index.html +0 -61
- data/site/img/envelope.jpg +0 -0
- data/site/img/mailman.gif +0 -0
- data/site/img/stamp-sm.jpg +0 -0
- data/site/img/stamp.jpg +0 -0
- data/site/img/stampborder.jpg +0 -0
- data/site/img/tfire.jpg +0 -0
- data/site/img/tmail.png +0 -0
- data/site/index.html +0 -270
- data/site/js/jquery.js +0 -31
- data/site/log/Changelog.xsl +0 -33
- data/site/log/changelog.xml +0 -1677
- data/site/outdated/BUGS +0 -3
- data/site/outdated/DEPENDS +0 -1
- data/site/outdated/Incompatibilities +0 -89
- data/site/outdated/Incompatibilities.ja +0 -102
- data/site/outdated/NEWS +0 -9
- data/site/outdated/README.ja +0 -73
- data/site/outdated/doc.ja/address.html +0 -275
- data/site/outdated/doc.ja/basics.html +0 -405
- data/site/outdated/doc.ja/config.html +0 -49
- data/site/outdated/doc.ja/details.html +0 -146
- data/site/outdated/doc.ja/index.html +0 -39
- data/site/outdated/doc.ja/mail.html +0 -793
- data/site/outdated/doc.ja/mailbox.html +0 -265
- data/site/outdated/doc.ja/port.html +0 -95
- data/site/outdated/doc.ja/tmail.html +0 -58
- data/site/outdated/doc.ja/usage.html +0 -202
- data/site/outdated/rdd/address.rrd.m +0 -229
- data/site/outdated/rdd/basics.rd.m +0 -275
- data/site/outdated/rdd/config.rrd.m +0 -26
- data/site/outdated/rdd/details.rd.m +0 -117
- data/site/outdated/rdd/index.rhtml.m +0 -54
- data/site/outdated/rdd/mail.rrd.m +0 -701
- data/site/outdated/rdd/mailbox.rrd.m +0 -228
- data/site/outdated/rdd/port.rrd.m +0 -69
- data/site/outdated/rdd/tmail.rrd.m +0 -33
- data/site/outdated/rdd/usage.rd.m +0 -247
- data/site/quickstart/index.html +0 -69
- data/site/quickstart/quickstart.html +0 -52
- data/site/quickstart/usage.html +0 -193
- data/site/reference/address.html +0 -247
- data/site/reference/config.html +0 -30
- data/site/reference/index.html +0 -101
- data/site/reference/mail.html +0 -726
- data/site/reference/mailbox.html +0 -245
- data/site/reference/port.html +0 -75
- data/site/reference/tmail.html +0 -35
- data/work/script/make +0 -26
- data/work/script/rdoc +0 -39
- data/work/script/setup +0 -1616
- data/work/script/test +0 -30
data/site/download/index.html
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
-
<html lang="en">
|
3
|
-
<head>
|
4
|
-
<title>TMail — A Ruby Email Handler</title>
|
5
|
-
|
6
|
-
<link rel="icon" href="../img/tfire.jpg" type="image/x-icon"/>
|
7
|
-
|
8
|
-
<link rel="stylesheet" href="../css/clean.css" type="text/css" media="screen, projection, print"/>
|
9
|
-
<link rel="stylesheet" href="../css/layout.css" type="text/css" media="screen, projection, print"/>
|
10
|
-
<link rel="stylesheet" href="../css/style.css" type="text/css" media="screen, projection, print"/>
|
11
|
-
|
12
|
-
<META HTTP-EQUIV="Refresh" CONTENT="1; URL=http://rubyforge.org/frs/?group_id=4512">
|
13
|
-
|
14
|
-
</head>
|
15
|
-
<body>
|
16
|
-
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
17
|
-
</script>
|
18
|
-
<script type="text/javascript">
|
19
|
-
_uacct = "UA-2871747-1";
|
20
|
-
urchinTracker();
|
21
|
-
</script>
|
22
|
-
<div class="container">
|
23
|
-
<div style="height: 155px;">
|
24
|
-
<div class="logo">
|
25
|
-
<img id="logo_img" src="../img/stamp-sm.jpg"/>
|
26
|
-
</div>
|
27
|
-
|
28
|
-
<div class="title">
|
29
|
-
<h1>TMail</h1>
|
30
|
-
<h2>Ruby on Mail</h2>
|
31
|
-
</div>
|
32
|
-
|
33
|
-
<div class="menu">
|
34
|
-
|
35
|
-
<a href="../index.html">Home</a>
|
36
|
-
<a href="../quickstart/index.html">Quickstart</a>
|
37
|
-
<a href="http://lindsaar.net/tmail/" onClick="javascript:urchinTracker('/outgoing/rubyforge.org/blog_page');">Blog</a>
|
38
|
-
<a href="http://rubyforge.org/frs/?group_id=4512" onClick="javascript:urchinTracker('/outgoing/rubyforge.org/download_page');">Download</a>
|
39
|
-
<a href="http://rubyforge.org/mailman/listinfo/tmail-talk">Mailing List</a>
|
40
|
-
<a href="../reference/index.html">Reference</a>
|
41
|
-
<a href="../rdoc/index.html">RDocs</a>
|
42
|
-
<a href="http://rubyforge.org/projects/tmail/" onClick="javascript:urchinTracker('/outgoing/rubyforge.org/project_page');">Project</a>
|
43
|
-
<a href="../contributing/index.html">Contributing</a>
|
44
|
-
</div>
|
45
|
-
</div>
|
46
|
-
<div class="main">
|
47
|
-
<h1>Ruby Email Handler</h1>
|
48
|
-
|
49
|
-
<div class="about">
|
50
|
-
|
51
|
-
You are about to be redirected to the Ruby Forge download page at <a
|
52
|
-
href="http://rubyforge.org/frs/?group_id=4512">http://rubyforge.org/frs/?group_id=4512/</a>.
|
53
|
-
|
54
|
-
</div>
|
55
|
-
|
56
|
-
<div class="footer">
|
57
|
-
Copyright (c) 2007 TMail Project ® All Rights Reserved
|
58
|
-
</div>
|
59
|
-
</div>
|
60
|
-
</body>
|
61
|
-
</html>
|
data/site/img/envelope.jpg
DELETED
Binary file
|
data/site/img/mailman.gif
DELETED
Binary file
|
data/site/img/stamp-sm.jpg
DELETED
Binary file
|
data/site/img/stamp.jpg
DELETED
Binary file
|
data/site/img/stampborder.jpg
DELETED
Binary file
|
data/site/img/tfire.jpg
DELETED
Binary file
|
data/site/img/tmail.png
DELETED
Binary file
|
data/site/index.html
DELETED
@@ -1,270 +0,0 @@
|
|
1
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
-
<html lang="en">
|
3
|
-
<head>
|
4
|
-
<title>TMail — A Ruby Email Handler</title>
|
5
|
-
|
6
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf8">
|
7
|
-
<meta http-equiv="Content-Language" content="en">
|
8
|
-
|
9
|
-
<link rel="stylesheet" href="css/clean.css" type="text/css" media="screen, projection, print"/>
|
10
|
-
<link rel="stylesheet" href="css/layout.css" type="text/css" media="screen, projection, print"/>
|
11
|
-
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen, projection, print"/>
|
12
|
-
|
13
|
-
<link rel="icon" href="img/tfire.jpg" type="image/x-icon"/>
|
14
|
-
|
15
|
-
<script type="text/javascript" src="js/jquery.js"></script>
|
16
|
-
|
17
|
-
<script>
|
18
|
-
$(document).ready(function(){
|
19
|
-
$("#logo_img").hover(function () {
|
20
|
-
$(this).fadeOut('normal', function() {
|
21
|
-
$(this).attr('src', 'img/mailman.gif');
|
22
|
-
$(this).fadeIn('normal');
|
23
|
-
});
|
24
|
-
}, function () {
|
25
|
-
$(this).fadeOut('normal', function() {
|
26
|
-
$(this).attr('src', 'img/stamp-sm.jpg');
|
27
|
-
$(this).fadeIn('normal');
|
28
|
-
});
|
29
|
-
});
|
30
|
-
});
|
31
|
-
</script>
|
32
|
-
</head>
|
33
|
-
<body>
|
34
|
-
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
35
|
-
</script>
|
36
|
-
<script type="text/javascript">
|
37
|
-
_uacct = "UA-2871747-1";
|
38
|
-
urchinTracker();
|
39
|
-
</script>
|
40
|
-
|
41
|
-
<div class="container">
|
42
|
-
|
43
|
-
<div style="height: 155px;">
|
44
|
-
<div class="logo">
|
45
|
-
<img id="logo_img" src="img/stamp-sm.jpg"/>
|
46
|
-
</div>
|
47
|
-
|
48
|
-
<div class="title">
|
49
|
-
<h1>TMail</h1>
|
50
|
-
<h2>Ruby on Mail</h2>
|
51
|
-
</div>
|
52
|
-
|
53
|
-
<div class="menu">
|
54
|
-
|
55
|
-
<a href="index.html">Home</a>
|
56
|
-
<a href="/quickstart/index.html">Quickstart</a>
|
57
|
-
<a href="http://lindsaar.net/tmail/" onClick="javascript:urchinTracker('/outgoing/rubyforge.org/blog_page');">Blog</a>
|
58
|
-
<a href="http://rubyforge.org/frs/?group_id=4512" onClick="javascript:urchinTracker('/outgoing/rubyforge.org/download_page');">Download</a>
|
59
|
-
<a href="http://rubyforge.org/mailman/listinfo/tmail-talk">Mailing List</a>
|
60
|
-
<a href="./reference/index.html">Reference</a>
|
61
|
-
<a href="./rdoc/index.html">RDocs</a>
|
62
|
-
<a href="http://rubyforge.org/projects/tmail/" onClick="javascript:urchinTracker('/outgoing/rubyforge.org/project_page');">Project</a>
|
63
|
-
<a href="./contributing/index.html">Contributing</a>
|
64
|
-
</div>
|
65
|
-
</div>
|
66
|
-
|
67
|
-
<div class="main">
|
68
|
-
<h1>Ruby Email Handler</h1>
|
69
|
-
|
70
|
-
<div class="about">
|
71
|
-
<p>TMail is an email handler library for Ruby. TMail can
|
72
|
-
extract data from mail, and write data to mail following
|
73
|
-
the relevant RFCs on the subject.</p>
|
74
|
-
|
75
|
-
<p>You can get the latest version of TMail from the TMail
|
76
|
-
<a href="http://rubyforge.org/frs/?group_id=4512&release_id=15889"
|
77
|
-
title="RubyForge: TMail: Project Filelist">RubyForge</a> project
|
78
|
-
or via Ruby Gems "tmail"</p>
|
79
|
-
|
80
|
-
<p>TMail is written in Ruby and a (very) small bit of supporting C
|
81
|
-
that has pure ruby replacements if you can't compile on your computer.
|
82
|
-
This means TMail will work, out of the box, on any platform that
|
83
|
-
can run Ruby 1.8 or Ruby 1.9.</p>
|
84
|
-
|
85
|
-
<p>TMail is a commonly used library and is production ready. The
|
86
|
-
ActionMailer component of Ruby on Rails uses it as well as the the
|
87
|
-
Nitro web framework and many and others - including the Ruby-Talk mail gateway.</p>
|
88
|
-
|
89
|
-
<p>What TMail does is allow you to play with Emails like you would
|
90
|
-
any Ruby object. So to change the To address of an email, instead
|
91
|
-
of something like:</p>
|
92
|
-
|
93
|
-
<pre class="ruby">
|
94
|
-
my_message = "From mikel@example.org\nReceived by.... etc"
|
95
|
-
my_message.sub(/^To: .*?@.*?$/, "To: mikel@elsewhere.org")
|
96
|
-
</pre>
|
97
|
-
|
98
|
-
<p>Which (a) will break easily and (b) is just not the Ruby-Way™ You can do:</p>
|
99
|
-
|
100
|
-
<pre class="ruby">
|
101
|
-
email = TMail::Mail.parse("From mikel@example.org\nReceived by.... etc")
|
102
|
-
email['to'] = 'mikel@elsewhere.org'
|
103
|
-
</pre>
|
104
|
-
|
105
|
-
<p>And TMail will take care of the details. Isn't that nicer?</p>
|
106
|
-
|
107
|
-
<p>TMail was created by Minero Aoki. It is currently maintained
|
108
|
-
by <a href="http://lindsaar.net/">Mikel</a> and Trans as
|
109
|
-
a <a href="http://rubyforge.org/projects/tmail/"
|
110
|
-
title="RubyForge: TMail: Project Info">RubyForge Project</a> .</p>
|
111
|
-
|
112
|
-
<p>For the impatient there is a <a href="quickstart/index.html">
|
113
|
-
quickstart</a> guide that will get you up and running with TMail
|
114
|
-
in a few minutes, for the rest, there is the full documentation by
|
115
|
-
<a href="rdoc/index.html">RDoc</a> (comming soon) as well as an online
|
116
|
-
<a href="manual/index.html">user manual</a> (needs updating).</p>
|
117
|
-
</div>
|
118
|
-
|
119
|
-
<div class="important_note">
|
120
|
-
<h2>Important Note For Rails and Nitro Users</h2>
|
121
|
-
|
122
|
-
<p>If you are using the Rails or the Nitro Web Framework, and are reading this
|
123
|
-
page, you probably know that your framework of choice uses TMail as it's email
|
124
|
-
handler library already.</p>
|
125
|
-
|
126
|
-
<p>What you may not know, is that if you install the latest TMail gem, your
|
127
|
-
library will use the latest Gem version. Nitro does this because it lists
|
128
|
-
TMail as a dependency, Rails does this because since 2.0RC1, the ActionMailer
|
129
|
-
section of Rails checks for a newer version of the TMail gem as it is loading
|
130
|
-
up and if it finds a Gem version newer than 1.1.0, it will load the Gem version
|
131
|
-
instead of the bundled version.</p>
|
132
|
-
|
133
|
-
<p>So to take advantage of the bug fixes, you can do:</p>
|
134
|
-
|
135
|
-
<pre class="shell">
|
136
|
-
$ sudo gem install tmail
|
137
|
-
</pre>
|
138
|
-
|
139
|
-
<p>And get the latest version installed (1.2) and your web framework will
|
140
|
-
automatically update.</p>
|
141
|
-
|
142
|
-
<p>Rails 1.2 can not do this directly, but if you go to the
|
143
|
-
<a href="http://lindsaar.net/2007/12/11/using-tmail-gem-in-rails-1-2-6"
|
144
|
-
title="lindsaar.net Using TMail Gem in Rails 1.2.6">TMail blog</a>, I have
|
145
|
-
written up how to patch ActionMailer 1.2.x to load the gem version of TMail
|
146
|
-
in preference to the bundled version.</p>
|
147
|
-
|
148
|
-
</div>
|
149
|
-
|
150
|
-
<div class="news">
|
151
|
-
<h2>News</h2>
|
152
|
-
|
153
|
-
<ul>
|
154
|
-
<li>15th of January, 2007
|
155
|
-
<a href="http://rubyforge.org/forum/forum.php?forum_id=20747">
|
156
|
-
TMail Trunk is now compatible with Ruby 1.9</a> - Next release (1.2.2) will include this 1.9 compatibility, if you need this now, you can get it by getting the source code with 'svn checkout -r 197 http://tmail.rubyforge.org/svn/trunk/ TMail'
|
157
|
-
</li>
|
158
|
-
<li>11th of January, 2007
|
159
|
-
<a href="http://rubyforge.org/frs/?group_id=4512&release_id=18049">
|
160
|
-
New Release - 1.2.1</a> - Bug fixes on address handling as well as unix mailbox handling. More documentation and tests as well.
|
161
|
-
</li>
|
162
|
-
<li>14th of December, 2007
|
163
|
-
<a href="http://tmail.rubyforge.org/rdoc/index.html">
|
164
|
-
New RDoc Put online</a> - Fixed up and released a lot more examples and comments for the TMail::Mail class.
|
165
|
-
</li>
|
166
|
-
<li>2nd of December, 2007
|
167
|
-
<a href="https://rubyforge.org/frs/?group_id=4512&release_id=16737">
|
168
|
-
New Release - 1.2.0</a> - bug fixes for Attachments and the pure Ruby version of Scanner
|
169
|
-
</li>
|
170
|
-
<li>19th of November, 2007
|
171
|
-
<a href="http://rubyforge.org/tracker/index.php?func=detail&aid=15445&group_id=4512&atid=17370">
|
172
|
-
Create forward now returns a mail object in trunk</a>
|
173
|
-
</li>
|
174
|
-
<li>8th of November, 2007
|
175
|
-
<a href="http://rubyforge.org/forum/forum.php?forum_id=18816">
|
176
|
-
New Release - 1.1.1</a> - bug fixes & Windows/Unix in one Gem
|
177
|
-
</li>
|
178
|
-
<li> 30th of October, 2007
|
179
|
-
<a href="http://rubyforge.org/forum/forum.php?forum_id=18551">
|
180
|
-
New Release - 1.1.0</a> - Now a Gem!
|
181
|
-
</li>
|
182
|
-
<li> 24th of October, 2007
|
183
|
-
<a href="http://rubyforge.org/frs/?group_id=4512&release_id=15695">
|
184
|
-
New Release - 0.11.0
|
185
|
-
</a>
|
186
|
-
</li>
|
187
|
-
<li> 23rd of October, 2007
|
188
|
-
<a href="http://rubyforge.org/forum/forum.php?forum_id=18391">
|
189
|
-
TMail Talk Mailing List Created
|
190
|
-
</a>
|
191
|
-
</li>
|
192
|
-
</ul>
|
193
|
-
|
194
|
-
<br />
|
195
|
-
<a href="http://rubyforge.org/news/?group_id=4512">More TMail News...</a>
|
196
|
-
</div>
|
197
|
-
|
198
|
-
<br />
|
199
|
-
|
200
|
-
<div class="docs">
|
201
|
-
<h2>Documentation</h2>
|
202
|
-
|
203
|
-
<p>Documentation is the focus of development right now, so be sure to check
|
204
|
-
back with what is happening. Each new release adds some more documentation
|
205
|
-
to the mix. If you want to help out, please let us know!</p>
|
206
|
-
|
207
|
-
<p>In the mean time, you can select from below, you can also always ask questions
|
208
|
-
to the <a href="http://rubyforge.org/mailman/listinfo/tmail-talk">TMail-Talk</a>
|
209
|
-
Mailing list and we will do our best to answer.</p>
|
210
|
-
|
211
|
-
<ul>
|
212
|
-
<li><a href="quickstart/index.html">Quick Start Guide</a></li>
|
213
|
-
<li><a href="manual/index.html">User Manual - needs updating</a></li>
|
214
|
-
<li><a href="rdoc/index.html">RDocs - now online!</a></li>
|
215
|
-
</ul>
|
216
|
-
</div>
|
217
|
-
|
218
|
-
<br />
|
219
|
-
|
220
|
-
<div class="development">
|
221
|
-
<h2>Developement</h2>
|
222
|
-
|
223
|
-
<p>
|
224
|
-
If you want to help with the TMail project, please see our
|
225
|
-
<a href="http://tmail.rubyforge.org/contributing/index.html"
|
226
|
-
title="TMail — Contributing to the best Ruby email handler ever!">
|
227
|
-
contributing to TMail</a> page.
|
228
|
-
</p>
|
229
|
-
|
230
|
-
<p>Right now we could do with a lot of documentation work, dive in and send
|
231
|
-
your patches!</p>
|
232
|
-
|
233
|
-
<p>For the impatient, anonymous subversion repository is accessable via:</p>
|
234
|
-
|
235
|
-
<pre class="shell">
|
236
|
-
$ svn checkout http://tmail.rubyforge.org/svn/trunk/ tmail
|
237
|
-
</pre>
|
238
|
-
|
239
|
-
<p>Use the following links to view or sumbit Bugs, Patches and Feature Requests:</p>
|
240
|
-
<ul>
|
241
|
-
<li>
|
242
|
-
<a href="http://rubyforge.org/tracker/?group_id=4512">
|
243
|
-
Review All
|
244
|
-
</a>
|
245
|
-
</li>
|
246
|
-
<li>
|
247
|
-
<a href="http://rubyforge.org/tracker/?func=add&group_id=4512&atid=17370">
|
248
|
-
Report a Bug
|
249
|
-
</a>
|
250
|
-
</li>
|
251
|
-
<li>
|
252
|
-
<a href="http://rubyforge.org/tracker/?func=add&group_id=4512&atid=17373">
|
253
|
-
Request a Feature
|
254
|
-
</a>
|
255
|
-
</li>
|
256
|
-
<li>
|
257
|
-
<a href="http://rubyforge.org/tracker/?func=add&group_id=4512&atid=17372">
|
258
|
-
Submit a Patch
|
259
|
-
</a>
|
260
|
-
</li>
|
261
|
-
</ul>
|
262
|
-
</div>
|
263
|
-
|
264
|
-
</div>
|
265
|
-
<div class="footer">
|
266
|
-
Copyright (c) 2007 TMail Project ® All Rights Reserved
|
267
|
-
</div>
|
268
|
-
</div>
|
269
|
-
</body>
|
270
|
-
</html>
|
data/site/js/jquery.js
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* jQuery 1.2.1 - New Wave Javascript
|
3
|
-
*
|
4
|
-
* Copyright (c) 2007 John Resig (jquery.com)
|
5
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
6
|
-
* and GPL (GPL-LICENSE.txt) licenses.
|
7
|
-
*
|
8
|
-
* $Date: 2007-09-16 23:42:06 -0400 (Sun, 16 Sep 2007) $
|
9
|
-
* $Rev: 3353 $
|
10
|
-
*/
|
11
|
-
(function(){if(typeof jQuery!="undefined")var _jQuery=jQuery;var jQuery=window.jQuery=function(selector,context){return this instanceof jQuery?this.init(selector,context):new jQuery(selector,context);};if(typeof $!="undefined")var _$=$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(typeof selector=="string"){var m=quickExpr.exec(selector);if(m&&(m[1]||!context)){if(m[1])selector=jQuery.clean([m[1]],context);else{var tmp=document.getElementById(m[3]);if(tmp)if(tmp.id!=m[3])return jQuery().find(selector);else{this[0]=tmp;this.length=1;return this;}else
|
12
|
-
selector=[];}}else
|
13
|
-
return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"1.2.1",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(a){var ret=jQuery(a);ret.prevObject=this;return ret;},setArray:function(a){this.length=0;Array.prototype.push.apply(this,a);return this;},each:function(fn,args){return jQuery.each(this,fn,args);},index:function(obj){var pos=-1;this.each(function(i){if(this==obj)pos=i;});return pos;},attr:function(key,value,type){var obj=key;if(key.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],key)||undefined;else{obj={};obj[key]=value;}return this.each(function(index){for(var prop in obj)jQuery.attr(type?this.style:this,prop,jQuery.prop(this,obj[prop],type,index,prop));});},css:function(key,value){return this.attr(key,value,"curCSS");},text:function(e){if(typeof e!="object"&&e!=null)return this.empty().append(document.createTextNode(e));var t="";jQuery.each(e||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)t+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return t;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,1,function(a){this.appendChild(a);});},prepend:function(){return this.domManip(arguments,true,-1,function(a){this.insertBefore(a,this.firstChild);});},before:function(){return this.domManip(arguments,false,1,function(a){this.parentNode.insertBefore(a,this);});},after:function(){return this.domManip(arguments,false,-1,function(a){this.parentNode.insertBefore(a,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(t){var data=jQuery.map(this,function(a){return jQuery.find(t,a);});return this.pushStack(/[^+>] [^+>]/.test(t)||t.indexOf("..")>-1?jQuery.unique(data):data);},clone:function(events){var ret=this.map(function(){return this.outerHTML?jQuery(this.outerHTML)[0]:this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(t){return this.pushStack(jQuery.isFunction(t)&&jQuery.grep(this,function(el,index){return t.apply(el,[index]);})||jQuery.multiFilter(t,this));},not:function(t){return this.pushStack(t.constructor==String&&jQuery.multiFilter(t,this,true)||jQuery.grep(this,function(a){return(t.constructor==Array||t.jquery)?jQuery.inArray(a,t)<0:a!=t;}));},add:function(t){return this.pushStack(jQuery.merge(this.get(),t.constructor==String?jQuery(t).get():t.length!=undefined&&(!t.nodeName||jQuery.nodeName(t,"form"))?t:[t]));},is:function(expr){return expr?jQuery.multiFilter(expr,this).length>0:false;},hasClass:function(expr){return this.is("."+expr);},val:function(val){if(val==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,a=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){var val=jQuery.browser.msie&&!option.attributes["value"].specified?option.text:option.value;if(one)return val;a.push(val);}}return a;}else
|
14
|
-
return this[0].value.replace(/\r/g,"");}}else
|
15
|
-
return this.each(function(){if(val.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,val)>=0||jQuery.inArray(this.name,val)>=0);else if(jQuery.nodeName(this,"select")){var tmp=val.constructor==Array?val:[val];jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,tmp)>=0||jQuery.inArray(this.text,tmp)>=0);});if(!tmp.length)this.selectedIndex=-1;}else
|
16
|
-
this.value=val;});},html:function(val){return val==undefined?(this.length?this[0].innerHTML:null):this.empty().append(val);},replaceWith:function(val){return this.after(val).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(fn){return this.pushStack(jQuery.map(this,function(elem,i){return fn.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},domManip:function(args,table,dir,fn){var clone=this.length>1,a;return this.each(function(){if(!a){a=jQuery.clean(args,this.ownerDocument);if(dir<0)a.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(a[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(document.createElement("tbody"));jQuery.each(a,function(){var elem=clone?this.cloneNode(true):this;if(!evalScript(0,elem))fn.call(obj,elem);});});}};function evalScript(i,elem){var script=jQuery.nodeName(elem,"script");if(script){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
|
17
|
-
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}else if(elem.nodeType==1)jQuery("script",elem).each(evalScript);return script;}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},a=1,al=arguments.length,deep=false;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};}if(al==1){target=this;a=0;}var prop;for(;a<al;a++)if((prop=arguments[a])!=null)for(var i in prop){if(target==prop[i])continue;if(deep&&typeof prop[i]=='object'&&target[i])jQuery.extend(target[i],prop[i]);else if(prop[i]!=undefined)target[i]=prop[i];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,win={};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){if(window.execScript)window.execScript(data);else if(jQuery.browser.safari)window.setTimeout(data,0);else
|
18
|
-
eval.call(window,data);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?win:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!=undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?win:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(obj,fn,args){if(args){if(obj.length==undefined)for(var i in obj)fn.apply(obj[i],args);else
|
19
|
-
for(var i=0,ol=obj.length;i<ol;i++)if(fn.apply(obj[i],args)===false)break;}else{if(obj.length==undefined)for(var i in obj)fn.call(obj[i],i,obj[i]);else
|
20
|
-
for(var i=0,ol=obj.length,val=obj[0];i<ol&&fn.call(val,i,val)!==false;val=obj[++i]){}}return obj;},prop:function(elem,value,type,index,prop){if(jQuery.isFunction(value))value=value.call(elem,[index]);var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(prop)?value+"px":value;},className:{add:function(elem,c){jQuery.each((c||"").split(/\s+/),function(i,cur){if(!jQuery.className.has(elem.className,cur))elem.className+=(elem.className?" ":"")+cur;});},remove:function(elem,c){elem.className=c!=undefined?jQuery.grep(elem.className.split(/\s+/),function(cur){return!jQuery.className.has(c,cur);}).join(" "):"";},has:function(t,c){return jQuery.inArray(c,(t.className||t).toString().split(/\s+/))>-1;}},swap:function(e,o,f){for(var i in o){e.style["old"+i]=e.style[i];e.style[i]=o[i];}f.apply(e,[]);for(var i in o)e.style[i]=e.style["old"+i];},css:function(e,p){if(p=="height"||p=="width"){var old={},oHeight,oWidth,d=["Top","Bottom","Right","Left"];jQuery.each(d,function(){old["padding"+this]=0;old["border"+this+"Width"]=0;});jQuery.swap(e,old,function(){if(jQuery(e).is(':visible')){oHeight=e.offsetHeight;oWidth=e.offsetWidth;}else{e=jQuery(e.cloneNode(true)).find(":radio").removeAttr("checked").end().css({visibility:"hidden",position:"absolute",display:"block",right:"0",left:"0"}).appendTo(e.parentNode)[0];var parPos=jQuery.css(e.parentNode,"position")||"static";if(parPos=="static")e.parentNode.style.position="relative";oHeight=e.clientHeight;oWidth=e.clientWidth;if(parPos=="static")e.parentNode.style.position="static";e.parentNode.removeChild(e);}});return p=="height"?oHeight:oWidth;}return jQuery.curCSS(e,p);},curCSS:function(elem,prop,force){var ret,stack=[],swap=[];function color(a){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(a,null);return!ret||ret.getPropertyValue("color")=="";}if(prop=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(prop.match(/float/i))prop=styleFloat;if(!force&&elem.style[prop])ret=elem.style[prop];else if(document.defaultView&&document.defaultView.getComputedStyle){if(prop.match(/float/i))prop="float";prop=prop.replace(/([A-Z])/g,"-$1").toLowerCase();var cur=document.defaultView.getComputedStyle(elem,null);if(cur&&!color(elem))ret=cur.getPropertyValue(prop);else{for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(a=0;a<stack.length;a++)if(color(stack[a])){swap[a]=stack[a].style.display;stack[a].style.display="block";}ret=prop=="display"&&swap[stack.length-1]!=null?"none":document.defaultView.getComputedStyle(elem,null).getPropertyValue(prop)||"";for(a=0;a<swap.length;a++)if(swap[a]!=null)stack[a].style.display=swap[a];}if(prop=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var newProp=prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();});ret=elem.currentStyle[prop]||elem.currentStyle[newProp];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left;var runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}return ret;},clean:function(a,doc){var r=[];doc=doc||document;jQuery.each(a,function(i,arg){if(!arg)return;if(arg.constructor==Number)arg=arg.toString();if(typeof arg=="string"){arg=arg.replace(/(<(\w+)[^>]*?)\/>/g,function(m,all,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area)$/i)?m:all+"></"+tag+">";});var s=jQuery.trim(arg).toLowerCase(),div=doc.createElement("div"),tb=[];var wrap=!s.indexOf("<opt")&&[1,"<select>","</select>"]||!s.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||s.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!s.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!s.indexOf("<td")||!s.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!s.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+arg+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){if(!s.indexOf("<table")&&s.indexOf("<tbody")<0)tb=div.firstChild&&div.firstChild.childNodes;else if(wrap[1]=="<table>"&&s.indexOf("<tbody")<0)tb=div.childNodes;for(var n=tb.length-1;n>=0;--n)if(jQuery.nodeName(tb[n],"tbody")&&!tb[n].childNodes.length)tb[n].parentNode.removeChild(tb[n]);if(/^\s/.test(arg))div.insertBefore(doc.createTextNode(arg.match(/^\s*/)[0]),div.firstChild);}arg=jQuery.makeArray(div.childNodes);}if(0===arg.length&&(!jQuery.nodeName(arg,"form")&&!jQuery.nodeName(arg,"select")))return;if(arg[0]==undefined||jQuery.nodeName(arg,"form")||arg.options)r.push(arg);else
|
21
|
-
r=jQuery.merge(r,arg);});return r;},attr:function(elem,name,value){var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem.setAttribute(name,value);}if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(z,b){return b.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(t){return(t||"").replace(/^\s+|\s+$/g,"");},makeArray:function(a){var r=[];if(typeof a!="array")for(var i=0,al=a.length;i<al;i++)r.push(a[i]);else
|
22
|
-
r=a.slice(0);return r;},inArray:function(b,a){for(var i=0,al=a.length;i<al;i++)if(a[i]==b)return i;return-1;},merge:function(first,second){if(jQuery.browser.msie){for(var i=0;second[i];i++)if(second[i].nodeType!=8)first.push(second[i]);}else
|
23
|
-
for(var i=0;second[i];i++)first.push(second[i]);return first;},unique:function(first){var r=[],done={};try{for(var i=0,fl=first.length;i<fl;i++){var id=jQuery.data(first[i]);if(!done[id]){done[id]=true;r.push(first[i]);}}}catch(e){r=first;}return r;},grep:function(elems,fn,inv){if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+"}");var result=[];for(var i=0,el=elems.length;i<el;i++)if(!inv&&fn(elems[i],i)||inv&&!fn(elems[i],i))result.push(elems[i]);return result;},map:function(elems,fn){if(typeof fn=="string")fn=eval("false||function(a){return "+fn+"}");var result=[];for(var i=0,el=elems.length;i<el;i++){var val=fn(elems[i],i);if(val!==null&&val!=undefined){if(val.constructor!=Array)val=[val];result=result.concat(val);}}return result;}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",styleFloat:jQuery.browser.msie?"styleFloat":"cssFloat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength"}});jQuery.each({parent:"a.parentNode",parents:"jQuery.dir(a,'parentNode')",next:"jQuery.nth(a,2,'nextSibling')",prev:"jQuery.nth(a,2,'previousSibling')",nextAll:"jQuery.dir(a,'nextSibling')",prevAll:"jQuery.dir(a,'previousSibling')",siblings:"jQuery.sibling(a.parentNode.firstChild,a)",children:"jQuery.sibling(a.firstChild)",contents:"jQuery.nodeName(a,'iframe')?a.contentDocument||a.contentWindow.document:jQuery.makeArray(a.childNodes)"},function(i,n){jQuery.fn[i]=function(a){var ret=jQuery.map(this,n);if(a&&typeof a=="string")ret=jQuery.multiFilter(a,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(i,n){jQuery.fn[i]=function(){var a=arguments;return this.each(function(){for(var j=0,al=a.length;j<al;j++)jQuery(a[j])[n](this);});};});jQuery.each({removeAttr:function(key){jQuery.attr(this,key,"");this.removeAttribute(key);},addClass:function(c){jQuery.className.add(this,c);},removeClass:function(c){jQuery.className.remove(this,c);},toggleClass:function(c){jQuery.className[jQuery.className.has(this,c)?"remove":"add"](this,c);},remove:function(a){if(!a||jQuery.filter(a,[this]).r.length){jQuery.removeData(this);this.parentNode.removeChild(this);}},empty:function(){jQuery("*",this).each(function(){jQuery.removeData(this);});while(this.firstChild)this.removeChild(this.firstChild);}},function(i,n){jQuery.fn[i]=function(){return this.each(n,arguments);};});jQuery.each(["Height","Width"],function(i,name){var n=name.toLowerCase();jQuery.fn[n]=function(h){return this[0]==window?jQuery.browser.safari&&self["inner"+name]||jQuery.boxModel&&Math.max(document.documentElement["client"+name],document.body["client"+name])||document.body["client"+name]:this[0]==document?Math.max(document.body["scroll"+name],document.body["offset"+name]):h==undefined?(this.length?jQuery.css(this[0],n):null):this.css(n,h.constructor==String?h:h+"px");};});var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":"m[2]=='*'||jQuery.nodeName(a,m[2])","#":"a.getAttribute('id')==m[2]",":":{lt:"i<m[3]-0",gt:"i>m[3]-0",nth:"m[3]-0==i",eq:"m[3]-0==i",first:"i==0",last:"i==r.length-1",even:"i%2==0",odd:"i%2","first-child":"a.parentNode.getElementsByTagName('*')[0]==a","last-child":"jQuery.nth(a.parentNode.lastChild,1,'previousSibling')==a","only-child":"!jQuery.nth(a.parentNode.lastChild,2,'previousSibling')",parent:"a.firstChild",empty:"!a.firstChild",contains:"(a.textContent||a.innerText||jQuery(a).text()||'').indexOf(m[3])>=0",visible:'"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden"',hidden:'"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden"',enabled:"!a.disabled",disabled:"a.disabled",checked:"a.checked",selected:"a.selected||jQuery.attr(a,'selected')",text:"'text'==a.type",radio:"'radio'==a.type",checkbox:"'checkbox'==a.type",file:"'file'==a.type",password:"'password'==a.type",submit:"'submit'==a.type",image:"'image'==a.type",reset:"'reset'==a.type",button:'"button"==a.type||jQuery.nodeName(a,"button")',input:"/input|select|textarea|button/i.test(a.nodeName)",has:"jQuery.find(m[3],a).length",header:"/h\\d/i.test(a.nodeName)",animated:"jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length"}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&!context.nodeType)context=null;context=context||document;var ret=[context],done=[],last;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){var nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName.toUpperCase()))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var nodeName=m[2],merge={};m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName.toUpperCase()){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=jQuery.filter(m[3],r,true).r;else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(\d*)n\+?(\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"n+"+m[3]||m[3]),first=(test[1]||1)-0,last=test[2]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==1){if(last==0||node.nodeIndex==last)add=true;}else if((node.nodeIndex+last)%first==0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var f=jQuery.expr[m[1]];if(typeof f!="string")f=jQuery.expr[m[1]][m[2]];f=eval("false||function(a,i){return "+f+"}");r=jQuery.grep(r,f,not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[];var cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem))r.push(n);}return r;}});jQuery.event={add:function(element,type,handler,data){if(jQuery.browser.msie&&element.setInterval!=undefined)element=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}var parts=type.split(".");type=parts[0];handler.type=parts[1];var events=jQuery.data(element,"events")||jQuery.data(element,"events",{});var handle=jQuery.data(element,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(element,arguments);return val;});var handlers=events[type];if(!handlers){handlers=events[type]={};if(element.addEventListener)element.addEventListener(type,handle,false);else
|
24
|
-
element.attachEvent("on"+type,handle);}handlers[handler.guid]=handler;this.global[type]=true;},guid:1,global:{},remove:function(element,type,handler){var events=jQuery.data(element,"events"),ret,index;if(typeof type=="string"){var parts=type.split(".");type=parts[0];}if(events){if(type&&type.type){handler=type.handler;type=type.type;}if(!type){for(type in events)this.remove(element,type);}else if(events[type]){if(handler)delete events[type][handler.guid];else
|
25
|
-
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(element.removeEventListener)element.removeEventListener(type,jQuery.data(element,"handle"),false);else
|
26
|
-
element.detachEvent("on"+type,jQuery.data(element,"handle"));ret=null;delete events[type];}}for(ret in events)break;if(!ret){jQuery.removeData(element,"events");jQuery.removeData(element,"handle");}}},trigger:function(type,data,element,donative,extra){data=jQuery.makeArray(data||[]);if(!element){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{var val,ret,fn=jQuery.isFunction(element[type]||null),evt=!data[0]||!data[0].preventDefault;if(evt)data.unshift(this.fix({type:type,target:element}));data[0].type=type;if(jQuery.isFunction(jQuery.data(element,"handle")))val=jQuery.data(element,"handle").apply(element,data);if(!fn&&element["on"+type]&&element["on"+type].apply(element,data)===false)val=false;if(evt)data.shift();if(extra&&extra.apply(element,data)===false)val=false;if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(element,'a')&&type=="click")){this.triggered=true;element[type]();}this.triggered=false;}return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var c=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in c){args[0].handler=c[j];args[0].data=c[j].data;if(!parts[1]||c[j].type==parts[1]){var tmp=c[j].apply(this,args);if(val!==false)val=tmp;if(tmp===false){event.preventDefault();event.stopPropagation();}}}if(jQuery.browser.msie)event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target&&event.srcElement)event.target=event.srcElement;if(jQuery.browser.safari&&event.target.nodeType==3)event.target=originalEvent.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var e=document.documentElement,b=document.body;event.pageX=event.clientX+(e&&e.scrollLeft||b.scrollLeft||0);event.pageY=event.clientY+(e&&e.scrollTop||b.scrollTop||0);}if(!event.which&&(event.charCode||event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){if(this[0])return jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(){var a=arguments;return this.click(function(e){this.lastToggle=0==this.lastToggle?1:0;e.preventDefault();return a[this.lastToggle].apply(this,[e])||false;});},hover:function(f,g){function handleHover(e){var p=e.relatedTarget;while(p&&p!=this)try{p=p.parentNode;}catch(e){p=this;};if(p==this)return false;return(e.type=="mouseover"?f:g).apply(this,[e]);}return this.mouseover(handleHover).mouseout(handleHover);},ready:function(f){bindReady();if(jQuery.isReady)f.apply(document,[jQuery]);else
|
27
|
-
jQuery.readyList.push(function(){return f.apply(this,[jQuery]);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;}if(jQuery.browser.mozilla||jQuery.browser.opera)document.removeEventListener("DOMContentLoaded",jQuery.ready,false);if(!window.frames.length)jQuery(window).load(function(){jQuery("#__ie_init").remove();});}}});jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,o){jQuery.fn[o]=function(f){return f?this.bind(o,f):this.trigger(o);};});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(jQuery.browser.mozilla||jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);else if(jQuery.browser.msie){document.write("<scr"+"ipt id=__ie_init defer=true "+"src=//:><\/script>");var script=document.getElementById("__ie_init");if(script)script.onreadystatechange=function(){if(this.readyState!="complete")return;jQuery.ready();};script=null;}else if(jQuery.browser.safari)jQuery.safariTimer=setInterval(function(){if(document.readyState=="loaded"||document.readyState=="complete"){clearInterval(jQuery.safariTimer);jQuery.safariTimer=null;jQuery.ready();}},10);jQuery.event.add(window,"load",jQuery.ready);}jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))return this.bind("load",url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);setTimeout(function(){self.each(callback,[res.responseText,status,res]);},13);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=(new Date).getTime();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null},lastModified:{},ajax:function(s){var jsonp,jsre=/=(\?|%3F)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="get"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=s.data.replace(jsre,"="+jsonp);s.url=s.url.replace(jsre,"="+jsonp);s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&s.type.toLowerCase()=="get")s.url+=(s.url.match(/\?/)?"&":"?")+"_="+(new Date()).getTime();if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");if(!s.url.indexOf("http")&&s.dataType=="script"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(!jsonp&&(s.success||s.complete)){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async);if(s.data)xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");if(s.beforeSend)s.beforeSend(xml);if(s.global)jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
|
28
|
-
jQuery.handleError(s,xml,status);complete();if(s.async)xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xml){xml.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}if(!s.async)onreadystatechange();return xml;function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xml,s]);}function complete(){if(s.complete)s.complete(xml,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||jQuery.browser.safari&&r.status==undefined;}catch(e){}return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
|
29
|
-
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
|
30
|
-
s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock?this.oldblock:"";if(jQuery.css(this,"display")=="none")this.style.display="block";}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");if(this.oldblock=="none")this.oldblock="block";this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var opt=jQuery.speed(speed,easing,callback);return this[opt.queue===false?"each":"queue"](function(){opt=jQuery.extend({},opt);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
|
31
|
-
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.apply(this);}});},stop:function(){var timers=jQuery.timers;return this.each(function(){for(var i=0;i<timers.length;i++)if(timers[i].elem==this)timers.splice(i--,1);}).dequeue();}});var queue=function(elem,type,array){if(!elem)return;var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",array?jQuery.makeArray(array):[]);return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].apply(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.apply(this.elem,[this.now,this]);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.curCSS(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.css(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(){return self.step();}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timers.length==1){var timer=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length)clearInterval(timer);},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(){var t=(new Date()).getTime();if(t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done&&jQuery.isFunction(this.options.complete))this.options.complete.apply(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.fx.step={scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}};jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var absolute=jQuery.css(elem,"position")=="absolute",parent=elem.parentNode,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522;if(elem.getBoundingClientRect){box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));if(msie){var border=jQuery("html").css("borderWidth");border=(border=="medium"||jQuery.boxModel&&parseInt(version)>=7)&&2||border;add(-border,-border);}}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&/^t[d|h]$/i.test(parent.tagName)||!safari2)border(offsetParent);if(safari2&&!absolute&&jQuery.css(offsetParent,"position")=="absolute")absolute=true;offsetParent=offsetParent.offsetParent;}while(parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table-row.*$/i.test(jQuery.css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if(safari2&&absolute)add(-doc.body.offsetLeft,-doc.body.offsetTop);}results={top:top,left:left};}return results;function border(elem){add(jQuery.css(elem,"borderLeftWidth"),jQuery.css(elem,"borderTopWidth"));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}};})();
|
data/site/log/Changelog.xsl
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
2
|
-
|
3
|
-
<xsl:output cdata-section-elements="script"/>
|
4
|
-
|
5
|
-
<xsl:template match="/">
|
6
|
-
<html>
|
7
|
-
<head>
|
8
|
-
<title>Changelog</title>
|
9
|
-
<link REL='SHORTCUT ICON' HREF="../img/ruby-sm.png" />
|
10
|
-
<style>
|
11
|
-
td { font-family: sans-serif; padding: 0px 10px; }
|
12
|
-
</style>
|
13
|
-
</head>
|
14
|
-
<body>
|
15
|
-
<div class="container">
|
16
|
-
<h1>Changelog</h1>
|
17
|
-
<table style="width: 100%;">
|
18
|
-
<xsl:apply-templates />
|
19
|
-
</table>
|
20
|
-
</div>
|
21
|
-
</body>
|
22
|
-
</html>
|
23
|
-
</xsl:template>
|
24
|
-
|
25
|
-
<xsl:template match="logentry">
|
26
|
-
<tr>
|
27
|
-
<td><b><pre><xsl:value-of select="msg"/></pre></b></td>
|
28
|
-
<td><xsl:value-of select="author"/></td>
|
29
|
-
<td><xsl:value-of select="date"/></td>
|
30
|
-
</tr>
|
31
|
-
</xsl:template>
|
32
|
-
|
33
|
-
</xsl:stylesheet>
|
data/site/log/changelog.xml
DELETED
@@ -1,1677 +0,0 @@
|
|
1
|
-
<?xml version="1.0"?>
|
2
|
-
<?xml-stylesheet href="site/log/Changelog.xsl" type="text/xsl" ?>
|
3
|
-
<log>
|
4
|
-
<logentry
|
5
|
-
revision="233">
|
6
|
-
<author>mikel</author>
|
7
|
-
<date>2008-03-01T23:35:57.338362Z</date>
|
8
|
-
<msg>* Closed #18516 - Fix TMail::Mail#preamble, and add #preamble= (Charles Lowe)</msg>
|
9
|
-
</logentry>
|
10
|
-
<logentry
|
11
|
-
revision="232">
|
12
|
-
<author>mikel</author>
|
13
|
-
<date>2008-03-01T23:22:05.399260Z</date>
|
14
|
-
<msg>Applied patch #18515 to remove ftools from test case (Charles Lowe)</msg>
|
15
|
-
</logentry>
|
16
|
-
<logentry
|
17
|
-
revision="231">
|
18
|
-
<author>mikel</author>
|
19
|
-
<date>2008-03-01T23:20:15.692577Z</date>
|
20
|
-
<msg>A lot of documentation patches to the mail and utils and net files. Also added "log/BugTrackingLog.txt" for myself as my bug log got clobbered by the new changelog.txt format.</msg>
|
21
|
-
</logentry>
|
22
|
-
<logentry
|
23
|
-
revision="230">
|
24
|
-
<author>transami</author>
|
25
|
-
<date>2008-02-22T18:30:47.894199Z</date>
|
26
|
-
<msg>Update the doc feature of setup.rb.
|
27
|
-
* installing rdoc labels the directory config.docdir/ruby-{package}/.
|
28
|
-
* generateing rdocs places them in doc/rdoc.
|
29
|
-
* this was done to prevent potential name clashes with other system docs.
|
30
|
-
</msg>
|
31
|
-
</logentry>
|
32
|
-
<logentry
|
33
|
-
revision="229">
|
34
|
-
<author>mikel</author>
|
35
|
-
<date>2008-02-22T15:30:46.219389Z</date>
|
36
|
-
<msg>Added a lot more documentation, getting there</msg>
|
37
|
-
</logentry>
|
38
|
-
<logentry
|
39
|
-
revision="228">
|
40
|
-
<author>transami</author>
|
41
|
-
<date>2008-02-21T14:19:36.251766Z</date>
|
42
|
-
<msg>Added homepage entry to project file.
|
43
|
-
</msg>
|
44
|
-
</logentry>
|
45
|
-
<logentry
|
46
|
-
revision="227">
|
47
|
-
<author>transami</author>
|
48
|
-
<date>2008-02-21T14:09:23.780559Z</date>
|
49
|
-
<msg>Fixed missing rake task entry in setup.rb.
|
50
|
-
</msg>
|
51
|
-
</logentry>
|
52
|
-
<logentry
|
53
|
-
revision="226">
|
54
|
-
<author>transami</author>
|
55
|
-
<date>2008-02-19T19:42:29.107812Z</date>
|
56
|
-
<msg>Moved script/ to work/ --as reap and setup.rb should now suffice.
|
57
|
-
</msg>
|
58
|
-
</logentry>
|
59
|
-
<logentry
|
60
|
-
revision="225">
|
61
|
-
<author>transami</author>
|
62
|
-
<date>2008-02-19T19:41:49.625876Z</date>
|
63
|
-
<msg>Added a work directory. This is a sort of code depot.
|
64
|
-
</msg>
|
65
|
-
</logentry>
|
66
|
-
<logentry
|
67
|
-
revision="224">
|
68
|
-
<author>transami</author>
|
69
|
-
<date>2008-02-19T19:39:29.710246Z</date>
|
70
|
-
<msg>Add some entries to svn:ignore.
|
71
|
-
</msg>
|
72
|
-
</logentry>
|
73
|
-
<logentry
|
74
|
-
revision="223">
|
75
|
-
<author>transami</author>
|
76
|
-
<date>2008-02-19T18:40:59.772815Z</date>
|
77
|
-
<msg>Fixed setup.rb uninstaller.
|
78
|
-
</msg>
|
79
|
-
</logentry>
|
80
|
-
<logentry
|
81
|
-
revision="222">
|
82
|
-
<author>transami</author>
|
83
|
-
<date>2008-02-19T18:00:13.992267Z</date>
|
84
|
-
<msg>Updated Rakefile and setup.rb.
|
85
|
-
</msg>
|
86
|
-
</logentry>
|
87
|
-
<logentry
|
88
|
-
revision="221">
|
89
|
-
<author>transami</author>
|
90
|
-
<date>2008-02-18T23:05:48.593124Z</date>
|
91
|
-
<msg>Update Rakefile fixing test bug.
|
92
|
-
</msg>
|
93
|
-
</logentry>
|
94
|
-
<logentry
|
95
|
-
revision="220">
|
96
|
-
<author>transami</author>
|
97
|
-
<date>2008-02-18T21:38:00.061336Z</date>
|
98
|
-
<msg>Added new "uber" Rakefile.
|
99
|
-
</msg>
|
100
|
-
</logentry>
|
101
|
-
<logentry
|
102
|
-
revision="219">
|
103
|
-
<author>transami</author>
|
104
|
-
<date>2008-02-18T21:34:42.989237Z</date>
|
105
|
-
<msg>Moved doc to site.
|
106
|
-
</msg>
|
107
|
-
</logentry>
|
108
|
-
<logentry
|
109
|
-
revision="218">
|
110
|
-
<author>mikel</author>
|
111
|
-
<date>2008-02-14T13:57:40.623037Z</date>
|
112
|
-
<msg>Moving changelog to a capital
|
113
|
-
</msg>
|
114
|
-
</logentry>
|
115
|
-
<logentry
|
116
|
-
revision="217">
|
117
|
-
<author>mikel</author>
|
118
|
-
<date>2008-02-14T13:57:12.042609Z</date>
|
119
|
-
<msg>fixing changelog
|
120
|
-
</msg>
|
121
|
-
</logentry>
|
122
|
-
<logentry
|
123
|
-
revision="216">
|
124
|
-
<author>mikel</author>
|
125
|
-
<date>2008-02-13T02:24:17.675482Z</date>
|
126
|
-
<msg>Removing bad add (SVN is trying to add this twice to my repo)</msg>
|
127
|
-
</logentry>
|
128
|
-
<logentry
|
129
|
-
revision="215">
|
130
|
-
<author>transami</author>
|
131
|
-
<date>2008-02-10T22:12:30.281814Z</date>
|
132
|
-
<msg>Added test log.
|
133
|
-
</msg>
|
134
|
-
</logentry>
|
135
|
-
<logentry
|
136
|
-
revision="214">
|
137
|
-
<author>transami</author>
|
138
|
-
<date>2008-02-10T22:12:00.149685Z</date>
|
139
|
-
<msg>Update to .reap to add test/ to loadpath when testing.
|
140
|
-
</msg>
|
141
|
-
</logentry>
|
142
|
-
<logentry
|
143
|
-
revision="213">
|
144
|
-
<author>transami</author>
|
145
|
-
<date>2008-02-10T22:05:50.755942Z</date>
|
146
|
-
<msg>Added xml log and update CHANGES.
|
147
|
-
</msg>
|
148
|
-
</logentry>
|
149
|
-
<logentry
|
150
|
-
revision="212">
|
151
|
-
<author>transami</author>
|
152
|
-
<date>2008-02-10T22:02:05.294735Z</date>
|
153
|
-
<msg>Touched up changelogs.
|
154
|
-
</msg>
|
155
|
-
</logentry>
|
156
|
-
<logentry
|
157
|
-
revision="211">
|
158
|
-
<author>transami</author>
|
159
|
-
<date>2008-02-10T21:47:15.016233Z</date>
|
160
|
-
<msg>Add make script and convert others to pure ruby.
|
161
|
-
</msg>
|
162
|
-
</logentry>
|
163
|
-
<logentry
|
164
|
-
revision="210">
|
165
|
-
<author>transami</author>
|
166
|
-
<date>2008-02-10T21:30:09.628179Z</date>
|
167
|
-
<msg>Remove old ratch scripts.
|
168
|
-
</msg>
|
169
|
-
</logentry>
|
170
|
-
<logentry
|
171
|
-
revision="209">
|
172
|
-
<author>transami</author>
|
173
|
-
<date>2008-02-10T21:28:03.248297Z</date>
|
174
|
-
<msg>Update metadata.
|
175
|
-
</msg>
|
176
|
-
</logentry>
|
177
|
-
<logentry
|
178
|
-
revision="208">
|
179
|
-
<author>mikel</author>
|
180
|
-
<date>2008-01-17T14:47:16.837325Z</date>
|
181
|
-
<msg>Updated development section</msg>
|
182
|
-
</logentry>
|
183
|
-
<logentry
|
184
|
-
revision="207">
|
185
|
-
<author>mikel</author>
|
186
|
-
<date>2008-01-17T14:41:13.980608Z</date>
|
187
|
-
<msg>Updated website to add "contributing" to the list</msg>
|
188
|
-
</logentry>
|
189
|
-
<logentry
|
190
|
-
revision="206">
|
191
|
-
<author>mikel</author>
|
192
|
-
<date>2008-01-17T06:37:16.019152Z</date>
|
193
|
-
<msg>More website updates</msg>
|
194
|
-
</logentry>
|
195
|
-
<logentry
|
196
|
-
revision="205">
|
197
|
-
<author>mikel</author>
|
198
|
-
<date>2008-01-17T06:32:04.633705Z</date>
|
199
|
-
<msg>Update reference index to take some confusion out</msg>
|
200
|
-
</logentry>
|
201
|
-
<logentry
|
202
|
-
revision="204">
|
203
|
-
<author>mikel</author>
|
204
|
-
<date>2008-01-17T06:28:21.587086Z</date>
|
205
|
-
<msg>Cleaning up the docs more - adding mailing list</msg>
|
206
|
-
</logentry>
|
207
|
-
<logentry
|
208
|
-
revision="203">
|
209
|
-
<author>mikel</author>
|
210
|
-
<date>2008-01-17T06:24:11.649192Z</date>
|
211
|
-
<msg>Cleaning up the docs more - adding quickstart guide</msg>
|
212
|
-
</logentry>
|
213
|
-
<logentry
|
214
|
-
revision="202">
|
215
|
-
<author>mikel</author>
|
216
|
-
<date>2008-01-17T06:23:49.433301Z</date>
|
217
|
-
<msg>Cleaning up the docs more</msg>
|
218
|
-
</logentry>
|
219
|
-
<logentry
|
220
|
-
revision="201">
|
221
|
-
<author>mikel</author>
|
222
|
-
<date>2008-01-17T06:16:44.991857Z</date>
|
223
|
-
<msg>Adding some documentation to the website</msg>
|
224
|
-
</logentry>
|
225
|
-
<logentry
|
226
|
-
revision="200">
|
227
|
-
<author>mikel</author>
|
228
|
-
<date>2008-01-17T05:55:57.695275Z</date>
|
229
|
-
<msg>Added update to the website and an extra test to test_quote taken from the ActionMailer version of TMail</msg>
|
230
|
-
</logentry>
|
231
|
-
<logentry
|
232
|
-
revision="199">
|
233
|
-
<author>mikel</author>
|
234
|
-
<date>2008-01-15T02:46:15.142126Z</date>
|
235
|
-
<msg>Updated index page</msg>
|
236
|
-
</logentry>
|
237
|
-
<logentry
|
238
|
-
revision="198">
|
239
|
-
<author>mikel</author>
|
240
|
-
<date>2008-01-15T02:35:43.622514Z</date>
|
241
|
-
<msg>Updated website for 1.9 compatibility
|
242
|
-
</msg>
|
243
|
-
</logentry>
|
244
|
-
<logentry
|
245
|
-
revision="197">
|
246
|
-
<author>mikel</author>
|
247
|
-
<date>2008-01-15T02:16:49.653733Z</date>
|
248
|
-
<msg>That's 1.9 compatibility done</msg>
|
249
|
-
</logentry>
|
250
|
-
<logentry
|
251
|
-
revision="196">
|
252
|
-
<author>mikel</author>
|
253
|
-
<date>2008-01-15T01:49:49.674084Z</date>
|
254
|
-
<msg>1.9 Patching - down to two tests failing</msg>
|
255
|
-
</logentry>
|
256
|
-
<logentry
|
257
|
-
revision="195">
|
258
|
-
<author>mikel</author>
|
259
|
-
<date>2008-01-12T04:24:33.675527Z</date>
|
260
|
-
<msg>Updated changelog with latest patches</msg>
|
261
|
-
</logentry>
|
262
|
-
<logentry
|
263
|
-
revision="194">
|
264
|
-
<author>mikel</author>
|
265
|
-
<date>2008-01-12T04:08:11.646208Z</date>
|
266
|
-
<msg>Cleaned up how address.rb handles quoting strings and arrays</msg>
|
267
|
-
</logentry>
|
268
|
-
<logentry
|
269
|
-
revision="193">
|
270
|
-
<author>mikel</author>
|
271
|
-
<date>2008-01-12T04:01:51.058634Z</date>
|
272
|
-
<msg>Updating to handle Ruby 1.9 - Three tests failing at the moment</msg>
|
273
|
-
</logentry>
|
274
|
-
<logentry
|
275
|
-
revision="192">
|
276
|
-
<author>mikel</author>
|
277
|
-
<date>2008-01-12T02:14:14.427356Z</date>
|
278
|
-
<msg>Closed #17044 and #17045 ALL TESTS PASSING!!!!</msg>
|
279
|
-
</logentry>
|
280
|
-
<logentry
|
281
|
-
revision="191">
|
282
|
-
<author>mikel</author>
|
283
|
-
<date>2008-01-11T12:12:36.477171Z</date>
|
284
|
-
<msg>Closes #15157 - The email address "@"@test.com does not parse. It now does (mikel)
|
285
|
-
</msg>
|
286
|
-
</logentry>
|
287
|
-
<logentry
|
288
|
-
revision="190">
|
289
|
-
<author>mikel</author>
|
290
|
-
<date>2008-01-11T09:24:20.532215Z</date>
|
291
|
-
<msg>Added Rakefile for testing only</msg>
|
292
|
-
</logentry>
|
293
|
-
<logentry
|
294
|
-
revision="188">
|
295
|
-
<author>mikel</author>
|
296
|
-
<date>2008-01-11T08:11:52.827165Z</date>
|
297
|
-
<msg>Ready for gem</msg>
|
298
|
-
</logentry>
|
299
|
-
<logentry
|
300
|
-
revision="187">
|
301
|
-
<author>mikel</author>
|
302
|
-
<date>2008-01-11T08:01:34.278664Z</date>
|
303
|
-
<msg>Fixed version</msg>
|
304
|
-
</logentry>
|
305
|
-
<logentry
|
306
|
-
revision="186">
|
307
|
-
<author>transami</author>
|
308
|
-
<date>2008-01-11T07:02:25.592531Z</date>
|
309
|
-
<msg>Updated pack tasks (note these are now for 0.5 series of ratch)
|
310
|
-
</msg>
|
311
|
-
</logentry>
|
312
|
-
<logentry
|
313
|
-
revision="185">
|
314
|
-
<author>mikel</author>
|
315
|
-
<date>2008-01-11T05:46:35.155557Z</date>
|
316
|
-
<msg>Final commit for version 1.2.1</msg>
|
317
|
-
</logentry>
|
318
|
-
<logentry
|
319
|
-
revision="184">
|
320
|
-
<author>transami</author>
|
321
|
-
<date>2008-01-11T05:03:54.818155Z</date>
|
322
|
-
<msg>Gems requires author field to be an array (probably a gems bug)
|
323
|
-
</msg>
|
324
|
-
</logentry>
|
325
|
-
<logentry
|
326
|
-
revision="183">
|
327
|
-
<author>mikel</author>
|
328
|
-
<date>2008-01-11T04:41:33.160330Z</date>
|
329
|
-
<msg>VERSION 1.2.1</msg>
|
330
|
-
</logentry>
|
331
|
-
<logentry
|
332
|
-
revision="182">
|
333
|
-
<author>mikel</author>
|
334
|
-
<date>2008-01-11T04:40:56.093133Z</date>
|
335
|
-
<msg>VERSION 1.2.1</msg>
|
336
|
-
</logentry>
|
337
|
-
<logentry
|
338
|
-
revision="181">
|
339
|
-
<author>mikel</author>
|
340
|
-
<date>2008-01-11T01:29:15.113062Z</date>
|
341
|
-
<msg>Updated test_quote.rb to make it copmpatible with Ruby 1.9
|
342
|
-
</msg>
|
343
|
-
</logentry>
|
344
|
-
<logentry
|
345
|
-
revision="180">
|
346
|
-
<author>mikel</author>
|
347
|
-
<date>2008-01-10T23:12:55.939555Z</date>
|
348
|
-
<msg>Updated logs to reflect recent changes</msg>
|
349
|
-
</logentry>
|
350
|
-
<logentry
|
351
|
-
revision="179">
|
352
|
-
<author>mikel</author>
|
353
|
-
<date>2008-01-10T15:19:37.306572Z</date>
|
354
|
-
<msg>Added tests for UNIXMbox.fromaddr method. Also changed behaviour of HeaderField.new_from_port to return nil if it does not find a matching header in the port provided. Extended UNIXMbox.fromaddr to also search for EnvelopeSender and also made it a public method, not private - Thanks to Maarten O. for alerting these bugs</msg>
|
355
|
-
</logentry>
|
356
|
-
<logentry
|
357
|
-
revision="178">
|
358
|
-
<author>mikel</author>
|
359
|
-
<date>2008-01-10T14:29:47.199467Z</date>
|
360
|
-
<msg>Fixed TMail::HeaderField.new_from_port to correct typo on "Regep" to "Regexp". Also added test cases to cover this class method. Also added ability to scan for the EnvelopeSender explictly as it would not come up on searching for "From" due to Regexp confilct with From: (with the colon). Thanks to Maarten O. for reporting this.</msg>
|
361
|
-
</logentry>
|
362
|
-
<logentry
|
363
|
-
revision="177">
|
364
|
-
<author>transami</author>
|
365
|
-
<date>2007-12-25T12:43:04.079524Z</date>
|
366
|
-
<msg>Added stamp script.
|
367
|
-
</msg>
|
368
|
-
</logentry>
|
369
|
-
<logentry
|
370
|
-
revision="176">
|
371
|
-
<author>transami</author>
|
372
|
-
<date>2007-12-25T12:40:01.915296Z</date>
|
373
|
-
<msg>Updated tmail.roll for version 1.2.1.
|
374
|
-
</msg>
|
375
|
-
</logentry>
|
376
|
-
<logentry
|
377
|
-
revision="175">
|
378
|
-
<author>transami</author>
|
379
|
-
<date>2007-12-25T12:38:07.578927Z</date>
|
380
|
-
<msg>Moved ROLLRC to tmail.roll.
|
381
|
-
</msg>
|
382
|
-
</logentry>
|
383
|
-
<logentry
|
384
|
-
revision="174">
|
385
|
-
<author>mikel</author>
|
386
|
-
<date>2007-12-25T10:29:53.495165Z</date>
|
387
|
-
<msg>Applied Mr Aoki's patch from TMail revision 3674 - Handles the incorrect decoding of attachments
|
388
|
-
</msg>
|
389
|
-
</logentry>
|
390
|
-
<logentry
|
391
|
-
revision="173">
|
392
|
-
<author>mikel</author>
|
393
|
-
<date>2007-12-25T10:13:56.962390Z</date>
|
394
|
-
<msg>Applied patch from Mike Mondragon handling quote boundary being greedy on content-type header fields.
|
395
|
-
</msg>
|
396
|
-
</logentry>
|
397
|
-
<logentry
|
398
|
-
revision="172">
|
399
|
-
<author>mikel</author>
|
400
|
-
<date>2007-12-25T10:06:48.716182Z</date>
|
401
|
-
<msg>Removed the mailscanner directory
|
402
|
-
</msg>
|
403
|
-
</logentry>
|
404
|
-
<logentry
|
405
|
-
revision="171">
|
406
|
-
<author>mikel</author>
|
407
|
-
<date>2007-12-25T10:05:54.666513Z</date>
|
408
|
-
<msg>moved mailscanner.c file to tmailscanner.c
|
409
|
-
</msg>
|
410
|
-
</logentry>
|
411
|
-
<logentry
|
412
|
-
revision="170">
|
413
|
-
<author>mikel</author>
|
414
|
-
<date>2007-12-25T10:05:16.692886Z</date>
|
415
|
-
<msg>Changed name of the mailscanner directory to tmailscanner
|
416
|
-
</msg>
|
417
|
-
</logentry>
|
418
|
-
<logentry
|
419
|
-
revision="169">
|
420
|
-
<author>mikel</author>
|
421
|
-
<date>2007-12-25T10:04:01.356685Z</date>
|
422
|
-
<msg>Change the name of mailscanner to tmailscanner to handle a copyright issue. MailScanner is a copyrighted name
|
423
|
-
</msg>
|
424
|
-
</logentry>
|
425
|
-
<logentry
|
426
|
-
revision="168">
|
427
|
-
<author>mikel</author>
|
428
|
-
<date>2007-12-25T10:00:43.409356Z</date>
|
429
|
-
<msg>Included a require 'stringio' to hack resolve a load order problem when running autotest
|
430
|
-
</msg>
|
431
|
-
</logentry>
|
432
|
-
<logentry
|
433
|
-
revision="167">
|
434
|
-
<author>transami</author>
|
435
|
-
<date>2007-12-14T15:48:48.310811Z</date>
|
436
|
-
<msg>Added package tasks. Fixe prepare task.
|
437
|
-
</msg>
|
438
|
-
</logentry>
|
439
|
-
<logentry
|
440
|
-
revision="166">
|
441
|
-
<author>transami</author>
|
442
|
-
<date>2007-12-14T15:24:17.384697Z</date>
|
443
|
-
<msg>Minor enhancement to publish task to make it's usage clearer.
|
444
|
-
</msg>
|
445
|
-
</logentry>
|
446
|
-
<logentry
|
447
|
-
revision="165">
|
448
|
-
<author>transami</author>
|
449
|
-
<date>2007-12-14T15:21:02.356120Z</date>
|
450
|
-
<msg>Moved script/config.yaml ti meta/ per Ratch 0.4.0.
|
451
|
-
</msg>
|
452
|
-
</logentry>
|
453
|
-
<logentry
|
454
|
-
revision="164">
|
455
|
-
<author>mikel</author>
|
456
|
-
<date>2007-12-14T00:33:21.659197Z</date>
|
457
|
-
<msg>Added links into all the pages back to RDoc and also added notes to the index page.</msg>
|
458
|
-
</logentry>
|
459
|
-
<logentry
|
460
|
-
revision="163">
|
461
|
-
<author>mikel</author>
|
462
|
-
<date>2007-12-02T10:10:48.132433Z</date>
|
463
|
-
<msg>Added about 15 test cases from the Rails community. Added failing test case for an unquoted @ char in the From header field. Need to check fully if this is needed or not, but it is there anyway - to be resolved. I have emailed 822 mailing list to check this out.
|
464
|
-
|
465
|
-
</msg>
|
466
|
-
</logentry>
|
467
|
-
<logentry
|
468
|
-
revision="162">
|
469
|
-
<author>mikel</author>
|
470
|
-
<date>2007-12-02T07:40:11.070057Z</date>
|
471
|
-
<msg>Fixed error in release notes for tag 1.2.0</msg>
|
472
|
-
</logentry>
|
473
|
-
<logentry
|
474
|
-
revision="160">
|
475
|
-
<author>transami</author>
|
476
|
-
<date>2007-12-02T07:25:31.287362Z</date>
|
477
|
-
<msg>Updated release script (require newest release of ratch)
|
478
|
-
</msg>
|
479
|
-
</logentry>
|
480
|
-
<logentry
|
481
|
-
revision="159">
|
482
|
-
<author>mikel</author>
|
483
|
-
<date>2007-12-02T06:15:05.284279Z</date>
|
484
|
-
<msg>added news item</msg>
|
485
|
-
</logentry>
|
486
|
-
<logentry
|
487
|
-
revision="157">
|
488
|
-
<author>mikel</author>
|
489
|
-
<date>2007-12-02T05:59:23.840915Z</date>
|
490
|
-
<msg>Updated version number</msg>
|
491
|
-
</logentry>
|
492
|
-
<logentry
|
493
|
-
revision="156">
|
494
|
-
<author>transami</author>
|
495
|
-
<date>2007-12-01T15:18:16.893633Z</date>
|
496
|
-
<msg>Couple more additions.
|
497
|
-
</msg>
|
498
|
-
</logentry>
|
499
|
-
<logentry
|
500
|
-
revision="155">
|
501
|
-
<author>transami</author>
|
502
|
-
<date>2007-12-01T15:17:39.554917Z</date>
|
503
|
-
<msg>Err.. sorry forgot to add some very importnat files!
|
504
|
-
</msg>
|
505
|
-
</logentry>
|
506
|
-
<logentry
|
507
|
-
revision="154">
|
508
|
-
<author>transami</author>
|
509
|
-
<date>2007-11-30T21:32:15.821687Z</date>
|
510
|
-
<msg>Some task updates.
|
511
|
-
</msg>
|
512
|
-
</logentry>
|
513
|
-
<logentry
|
514
|
-
revision="153">
|
515
|
-
<author>mikel</author>
|
516
|
-
<date>2007-11-30T08:04:36.216050Z</date>
|
517
|
-
<msg>Updated changelog and history</msg>
|
518
|
-
</logentry>
|
519
|
-
<logentry
|
520
|
-
revision="152">
|
521
|
-
<author>mikel</author>
|
522
|
-
<date>2007-11-30T07:58:30.938674Z</date>
|
523
|
-
<msg>Fixed scanner.rb so that it passes the same tests as scanner.c. Also fixed up all the tests to require test_helper.rb so that the load path is correct.
|
524
|
-
|
525
|
-
</msg>
|
526
|
-
</logentry>
|
527
|
-
<logentry
|
528
|
-
revision="151">
|
529
|
-
<author>transami</author>
|
530
|
-
<date>2007-11-29T05:34:12.420891Z</date>
|
531
|
-
<msg>Update Hisotry.txt, NOTES, etc. in prep for release.
|
532
|
-
</msg>
|
533
|
-
</logentry>
|
534
|
-
<logentry
|
535
|
-
revision="150">
|
536
|
-
<author>transami</author>
|
537
|
-
<date>2007-11-29T05:22:04.801061Z</date>
|
538
|
-
<msg>Fixed test script and updated MANIFEST.
|
539
|
-
</msg>
|
540
|
-
</logentry>
|
541
|
-
<logentry
|
542
|
-
revision="149">
|
543
|
-
<author>transami</author>
|
544
|
-
<date>2007-11-29T05:21:35.693122Z</date>
|
545
|
-
<msg>Renamed scanner_c to mailscanner.
|
546
|
-
</msg>
|
547
|
-
</logentry>
|
548
|
-
<logentry
|
549
|
-
revision="148">
|
550
|
-
<author>transami</author>
|
551
|
-
<date>2007-11-29T05:20:07.837657Z</date>
|
552
|
-
<msg>Prepare for next release.
|
553
|
-
</msg>
|
554
|
-
</logentry>
|
555
|
-
<logentry
|
556
|
-
revision="147">
|
557
|
-
<author>transami</author>
|
558
|
-
<date>2007-11-29T05:19:47.125828Z</date>
|
559
|
-
<msg>Adjusted scanner libs for renamed extension.
|
560
|
-
</msg>
|
561
|
-
</logentry>
|
562
|
-
<logentry
|
563
|
-
revision="146">
|
564
|
-
<author>transami</author>
|
565
|
-
<date>2007-11-29T04:57:50.811638Z</date>
|
566
|
-
<msg>Renamed scanner_c.c to mailscanner.c.
|
567
|
-
</msg>
|
568
|
-
</logentry>
|
569
|
-
<logentry
|
570
|
-
revision="145">
|
571
|
-
<author>transami</author>
|
572
|
-
<date>2007-11-29T04:56:40.525004Z</date>
|
573
|
-
<msg>Moved scanner_c/ to mailscanner/.
|
574
|
-
</msg>
|
575
|
-
</logentry>
|
576
|
-
<logentry
|
577
|
-
revision="144">
|
578
|
-
<author>transami</author>
|
579
|
-
<date>2007-11-29T04:39:44.827886Z</date>
|
580
|
-
<msg>Updated meta/ files.
|
581
|
-
</msg>
|
582
|
-
</logentry>
|
583
|
-
<logentry
|
584
|
-
revision="143">
|
585
|
-
<author>transami</author>
|
586
|
-
<date>2007-11-22T17:03:48.278264Z</date>
|
587
|
-
<msg>Updated history log.
|
588
|
-
</msg>
|
589
|
-
</logentry>
|
590
|
-
<logentry
|
591
|
-
revision="142">
|
592
|
-
<author>transami</author>
|
593
|
-
<date>2007-11-22T17:00:25.672665Z</date>
|
594
|
-
<msg>Updated scripts to reflect removed base64 lib.
|
595
|
-
</msg>
|
596
|
-
</logentry>
|
597
|
-
<logentry
|
598
|
-
revision="141">
|
599
|
-
<author>transami</author>
|
600
|
-
<date>2007-11-22T16:59:04.131599Z</date>
|
601
|
-
<msg>Remove base64 c extension, as it's speed benefit was negligable.
|
602
|
-
</msg>
|
603
|
-
</logentry>
|
604
|
-
<logentry
|
605
|
-
revision="140">
|
606
|
-
<author>transami</author>
|
607
|
-
<date>2007-11-21T21:58:50.412293Z</date>
|
608
|
-
<msg>Fixed bug in base64_c.c.
|
609
|
-
</msg>
|
610
|
-
</logentry>
|
611
|
-
<logentry
|
612
|
-
revision="139">
|
613
|
-
<author>transami</author>
|
614
|
-
<date>2007-11-21T21:58:18.099835Z</date>
|
615
|
-
<msg>update to base64 benchmark
|
616
|
-
</msg>
|
617
|
-
</logentry>
|
618
|
-
<logentry
|
619
|
-
revision="138">
|
620
|
-
<author>transami</author>
|
621
|
-
<date>2007-11-21T21:42:41.416676Z</date>
|
622
|
-
<msg>Added base64 benchmark.
|
623
|
-
</msg>
|
624
|
-
</logentry>
|
625
|
-
<logentry
|
626
|
-
revision="137">
|
627
|
-
<author>transami</author>
|
628
|
-
<date>2007-11-21T20:44:33.765316Z</date>
|
629
|
-
<msg>Moved manifest to meta/ --in future this will be auto generated.
|
630
|
-
</msg>
|
631
|
-
</logentry>
|
632
|
-
<logentry
|
633
|
-
revision="136">
|
634
|
-
<author>mikel</author>
|
635
|
-
<date>2007-11-20T13:55:29.342045Z</date>
|
636
|
-
<msg>updated web page css</msg>
|
637
|
-
</logentry>
|
638
|
-
<logentry
|
639
|
-
revision="135">
|
640
|
-
<author>mikel</author>
|
641
|
-
<date>2007-11-20T13:32:42.307187Z</date>
|
642
|
-
<msg>updated style on page</msg>
|
643
|
-
</logentry>
|
644
|
-
<logentry
|
645
|
-
revision="134">
|
646
|
-
<author>mikel</author>
|
647
|
-
<date>2007-11-19T23:17:16.140938Z</date>
|
648
|
-
<msg>Added a bunch of documentation to interface.rb</msg>
|
649
|
-
</logentry>
|
650
|
-
<logentry
|
651
|
-
revision="133">
|
652
|
-
<author>transami</author>
|
653
|
-
<date>2007-11-18T23:54:24.433360Z</date>
|
654
|
-
<msg>Fixed scanner_c load error.
|
655
|
-
</msg>
|
656
|
-
</logentry>
|
657
|
-
<logentry
|
658
|
-
revision="132">
|
659
|
-
<author>transami</author>
|
660
|
-
<date>2007-11-18T22:54:25.803809Z</date>
|
661
|
-
<msg>Updated Manifest.
|
662
|
-
</msg>
|
663
|
-
</logentry>
|
664
|
-
<logentry
|
665
|
-
revision="131">
|
666
|
-
<author>transami</author>
|
667
|
-
<date>2007-11-18T22:53:04.431289Z</date>
|
668
|
-
<msg>Adjustments for base64_c.
|
669
|
-
</msg>
|
670
|
-
</logentry>
|
671
|
-
<logentry
|
672
|
-
revision="130">
|
673
|
-
<author>transami</author>
|
674
|
-
<date>2007-11-18T22:41:38.428203Z</date>
|
675
|
-
<msg>Completed compile rearrangements.
|
676
|
-
</msg>
|
677
|
-
</logentry>
|
678
|
-
<logentry
|
679
|
-
revision="129">
|
680
|
-
<author>transami</author>
|
681
|
-
<date>2007-11-18T22:11:07.154180Z</date>
|
682
|
-
<msg>Moved ext/ file to proper place.
|
683
|
-
</msg>
|
684
|
-
</logentry>
|
685
|
-
<logentry
|
686
|
-
revision="128">
|
687
|
-
<author>transami</author>
|
688
|
-
<date>2007-11-18T22:10:20.709365Z</date>
|
689
|
-
<msg>Added needed ext/ dirs.
|
690
|
-
</msg>
|
691
|
-
</logentry>
|
692
|
-
<logentry
|
693
|
-
revision="127">
|
694
|
-
<author>transami</author>
|
695
|
-
<date>2007-11-18T22:09:32.480817Z</date>
|
696
|
-
<msg>Round about rearrange, sorry.
|
697
|
-
</msg>
|
698
|
-
</logentry>
|
699
|
-
<logentry
|
700
|
-
revision="126">
|
701
|
-
<author>transami</author>
|
702
|
-
<date>2007-11-18T22:08:10.437532Z</date>
|
703
|
-
<msg>Move Makefile.
|
704
|
-
</msg>
|
705
|
-
</logentry>
|
706
|
-
<logentry
|
707
|
-
revision="125">
|
708
|
-
<author>transami</author>
|
709
|
-
<date>2007-11-18T22:07:34.608747Z</date>
|
710
|
-
<msg>Rearranged ext/.
|
711
|
-
</msg>
|
712
|
-
</logentry>
|
713
|
-
<logentry
|
714
|
-
revision="124">
|
715
|
-
<author>transami</author>
|
716
|
-
<date>2007-11-18T22:06:39.385415Z</date>
|
717
|
-
<msg>Working on corect base64 requiring and test passing.
|
718
|
-
</msg>
|
719
|
-
</logentry>
|
720
|
-
<logentry
|
721
|
-
revision="123">
|
722
|
-
<author>transami</author>
|
723
|
-
<date>2007-11-18T14:48:54.265402Z</date>
|
724
|
-
<msg>Minor add ext/ to test includes (should make an option)</msg>
|
725
|
-
</logentry>
|
726
|
-
<logentry
|
727
|
-
revision="122">
|
728
|
-
<author>mikel</author>
|
729
|
-
<date>2007-11-18T02:56:13.264776Z</date>
|
730
|
-
<msg>Added a log more documentation to the interface.rb file - Mikel
|
731
|
-
|
732
|
-
</msg>
|
733
|
-
</logentry>
|
734
|
-
<logentry
|
735
|
-
revision="121">
|
736
|
-
<author>mikel</author>
|
737
|
-
<date>2007-11-17T11:05:37.185419Z</date>
|
738
|
-
<msg>Added google analytics urchin to every page as well as adding tracker codes to the outbound links. Also added blog page.</msg>
|
739
|
-
</logentry>
|
740
|
-
<logentry
|
741
|
-
revision="120">
|
742
|
-
<author>transami</author>
|
743
|
-
<date>2007-11-16T13:40:23.325532Z</date>
|
744
|
-
<msg>Upped version on roll file in anticipation of next release.
|
745
|
-
</msg>
|
746
|
-
</logentry>
|
747
|
-
<logentry
|
748
|
-
revision="119">
|
749
|
-
<author>transami</author>
|
750
|
-
<date>2007-11-16T13:39:10.735117Z</date>
|
751
|
-
<msg>Quick fix just to make base64 work.
|
752
|
-
</msg>
|
753
|
-
</logentry>
|
754
|
-
<logentry
|
755
|
-
revision="118">
|
756
|
-
<author>transami</author>
|
757
|
-
<date>2007-11-15T16:26:12.619968Z</date>
|
758
|
-
<msg>Fixed compile process.
|
759
|
-
</msg>
|
760
|
-
</logentry>
|
761
|
-
<logentry
|
762
|
-
revision="116">
|
763
|
-
<author>transami</author>
|
764
|
-
<date>2007-11-15T15:57:37.922228Z</date>
|
765
|
-
<msg>Improved test and compile scripts.
|
766
|
-
</msg>
|
767
|
-
</logentry>
|
768
|
-
<logentry
|
769
|
-
revision="115">
|
770
|
-
<author>mikel</author>
|
771
|
-
<date>2007-11-15T14:30:50.341429Z</date>
|
772
|
-
<msg>Closed ticket 15445 - tmail not returning a mail object on create_forward
|
773
|
-
Closed ticket 15643 - tmail not returning from address if reply_to is set to nil when you ask a mail object for reply_addresses
|
774
|
-
Added a lot of documentation to the interface.rb file</msg>
|
775
|
-
</logentry>
|
776
|
-
<logentry
|
777
|
-
revision="114">
|
778
|
-
<author>mikel</author>
|
779
|
-
<date>2007-11-15T03:36:00.866321Z</date>
|
780
|
-
<msg>updated index page</msg>
|
781
|
-
</logentry>
|
782
|
-
<logentry
|
783
|
-
revision="113">
|
784
|
-
<author>transami</author>
|
785
|
-
<date>2007-11-12T22:59:50.806526Z</date>
|
786
|
-
<msg>Moved bat/ to script/.
|
787
|
-
</msg>
|
788
|
-
</logentry>
|
789
|
-
<logentry
|
790
|
-
revision="112">
|
791
|
-
<author>transami</author>
|
792
|
-
<date>2007-11-09T00:54:43.607358Z</date>
|
793
|
-
<msg>Additional tasks.
|
794
|
-
</msg>
|
795
|
-
</logentry>
|
796
|
-
<logentry
|
797
|
-
revision="111">
|
798
|
-
<author>transami</author>
|
799
|
-
<date>2007-11-08T21:02:04.181266Z</date>
|
800
|
-
<msg>Started versoin 1.1.2.
|
801
|
-
</msg>
|
802
|
-
</logentry>
|
803
|
-
<logentry
|
804
|
-
revision="110">
|
805
|
-
<author>transami</author>
|
806
|
-
<date>2007-11-08T20:58:56.888709Z</date>
|
807
|
-
<msg>Added zip format to roll file.
|
808
|
-
</msg>
|
809
|
-
</logentry>
|
810
|
-
<logentry
|
811
|
-
revision="109">
|
812
|
-
<author>transami</author>
|
813
|
-
<date>2007-11-08T12:01:13.125738Z</date>
|
814
|
-
<msg>Fixed pubish and rdoc config settings.
|
815
|
-
</msg>
|
816
|
-
</logentry>
|
817
|
-
<logentry
|
818
|
-
revision="108">
|
819
|
-
<author>mikel</author>
|
820
|
-
<date>2007-11-08T08:02:45.618965Z</date>
|
821
|
-
<msg>Added links to the website and updated the notes file.
|
822
|
-
|
823
|
-
</msg>
|
824
|
-
</logentry>
|
825
|
-
<logentry
|
826
|
-
revision="107">
|
827
|
-
<author>transami</author>
|
828
|
-
<date>2007-11-08T04:01:47.549812Z</date>
|
829
|
-
<msg>Updated Manifest.
|
830
|
-
</msg>
|
831
|
-
</logentry>
|
832
|
-
<logentry
|
833
|
-
revision="106">
|
834
|
-
<author>transami</author>
|
835
|
-
<date>2007-11-08T04:01:05.701832Z</date>
|
836
|
-
<msg>Added a clobber/distclean batch file.
|
837
|
-
</msg>
|
838
|
-
</logentry>
|
839
|
-
<logentry
|
840
|
-
revision="105">
|
841
|
-
<author>transami</author>
|
842
|
-
<date>2007-11-08T03:57:12.058883Z</date>
|
843
|
-
<msg>Should be final fine-tuning to extconf.rb
|
844
|
-
</msg>
|
845
|
-
</logentry>
|
846
|
-
<logentry
|
847
|
-
revision="104">
|
848
|
-
<author>transami</author>
|
849
|
-
<date>2007-11-07T17:30:36.241142Z</date>
|
850
|
-
<msg>Finally! Finally! Got Windows to install.
|
851
|
-
</msg>
|
852
|
-
</logentry>
|
853
|
-
<logentry
|
854
|
-
revision="103">
|
855
|
-
<author>transami</author>
|
856
|
-
<date>2007-11-07T14:17:44.213442Z</date>
|
857
|
-
<msg>Force Windows into no extension mode.
|
858
|
-
</msg>
|
859
|
-
</logentry>
|
860
|
-
<logentry
|
861
|
-
revision="102">
|
862
|
-
<author>transami</author>
|
863
|
-
<date>2007-11-07T13:33:21.002038Z</date>
|
864
|
-
<msg>Added log/Note.txt (this is the note for release).
|
865
|
-
</msg>
|
866
|
-
</logentry>
|
867
|
-
<logentry
|
868
|
-
revision="101">
|
869
|
-
<author>transami</author>
|
870
|
-
<date>2007-11-07T13:32:21.457635Z</date>
|
871
|
-
<msg>Added changelog task (still needs one piece).
|
872
|
-
</msg>
|
873
|
-
</logentry>
|
874
|
-
<logentry
|
875
|
-
revision="100">
|
876
|
-
<author>transami</author>
|
877
|
-
<date>2007-11-07T13:31:13.585094Z</date>
|
878
|
-
<msg>Renamed TODO to Todo.txt (oh, the struggle for consistancy).
|
879
|
-
</msg>
|
880
|
-
</logentry>
|
881
|
-
<logentry
|
882
|
-
revision="99">
|
883
|
-
<author>transami</author>
|
884
|
-
<date>2007-11-07T13:15:38.056726Z</date>
|
885
|
-
<msg>Added final note to History.txt.
|
886
|
-
</msg>
|
887
|
-
</logentry>
|
888
|
-
<logentry
|
889
|
-
revision="98">
|
890
|
-
<author>transami</author>
|
891
|
-
<date>2007-11-07T13:13:24.437592Z</date>
|
892
|
-
<msg>Fine-tuning extconf.rb and require_arch.rb.
|
893
|
-
</msg>
|
894
|
-
</logentry>
|
895
|
-
<logentry
|
896
|
-
revision="97">
|
897
|
-
<author>transami</author>
|
898
|
-
<date>2007-11-07T13:03:13.407457Z</date>
|
899
|
-
<msg>Create fallback gem install.
|
900
|
-
</msg>
|
901
|
-
</logentry>
|
902
|
-
<logentry
|
903
|
-
revision="96">
|
904
|
-
<author>transami</author>
|
905
|
-
<date>2007-11-07T12:12:46.598970Z</date>
|
906
|
-
<msg>Changed RUBYGEMS_NO_COMPILE to NORUBYEXT.
|
907
|
-
</msg>
|
908
|
-
</logentry>
|
909
|
-
<logentry
|
910
|
-
revision="95">
|
911
|
-
<author>transami</author>
|
912
|
-
<date>2007-11-07T12:04:35.826663Z</date>
|
913
|
-
<msg>Updated manifest. Capitalized information files (not sure which I like best).
|
914
|
-
</msg>
|
915
|
-
</logentry>
|
916
|
-
<logentry
|
917
|
-
revision="94">
|
918
|
-
<author>transami</author>
|
919
|
-
<date>2007-11-07T11:54:33.355836Z</date>
|
920
|
-
<msg>Finish organization clean-up.
|
921
|
-
</msg>
|
922
|
-
</logentry>
|
923
|
-
<logentry
|
924
|
-
revision="93">
|
925
|
-
<author>transami</author>
|
926
|
-
<date>2007-11-07T11:51:43.567115Z</date>
|
927
|
-
<msg>Add clobber subtasks.
|
928
|
-
</msg>
|
929
|
-
</logentry>
|
930
|
-
<logentry
|
931
|
-
revision="92">
|
932
|
-
<author>transami</author>
|
933
|
-
<date>2007-11-07T11:49:24.925587Z</date>
|
934
|
-
<msg>Updated require_arch and removed linux binaries.
|
935
|
-
</msg>
|
936
|
-
</logentry>
|
937
|
-
<logentry
|
938
|
-
revision="91">
|
939
|
-
<author>transami</author>
|
940
|
-
<date>2007-11-06T18:55:40.637721Z</date>
|
941
|
-
<msg>Updated manifest.
|
942
|
-
</msg>
|
943
|
-
</logentry>
|
944
|
-
<logentry
|
945
|
-
revision="90">
|
946
|
-
<author>transami</author>
|
947
|
-
<date>2007-11-06T18:55:01.932490Z</date>
|
948
|
-
<msg>Updated extconf.rb files to copy extension to arch directories.
|
949
|
-
</msg>
|
950
|
-
</logentry>
|
951
|
-
<logentry
|
952
|
-
revision="89">
|
953
|
-
<author>transami</author>
|
954
|
-
<date>2007-11-06T14:55:03.312869Z</date>
|
955
|
-
<msg>Updated version.rb.
|
956
|
-
</msg>
|
957
|
-
</logentry>
|
958
|
-
<logentry
|
959
|
-
revision="88">
|
960
|
-
<author>transami</author>
|
961
|
-
<date>2007-11-06T14:38:44.511284Z</date>
|
962
|
-
<msg>Added index.rb for Rolls.
|
963
|
-
</msg>
|
964
|
-
</logentry>
|
965
|
-
<logentry
|
966
|
-
revision="87">
|
967
|
-
<author>transami</author>
|
968
|
-
<date>2007-11-06T14:37:40.575393Z</date>
|
969
|
-
<msg>Added require_arch.rb.
|
970
|
-
</msg>
|
971
|
-
</logentry>
|
972
|
-
<logentry
|
973
|
-
revision="86">
|
974
|
-
<author>transami</author>
|
975
|
-
<date>2007-11-06T14:26:08.689877Z</date>
|
976
|
-
<msg>Minor organization details (yet to be fully determined).
|
977
|
-
</msg>
|
978
|
-
</logentry>
|
979
|
-
<logentry
|
980
|
-
revision="85">
|
981
|
-
<author>transami</author>
|
982
|
-
<date>2007-11-06T14:24:57.456598Z</date>
|
983
|
-
<msg>Added config_dir setting to extconf.rb (although it dodn't seem to do any good).
|
984
|
-
</msg>
|
985
|
-
</logentry>
|
986
|
-
<logentry
|
987
|
-
revision="84">
|
988
|
-
<author>transami</author>
|
989
|
-
<date>2007-11-06T14:23:28.909803Z</date>
|
990
|
-
<msg>Added platform tiers to lib/tmail/.
|
991
|
-
</msg>
|
992
|
-
</logentry>
|
993
|
-
<logentry
|
994
|
-
revision="83">
|
995
|
-
<author>transami</author>
|
996
|
-
<date>2007-11-06T05:26:00.083272Z</date>
|
997
|
-
<msg>Moved www to doc/ (RDocs go in doc/rdoc).
|
998
|
-
</msg>
|
999
|
-
</logentry>
|
1000
|
-
<logentry
|
1001
|
-
revision="82">
|
1002
|
-
<author>transami</author>
|
1003
|
-
<date>2007-11-06T05:21:51.376436Z</date>
|
1004
|
-
<msg>Removed tasks directory.
|
1005
|
-
</msg>
|
1006
|
-
</logentry>
|
1007
|
-
<logentry
|
1008
|
-
revision="81">
|
1009
|
-
<author>transami</author>
|
1010
|
-
<date>2007-11-06T05:21:28.630959Z</date>
|
1011
|
-
<msg>Added tag ans compile batch files.
|
1012
|
-
</msg>
|
1013
|
-
</logentry>
|
1014
|
-
<logentry
|
1015
|
-
revision="80">
|
1016
|
-
<author>transami</author>
|
1017
|
-
<date>2007-11-06T04:44:42.956443Z</date>
|
1018
|
-
<msg>Removed Rakefile.
|
1019
|
-
</msg>
|
1020
|
-
</logentry>
|
1021
|
-
<logentry
|
1022
|
-
revision="79">
|
1023
|
-
<author>transami</author>
|
1024
|
-
<date>2007-11-06T04:33:17.117216Z</date>
|
1025
|
-
<msg>Removed Manifest.txt (will be replaced by new manifest).
|
1026
|
-
</msg>
|
1027
|
-
</logentry>
|
1028
|
-
<logentry
|
1029
|
-
revision="78">
|
1030
|
-
<author>transami</author>
|
1031
|
-
<date>2007-11-06T04:31:01.762657Z</date>
|
1032
|
-
<msg>Removed config/ directory.
|
1033
|
-
</msg>
|
1034
|
-
</logentry>
|
1035
|
-
<logentry
|
1036
|
-
revision="77">
|
1037
|
-
<author>transami</author>
|
1038
|
-
<date>2007-11-06T04:27:10.412471Z</date>
|
1039
|
-
<msg>Removed script/ dir.
|
1040
|
-
</msg>
|
1041
|
-
</logentry>
|
1042
|
-
<logentry
|
1043
|
-
revision="76">
|
1044
|
-
<author>transami</author>
|
1045
|
-
<date>2007-11-06T04:24:56.502857Z</date>
|
1046
|
-
<msg>Added compilation batch script, and require_arch.rb.
|
1047
|
-
</msg>
|
1048
|
-
</logentry>
|
1049
|
-
<logentry
|
1050
|
-
revision="75">
|
1051
|
-
<author>transami</author>
|
1052
|
-
<date>2007-11-05T17:09:51.717154Z</date>
|
1053
|
-
<msg>Added platforms to roll file. Alaso remove doc/.
|
1054
|
-
</msg>
|
1055
|
-
</logentry>
|
1056
|
-
<logentry
|
1057
|
-
revision="74">
|
1058
|
-
<author>mikel</author>
|
1059
|
-
<date>2007-11-04T12:58:52.446363Z</date>
|
1060
|
-
<msg>Added some documentation to the lib/mail.rb file and also updated the quickstart guide to reflect the fact we are now a gem.
|
1061
|
-
Also added another test case to make sure a bug that was reported in ruby-talk relating to TMail had nothing to do with TMail.</msg>
|
1062
|
-
</logentry>
|
1063
|
-
<logentry
|
1064
|
-
revision="73">
|
1065
|
-
<author>mikel</author>
|
1066
|
-
<date>2007-11-01T10:07:32.695406Z</date>
|
1067
|
-
<msg>* Closed 1524 - Did another patch on the folding, re-read the RFC's and got clarification on when SHOULD and MUST fold. New folding section at the bottom of encode handles various line lengths which include or do not include whitespace
|
1068
|
-
|
1069
|
-
</msg>
|
1070
|
-
</logentry>
|
1071
|
-
<logentry
|
1072
|
-
revision="72">
|
1073
|
-
<author>mikel</author>
|
1074
|
-
<date>2007-10-31T05:12:09.106234Z</date>
|
1075
|
-
<msg>* Put in an escape clause in the def fold method of class Encode to skip folding of any X- header line.
|
1076
|
-
|
1077
|
-
</msg>
|
1078
|
-
</logentry>
|
1079
|
-
<logentry
|
1080
|
-
revision="71">
|
1081
|
-
<author>transami</author>
|
1082
|
-
<date>2007-10-30T15:08:36.383433Z</date>
|
1083
|
-
<msg>Added separate MANIFEST file, unfortunately it varies slightly from Hoe's.
|
1084
|
-
</msg>
|
1085
|
-
</logentry>
|
1086
|
-
<logentry
|
1087
|
-
revision="70">
|
1088
|
-
<author>transami</author>
|
1089
|
-
<date>2007-10-30T15:07:53.874843Z</date>
|
1090
|
-
<msg>Minor update to header of README.
|
1091
|
-
</msg>
|
1092
|
-
</logentry>
|
1093
|
-
<logentry
|
1094
|
-
revision="69">
|
1095
|
-
<author>transami</author>
|
1096
|
-
<date>2007-10-30T15:07:28.912285Z</date>
|
1097
|
-
<msg>Added formats to roll file, for packaging with box.
|
1098
|
-
</msg>
|
1099
|
-
</logentry>
|
1100
|
-
<logentry
|
1101
|
-
revision="68">
|
1102
|
-
<author>transami</author>
|
1103
|
-
<date>2007-10-30T15:05:48.787220Z</date>
|
1104
|
-
<msg>Added initial set of build tools in bat/.
|
1105
|
-
</msg>
|
1106
|
-
</logentry>
|
1107
|
-
<logentry
|
1108
|
-
revision="67">
|
1109
|
-
<author>transami</author>
|
1110
|
-
<date>2007-10-30T15:03:03.728627Z</date>
|
1111
|
-
<msg>Updated website, adding rdocs.
|
1112
|
-
</msg>
|
1113
|
-
</logentry>
|
1114
|
-
<logentry
|
1115
|
-
revision="66">
|
1116
|
-
<author>transami</author>
|
1117
|
-
<date>2007-10-30T13:50:03.565539Z</date>
|
1118
|
-
<msg>Up'd version to 1.1.1.
|
1119
|
-
</msg>
|
1120
|
-
</logentry>
|
1121
|
-
<logentry
|
1122
|
-
revision="65">
|
1123
|
-
<author>transami</author>
|
1124
|
-
<date>2007-10-30T13:48:57.411035Z</date>
|
1125
|
-
<msg>Minor update to roll file.
|
1126
|
-
</msg>
|
1127
|
-
</logentry>
|
1128
|
-
<logentry
|
1129
|
-
revision="64">
|
1130
|
-
<author>transami</author>
|
1131
|
-
<date>2007-10-30T13:03:04.413701Z</date>
|
1132
|
-
<msg>Added bat/ folder, which we can use ratch scripts for now.
|
1133
|
-
</msg>
|
1134
|
-
</logentry>
|
1135
|
-
<logentry
|
1136
|
-
revision="63">
|
1137
|
-
<author>transami</author>
|
1138
|
-
<date>2007-10-30T13:01:53.290695Z</date>
|
1139
|
-
<msg>Changed extension or roll file (was index).
|
1140
|
-
</msg>
|
1141
|
-
</logentry>
|
1142
|
-
<logentry
|
1143
|
-
revision="62">
|
1144
|
-
<author>mikel</author>
|
1145
|
-
<date>2007-10-29T23:45:52.248209Z</date>
|
1146
|
-
<msg>TMail - Index page update the news</msg>
|
1147
|
-
</logentry>
|
1148
|
-
<logentry
|
1149
|
-
revision="61">
|
1150
|
-
<author>transami</author>
|
1151
|
-
<date>2007-10-29T11:41:31.172533Z</date>
|
1152
|
-
<msg>Added meta directory and index file.
|
1153
|
-
</msg>
|
1154
|
-
</logentry>
|
1155
|
-
<logentry
|
1156
|
-
revision="60">
|
1157
|
-
<author>transami</author>
|
1158
|
-
<date>2007-10-29T11:27:39.839344Z</date>
|
1159
|
-
<msg>Removed extraneous lib directory from website.
|
1160
|
-
</msg>
|
1161
|
-
</logentry>
|
1162
|
-
<logentry
|
1163
|
-
revision="59">
|
1164
|
-
<author>transami</author>
|
1165
|
-
<date>2007-10-29T11:26:46.304192Z</date>
|
1166
|
-
<msg>Updates to website.
|
1167
|
-
* Cleaned up how ruby code was diplayed.
|
1168
|
-
* Cleaned up how shell code was displayed.
|
1169
|
-
* Improved toplevel menu.
|
1170
|
-
</msg>
|
1171
|
-
</logentry>
|
1172
|
-
<logentry
|
1173
|
-
revision="58">
|
1174
|
-
<author>mikel</author>
|
1175
|
-
<date>2007-10-29T09:56:57.415601Z</date>
|
1176
|
-
<msg>Updated against the code that is currently on the website
|
1177
|
-
</msg>
|
1178
|
-
</logentry>
|
1179
|
-
<logentry
|
1180
|
-
revision="57">
|
1181
|
-
<author>mikel</author>
|
1182
|
-
<date>2007-10-29T09:02:29.734853Z</date>
|
1183
|
-
<msg>Removed an old make file and tagged TMail 1.1.0
|
1184
|
-
</msg>
|
1185
|
-
</logentry>
|
1186
|
-
<logentry
|
1187
|
-
revision="56">
|
1188
|
-
<author>mikel</author>
|
1189
|
-
<date>2007-10-29T07:59:43.156121Z</date>
|
1190
|
-
<msg>* Updated version
|
1191
|
-
</msg>
|
1192
|
-
</logentry>
|
1193
|
-
<logentry
|
1194
|
-
revision="55">
|
1195
|
-
<author>mikel</author>
|
1196
|
-
<date>2007-10-29T07:53:00.684789Z</date>
|
1197
|
-
<msg>* Refactored how the package was going to_s - made the handling of quotation marks inside of the header more consistent and in accordance with the RFCs on the matter (ie, a filename in a content-disposition field paramater filename=README.TXT will not be quoted unless it contains special characters per RFC 1521 )
|
1198
|
-
|
1199
|
-
</msg>
|
1200
|
-
</logentry>
|
1201
|
-
<logentry
|
1202
|
-
revision="54">
|
1203
|
-
<author>mikel</author>
|
1204
|
-
<date>2007-10-28T03:49:12.060238Z</date>
|
1205
|
-
<msg>* Made the package into a GEM!
|
1206
|
-
|
1207
|
-
</msg>
|
1208
|
-
</logentry>
|
1209
|
-
<logentry
|
1210
|
-
revision="52">
|
1211
|
-
<author>mikel</author>
|
1212
|
-
<date>2007-10-27T14:12:17.673586Z</date>
|
1213
|
-
<msg>* Preparing for export as a GEM, final changes for the 0.12 release
|
1214
|
-
</msg>
|
1215
|
-
</logentry>
|
1216
|
-
<logentry
|
1217
|
-
revision="51">
|
1218
|
-
<author>transami</author>
|
1219
|
-
<date>2007-10-27T11:44:02.591394Z</date>
|
1220
|
-
<msg>Update usage.html, changed mail.encoded to mail.to_s.
|
1221
|
-
</msg>
|
1222
|
-
</logentry>
|
1223
|
-
<logentry
|
1224
|
-
revision="50">
|
1225
|
-
<author>mikel</author>
|
1226
|
-
<date>2007-10-27T09:47:24.875171Z</date>
|
1227
|
-
<msg>* Re-factored the quotation handling - learnt more about how this is implemented by Minero, and re-wrote my handling of it to preserve quotation marks in the headers [Mikel]
|
1228
|
-
|
1229
|
-
</msg>
|
1230
|
-
</logentry>
|
1231
|
-
<logentry
|
1232
|
-
revision="49">
|
1233
|
-
<author>mikel</author>
|
1234
|
-
<date>2007-10-27T05:45:27.821083Z</date>
|
1235
|
-
<msg>* Closed 15077 - Assigning the body via mail.body would not reparse the email body text. Changed mail.rb to reparse body if assigned via body= String.
|
1236
|
-
</msg>
|
1237
|
-
</logentry>
|
1238
|
-
<logentry
|
1239
|
-
revision="48">
|
1240
|
-
<author>mikel</author>
|
1241
|
-
<date>2007-10-26T02:22:51.533624Z</date>
|
1242
|
-
<msg>==== Fri Oct 26 02:21:13 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1243
|
-
|
1244
|
-
* Deleted incompatabilities from the root folder (it is in www/outdated)
|
1245
|
-
|
1246
|
-
</msg>
|
1247
|
-
</logentry>
|
1248
|
-
<logentry
|
1249
|
-
revision="47">
|
1250
|
-
<author>transami</author>
|
1251
|
-
<date>2007-10-25T07:50:10.483351Z</date>
|
1252
|
-
<msg>Adjusted some colors.
|
1253
|
-
</msg>
|
1254
|
-
</logentry>
|
1255
|
-
<logentry
|
1256
|
-
revision="46">
|
1257
|
-
<author>transami</author>
|
1258
|
-
<date>2007-10-25T07:06:28.503104Z</date>
|
1259
|
-
<msg>Moved BUGS and DEPENDS to outdated.
|
1260
|
-
</msg>
|
1261
|
-
</logentry>
|
1262
|
-
<logentry
|
1263
|
-
revision="45">
|
1264
|
-
<author>transami</author>
|
1265
|
-
<date>2007-10-25T07:04:55.399242Z</date>
|
1266
|
-
<msg>Move old doc files (Having trouble with SVN)
|
1267
|
-
</msg>
|
1268
|
-
</logentry>
|
1269
|
-
<logentry
|
1270
|
-
revision="44">
|
1271
|
-
<author>transami</author>
|
1272
|
-
<date>2007-10-25T06:58:22.198462Z</date>
|
1273
|
-
<msg>Moved NEWS to outdated. It's just too old to be of much use.
|
1274
|
-
</msg>
|
1275
|
-
</logentry>
|
1276
|
-
<logentry
|
1277
|
-
revision="43">
|
1278
|
-
<author>transami</author>
|
1279
|
-
<date>2007-10-25T06:53:04.747661Z</date>
|
1280
|
-
<msg>Added jquery.js to website.
|
1281
|
-
</msg>
|
1282
|
-
</logentry>
|
1283
|
-
<logentry
|
1284
|
-
revision="42">
|
1285
|
-
<author>transami</author>
|
1286
|
-
<date>2007-10-25T06:28:37.093580Z</date>
|
1287
|
-
<msg>Uncluttered trunk by moving some documentation files.
|
1288
|
-
</msg>
|
1289
|
-
</logentry>
|
1290
|
-
<logentry
|
1291
|
-
revision="41">
|
1292
|
-
<author>transami</author>
|
1293
|
-
<date>2007-10-25T06:03:59.353189Z</date>
|
1294
|
-
<msg>Contined work on website -- using jQuery to keep DRY.
|
1295
|
-
</msg>
|
1296
|
-
</logentry>
|
1297
|
-
<logentry
|
1298
|
-
revision="40">
|
1299
|
-
<author>mikel</author>
|
1300
|
-
<date>2007-10-25T05:53:26.849623Z</date>
|
1301
|
-
<msg>==== Thu Oct 25 05:52:02 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1302
|
-
|
1303
|
-
* Moved facade.rb to interface.rb - updated mail.rb to reflect this
|
1304
|
-
|
1305
|
-
</msg>
|
1306
|
-
</logentry>
|
1307
|
-
<logentry
|
1308
|
-
revision="39">
|
1309
|
-
<author>mikel</author>
|
1310
|
-
<date>2007-10-25T05:43:33.445948Z</date>
|
1311
|
-
<msg>==== Thu Oct 25 05:39:09 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1312
|
-
|
1313
|
-
* Totally rewrote the README file to be in RDoc format and provide a beginning place for the RDoc documentation
|
1314
|
-
|
1315
|
-
* Cleaned up the root directory of all the spurious files.
|
1316
|
-
|
1317
|
-
* Merged the Changelog files and made it into RDoc format.
|
1318
|
-
|
1319
|
-
* Cleaned up the Bugs and TODO files
|
1320
|
-
|
1321
|
-
* Added RDoc headers to each source file.
|
1322
|
-
|
1323
|
-
* Started doing the RDoc on the utils.rb file
|
1324
|
-
|
1325
|
-
</msg>
|
1326
|
-
</logentry>
|
1327
|
-
<logentry
|
1328
|
-
revision="38">
|
1329
|
-
<author>mikel</author>
|
1330
|
-
<date>2007-10-25T03:20:03.329804Z</date>
|
1331
|
-
<msg>Thu Oct 25 03:18:18 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1332
|
-
|
1333
|
-
* Cleaned up the tree some in terms of documents. Merged the
|
1334
|
-
change logs, moved the 0.9 to 0.10 docs into the outdated
|
1335
|
-
folder, modified the TODO
|
1336
|
-
|
1337
|
-
</msg>
|
1338
|
-
</logentry>
|
1339
|
-
<logentry
|
1340
|
-
revision="37">
|
1341
|
-
<author>mikel</author>
|
1342
|
-
<date>2007-10-25T03:07:04.579711Z</date>
|
1343
|
-
<msg>Mon Oct 25 13:06:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1344
|
-
|
1345
|
-
* Moved doc directory to WWW so that running RDoc by default doesn't
|
1346
|
-
overwrite all the files.
|
1347
|
-
|
1348
|
-
</msg>
|
1349
|
-
</logentry>
|
1350
|
-
<logentry
|
1351
|
-
revision="35">
|
1352
|
-
<author>mikel</author>
|
1353
|
-
<date>2007-10-25T01:13:58.442709Z</date>
|
1354
|
-
<msg>Mon Oct 25 11:12:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1355
|
-
|
1356
|
-
* Added quickstart page to WWW as well as applied styling
|
1357
|
-
to all existing pages in the site.
|
1358
|
-
|
1359
|
-
* Uploaded site to rubyforge
|
1360
|
-
|
1361
|
-
</msg>
|
1362
|
-
</logentry>
|
1363
|
-
<logentry
|
1364
|
-
revision="34">
|
1365
|
-
<author>transami</author>
|
1366
|
-
<date>2007-10-24T21:50:17.944285Z</date>
|
1367
|
-
<msg>Closed div end-tag in index.html.
|
1368
|
-
</msg>
|
1369
|
-
</logentry>
|
1370
|
-
<logentry
|
1371
|
-
revision="33">
|
1372
|
-
<author>transami</author>
|
1373
|
-
<date>2007-10-24T19:03:13.457253Z</date>
|
1374
|
-
<msg>Updated header of index.html and added some new images.
|
1375
|
-
</msg>
|
1376
|
-
</logentry>
|
1377
|
-
<logentry
|
1378
|
-
revision="32">
|
1379
|
-
<author>transami</author>
|
1380
|
-
<date>2007-10-24T18:20:43.445330Z</date>
|
1381
|
-
<msg>Added new website (rough-draft).
|
1382
|
-
</msg>
|
1383
|
-
</logentry>
|
1384
|
-
<logentry
|
1385
|
-
revision="31">
|
1386
|
-
<author>transami</author>
|
1387
|
-
<date>2007-10-24T18:16:22.536873Z</date>
|
1388
|
-
<msg>Moved doc/doc.ja and doc/rdd to outdated/.
|
1389
|
-
</msg>
|
1390
|
-
</logentry>
|
1391
|
-
<logentry
|
1392
|
-
revision="30">
|
1393
|
-
<author>transami</author>
|
1394
|
-
<date>2007-10-24T18:15:36.517036Z</date>
|
1395
|
-
<msg>Added doc/outdated to hold old documentation files.
|
1396
|
-
</msg>
|
1397
|
-
</logentry>
|
1398
|
-
<logentry
|
1399
|
-
revision="29">
|
1400
|
-
<author>transami</author>
|
1401
|
-
<date>2007-10-24T18:14:30.663017Z</date>
|
1402
|
-
<msg>Moved doc/doc.en/ to doc/manual/.
|
1403
|
-
</msg>
|
1404
|
-
</logentry>
|
1405
|
-
<logentry
|
1406
|
-
revision="28">
|
1407
|
-
<author>transami</author>
|
1408
|
-
<date>2007-10-24T18:13:35.531921Z</date>
|
1409
|
-
<msg>Edited manual/index.html.
|
1410
|
-
</msg>
|
1411
|
-
</logentry>
|
1412
|
-
<logentry
|
1413
|
-
revision="27">
|
1414
|
-
<author>transami</author>
|
1415
|
-
<date>2007-10-24T15:45:30.992502Z</date>
|
1416
|
-
<msg>Moved doc.en/, doc.ja/ and rdd/ to new doc/ directory.
|
1417
|
-
</msg>
|
1418
|
-
</logentry>
|
1419
|
-
<logentry
|
1420
|
-
revision="26">
|
1421
|
-
<author>transami</author>
|
1422
|
-
<date>2007-10-24T15:42:44.096375Z</date>
|
1423
|
-
<msg>Moved doc to rdd.
|
1424
|
-
</msg>
|
1425
|
-
</logentry>
|
1426
|
-
<logentry
|
1427
|
-
revision="23">
|
1428
|
-
<author>mikel</author>
|
1429
|
-
<date>2007-10-24T12:41:36.714810Z</date>
|
1430
|
-
<msg>Mon Oct 24 22:40:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1431
|
-
|
1432
|
-
* Updated website to reflect release.
|
1433
|
-
|
1434
|
-
</msg>
|
1435
|
-
</logentry>
|
1436
|
-
<logentry
|
1437
|
-
revision="21">
|
1438
|
-
<author>mikel</author>
|
1439
|
-
<date>2007-10-24T11:17:06.861437Z</date>
|
1440
|
-
<msg>==========================================
|
1441
|
-
Version 0.11.0. Released
|
1442
|
-
Mon Oct 24 21:14:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1443
|
-
==========================================
|
1444
|
-
|
1445
|
-
</msg>
|
1446
|
-
</logentry>
|
1447
|
-
<logentry
|
1448
|
-
revision="20">
|
1449
|
-
<author>mikel</author>
|
1450
|
-
<date>2007-10-24T11:07:44.991761Z</date>
|
1451
|
-
<msg>Moving 0.11 branch into trunk
|
1452
|
-
|
1453
|
-
</msg>
|
1454
|
-
</logentry>
|
1455
|
-
<logentry
|
1456
|
-
revision="18">
|
1457
|
-
<author>mikel</author>
|
1458
|
-
<date>2007-10-24T07:52:48.978999Z</date>
|
1459
|
-
<msg>Mon Oct 24 17:50:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1460
|
-
|
1461
|
-
* Remaining failing tests are one encoding problem with
|
1462
|
-
relating to RFC 2231 and another problem where special
|
1463
|
-
characters are not properly quoted if they are the name
|
1464
|
-
portion of an email address (ie, TMail does not handle
|
1465
|
-
the address <"@"@example.com> properly)
|
1466
|
-
|
1467
|
-
* Closed #14964 - The TMail from ActionMailer Preview Release
|
1468
|
-
2.0 is now fully merged into TMail branch 0.11.
|
1469
|
-
All previous tests and examples relating to TMail that
|
1470
|
-
were part of ActionMailer 2.0 Preview Release now pass.
|
1471
|
-
|
1472
|
-
* Closed #15008 - Fixed handling of multipart content type
|
1473
|
-
headers. Now tested against many types of email.
|
1474
|
-
TMails' behaviour now is to take any boundary type, if
|
1475
|
-
it contains illegal characters, it will wrap it in ""
|
1476
|
-
when requesting the content type by mail['content-type]
|
1477
|
-
you will receive it unquoted, when outputting the email
|
1478
|
-
to_s as a whole you will receive the content-type field
|
1479
|
-
with the boundary section quoted if it contains illegal
|
1480
|
-
characters.
|
1481
|
-
|
1482
|
-
* Replaced id with object_id line 221 in stringio.rb
|
1483
|
-
|
1484
|
-
</msg>
|
1485
|
-
</logentry>
|
1486
|
-
<logentry
|
1487
|
-
revision="17">
|
1488
|
-
<author>mikel</author>
|
1489
|
-
<date>2007-10-24T05:43:15.229569Z</date>
|
1490
|
-
<msg>Fix up on revision 16 - forgot to add in files
|
1491
|
-
</msg>
|
1492
|
-
</logentry>
|
1493
|
-
<logentry
|
1494
|
-
revision="16">
|
1495
|
-
<author>mikel</author>
|
1496
|
-
<date>2007-10-24T05:36:24.016870Z</date>
|
1497
|
-
<msg>Mon Oct 24 15:35:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1498
|
-
|
1499
|
-
* Copied over the TMail/*.rb files from the TRUNK version of Rails
|
1500
|
-
ActionMailer (2.0 Preview Release) into branch for 0.11.0
|
1501
|
-
|
1502
|
-
* Fixed up many broken tests so that they pass (testing errors,
|
1503
|
-
including wrong paths etc)
|
1504
|
-
|
1505
|
-
* Closed #15002 - Fixed error where handling of MIME content-type
|
1506
|
-
headers that had quoted parameters due to including RFC 2045
|
1507
|
-
special characters were being stripped of their quotation marks
|
1508
|
-
when the mail object was sent "to_s". Now any quotation marks
|
1509
|
-
that were in the original are maintained in the result
|
1510
|
-
|
1511
|
-
* Closed #14999 - TMail now "fixes" illegal Content-Type bondary=
|
1512
|
-
parameter by wrapping it in double quotation marks per RFC 2045
|
1513
|
-
and also produces this in the mail.to_s method
|
1514
|
-
|
1515
|
-
* Added in tmail/core_extensions.rb which installs Object.blank?
|
1516
|
-
unless Object already responds_to?(:blank?) ie, we are already
|
1517
|
-
in a Rails environment.
|
1518
|
-
|
1519
|
-
* Updated names of the test files as a start to cleaning up the
|
1520
|
-
tests directory.
|
1521
|
-
|
1522
|
-
|
1523
|
-
</msg>
|
1524
|
-
</logentry>
|
1525
|
-
<logentry
|
1526
|
-
revision="15">
|
1527
|
-
<author>mikel</author>
|
1528
|
-
<date>2007-10-23T14:46:16.425256Z</date>
|
1529
|
-
<msg>Mon Oct 24 0:40:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1530
|
-
|
1531
|
-
* Copied over Rails modified TMail into branch for 0.11.
|
1532
|
-
|
1533
|
-
</msg>
|
1534
|
-
</logentry>
|
1535
|
-
<logentry
|
1536
|
-
revision="14">
|
1537
|
-
<author>mikel</author>
|
1538
|
-
<date>2007-10-23T07:18:36.599915Z</date>
|
1539
|
-
<msg>Mon Oct 23 17:13:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1540
|
-
|
1541
|
-
* Applied Rails revisions 965. Protect against nil strings and
|
1542
|
-
empty conversion bases.
|
1543
|
-
|
1544
|
-
* Applied Rails revisions 964. Made the unquoted string and
|
1545
|
-
body the default.
|
1546
|
-
|
1547
|
-
|
1548
|
-
</msg>
|
1549
|
-
</logentry>
|
1550
|
-
<logentry
|
1551
|
-
revision="13">
|
1552
|
-
<author>mikel</author>
|
1553
|
-
<date>2007-10-23T05:06:21.333273Z</date>
|
1554
|
-
<msg>Mon Oct 23 14:56:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1555
|
-
|
1556
|
-
* Applied Rails revision 919. Don't fail on an empty body or
|
1557
|
-
empty subject line, default to an empty string body or subject
|
1558
|
-
|
1559
|
-
|
1560
|
-
</msg>
|
1561
|
-
</logentry>
|
1562
|
-
<logentry
|
1563
|
-
revision="12">
|
1564
|
-
<author>mikel</author>
|
1565
|
-
<date>2007-10-23T05:03:01.248518Z</date>
|
1566
|
-
<msg>Mon Oct 23 14:56:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1567
|
-
|
1568
|
-
* Applied Rails revision 918. Don't include blank attachments
|
1569
|
-
in the email
|
1570
|
-
|
1571
|
-
</msg>
|
1572
|
-
</logentry>
|
1573
|
-
<logentry
|
1574
|
-
revision="11">
|
1575
|
-
<author>mikel</author>
|
1576
|
-
<date>2007-10-23T04:58:33.516473Z</date>
|
1577
|
-
<msg>Mon Oct 23 14:56:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1578
|
-
|
1579
|
-
* Applied Rails ticket #916. Handles better quoting and handling
|
1580
|
-
of attachments.
|
1581
|
-
|
1582
|
-
</msg>
|
1583
|
-
</logentry>
|
1584
|
-
<logentry
|
1585
|
-
revision="10">
|
1586
|
-
<author>mikel</author>
|
1587
|
-
<date>2007-10-23T04:42:31.027451Z</date>
|
1588
|
-
<msg>Mon Oct 23 14:41:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1589
|
-
|
1590
|
-
* Merged net.rb - code clean up - Closes Task#1736
|
1591
|
-
|
1592
|
-
</msg>
|
1593
|
-
</logentry>
|
1594
|
-
<logentry
|
1595
|
-
revision="9">
|
1596
|
-
<author>mikel</author>
|
1597
|
-
<date>2007-10-23T04:36:00.148697Z</date>
|
1598
|
-
<msg>Mon Oct 23 14:35:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1599
|
-
|
1600
|
-
* Merged stringio.rb - code clean up - Closes Task#1742
|
1601
|
-
|
1602
|
-
</msg>
|
1603
|
-
</logentry>
|
1604
|
-
<logentry
|
1605
|
-
revision="8">
|
1606
|
-
<author>mikel</author>
|
1607
|
-
<date>2007-10-23T04:24:39.141369Z</date>
|
1608
|
-
<msg>Mon Oct 23 14:23:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1609
|
-
|
1610
|
-
* Merged config.rb - code clean up - Closes Task#1726
|
1611
|
-
|
1612
|
-
</msg>
|
1613
|
-
</logentry>
|
1614
|
-
<logentry
|
1615
|
-
revision="7">
|
1616
|
-
<author>mikel</author>
|
1617
|
-
<date>2007-10-23T04:21:40.596952Z</date>
|
1618
|
-
<msg>Mon Oct 23 14:01:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1619
|
-
|
1620
|
-
* Merged address.rb - code clean up - Closes Task#1723
|
1621
|
-
|
1622
|
-
* Copied in the Rails test Email fixtures
|
1623
|
-
|
1624
|
-
* Added in outlook test email for invalid boundary type
|
1625
|
-
|
1626
|
-
</msg>
|
1627
|
-
</logentry>
|
1628
|
-
<logentry
|
1629
|
-
revision="4">
|
1630
|
-
<author>mikel</author>
|
1631
|
-
<date>2007-10-22T14:19:19.483139Z</date>
|
1632
|
-
<msg>Mikel Lindsaar
|
1633
|
-
Updated version for release
|
1634
|
-
|
1635
|
-
</msg>
|
1636
|
-
</logentry>
|
1637
|
-
<logentry
|
1638
|
-
revision="3">
|
1639
|
-
<author>mikel</author>
|
1640
|
-
<date>2007-10-22T14:16:24.891119Z</date>
|
1641
|
-
<msg>Mon Oct 22 22:00:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1642
|
-
|
1643
|
-
* General cleanup - converted all files to UTF-8 from the various
|
1644
|
-
encodings.
|
1645
|
-
|
1646
|
-
|
1647
|
-
</msg>
|
1648
|
-
</logentry>
|
1649
|
-
<logentry
|
1650
|
-
revision="2">
|
1651
|
-
<author>mikel</author>
|
1652
|
-
<date>2007-10-22T12:17:27.215341Z</date>
|
1653
|
-
<msg>Mon Oct 22 22:00:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
|
1654
|
-
|
1655
|
-
* Fixed all tests so that they now pass - were problems with the times
|
1656
|
-
being checked were hard coded for Tokyo time and so would fail in a
|
1657
|
-
different time zone. All of the tests that were failing due to this
|
1658
|
-
now pass.
|
1659
|
-
|
1660
|
-
* Fixed handling of MIME content-type header handling so that TMail now
|
1661
|
-
quotes any content-type it finds to contain invalid characters per
|
1662
|
-
RFC 2045 which are "/", "?" or "=". Per RFC, handling is to put
|
1663
|
-
double quotes are put around it with the quote_boundary method, we
|
1664
|
-
now do this.
|
1665
|
-
|
1666
|
-
* Updated Copyright year for Minero Aoki
|
1667
|
-
|
1668
|
-
</msg>
|
1669
|
-
</logentry>
|
1670
|
-
<logentry
|
1671
|
-
revision="1">
|
1672
|
-
<author>transami</author>
|
1673
|
-
<date>2007-09-26T13:22:33.299386Z</date>
|
1674
|
-
<msg>initial import
|
1675
|
-
</msg>
|
1676
|
-
</logentry>
|
1677
|
-
</log>
|