campaign_monitor 0.1.0 → 0.1.1
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/doc/created.rid +1 -1
- data/doc/fr_file_index.html +2 -0
- data/doc/index.html +1 -1
- data/init.rb +1 -0
- data/install.rb +0 -0
- data/lib/campaign_monitor.rb +8 -0
- metadata +141 -147
- data/doc/classes/CampaignMonitor/Campaign.src/M000037.html +0 -18
- data/doc/classes/CampaignMonitor/Client.src/M000019.html +0 -23
- data/doc/classes/CampaignMonitor/List.src/M000027.html +0 -23
- data/doc/classes/CampaignMonitor/Result.src/M000021.html +0 -19
- data/doc/classes/CampaignMonitor/Subscriber.src/M000015.html +0 -19
- data/doc/classes/CampaignMonitor/SubscriberBounce.src/M000020.html +0 -20
- data/doc/classes/CampaignMonitor/SubscriberClick.src/M000011.html +0 -20
- data/doc/classes/CampaignMonitor/SubscriberOpen.src/M000012.html +0 -20
- data/doc/classes/CampaignMonitor/SubscriberUnsubscribe.src/M000016.html +0 -19
- data/doc/classes/CampaignMonitorTest.html +0 -137
- data/doc/classes/CampaignMonitorTest.src/M000001.html +0 -18
- data/doc/files/init_rb.html +0 -108
- data/doc/files/install_rb.html +0 -101
- data/doc/files/test/campaign_monitor_test_rb.html +0 -101
data/doc/created.rid
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
Fri May 12 10:43:52 WST 2006
|
data/doc/fr_file_index.html
CHANGED
|
@@ -20,6 +20,8 @@
|
|
|
20
20
|
<div id="index">
|
|
21
21
|
<h1 class="section-bar">Files</h1>
|
|
22
22
|
<div id="index-entries">
|
|
23
|
+
<a href="files/init_rb.html">init.rb</a><br />
|
|
24
|
+
<a href="files/install_rb.html">install.rb</a><br />
|
|
23
25
|
<a href="files/lib/campaign_monitor_rb.html">lib/campaign_monitor.rb</a><br />
|
|
24
26
|
<a href="files/test/campaign_monitor_test_rb.html">test/campaign_monitor_test.rb</a><br />
|
|
25
27
|
</div>
|
data/doc/index.html
CHANGED
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
<frame src="fr_class_index.html" name="Classes" />
|
|
20
20
|
<frame src="fr_method_index.html" name="Methods" />
|
|
21
21
|
</frameset>
|
|
22
|
-
<frame src="files/
|
|
22
|
+
<frame src="files/init_rb.html" name="docwin" />
|
|
23
23
|
</frameset>
|
|
24
24
|
</html>
|
data/init.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'campaign_monitor'
|
data/install.rb
ADDED
|
File without changes
|
data/lib/campaign_monitor.rb
CHANGED
|
@@ -439,6 +439,14 @@ class CampaignMonitor
|
|
|
439
439
|
Result.new(response["Message"], response["Code"].to_i)
|
|
440
440
|
end
|
|
441
441
|
|
|
442
|
+
# Example
|
|
443
|
+
# @subscriber = Subscriber.new("ralph.wiggum@simpsons.net")
|
|
444
|
+
# @subscriber.add_and_resubscribe(12345)
|
|
445
|
+
def add_and_resubscribe(list_id)
|
|
446
|
+
response = @cm_client.Subscriber_AddAndResubscribe("ListID" => list_id, "Email" => @email_address, "Name" => @name)
|
|
447
|
+
Result.new(response["Message"], response["Code"].to_i)
|
|
448
|
+
end
|
|
449
|
+
|
|
442
450
|
# Example
|
|
443
451
|
# @subscriber = Subscriber.new("ralph.wiggum@simpsons.net")
|
|
444
452
|
# @subscriber.unsubscribe(12345)
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.
|
|
2
|
+
rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: campaign_monitor
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.1.
|
|
7
|
-
date: 2006-
|
|
6
|
+
version: 0.1.1
|
|
7
|
+
date: 2006-09-24 00:00:00 +08:00
|
|
8
8
|
summary: Provides access to the Campaign Monitor API
|
|
9
9
|
require_paths:
|
|
10
|
-
|
|
10
|
+
- lib
|
|
11
11
|
email: jordan@spintech.com.au
|
|
12
12
|
homepage: http://spintech.com.au/projects/plugins/campaign_monitor
|
|
13
13
|
rubyforge_project: campaignmonitor
|
|
@@ -18,158 +18,152 @@ bindir: bin
|
|
|
18
18
|
has_rdoc: true
|
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
20
|
requirements:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
version: 0.0.0
|
|
21
|
+
- - ">"
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.0.0
|
|
25
24
|
version:
|
|
26
25
|
platform: ruby
|
|
27
26
|
signing_key:
|
|
28
27
|
cert_chain:
|
|
28
|
+
post_install_message:
|
|
29
29
|
authors:
|
|
30
|
-
|
|
30
|
+
- Jordan Brock
|
|
31
31
|
files:
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
- doc/classes/CampaignMonitor.src/M000034.html
|
|
157
|
-
- doc/classes/CampaignMonitor.src/M000035.html
|
|
158
|
-
- doc/classes/CampaignMonitorTest.src/M000001.html
|
|
159
|
-
- doc/classes/CMCampaignSummary.src/M000003.html
|
|
160
|
-
- doc/classes/CMResult.src/M000004.html
|
|
161
|
-
- doc/classes/Hash.src/M000002.html
|
|
162
|
-
- doc/classes/Symbol.src/M000001.html
|
|
163
|
-
- doc/files/campaign_monitor_old_rb.html
|
|
164
|
-
- doc/files/init_rb.html
|
|
165
|
-
- doc/files/install_rb.html
|
|
166
|
-
- doc/files/lib/campaign_monitor_rb.html
|
|
167
|
-
- doc/files/test/campaign_monitor_test_rb.html
|
|
32
|
+
- CHANGELOG
|
|
33
|
+
- MIT-LICENSE
|
|
34
|
+
- README
|
|
35
|
+
- TODO
|
|
36
|
+
- lib/campaign_monitor.rb
|
|
37
|
+
- test/campaign_monitor_test.rb
|
|
38
|
+
- doc/created.rid
|
|
39
|
+
- doc/fr_class_index.html
|
|
40
|
+
- doc/fr_file_index.html
|
|
41
|
+
- doc/fr_method_index.html
|
|
42
|
+
- doc/index.html
|
|
43
|
+
- doc/rdoc-style.css
|
|
44
|
+
- doc/classes/CampaignMonitor.html
|
|
45
|
+
- doc/classes/CMCampaignSummary.html
|
|
46
|
+
- doc/classes/CMClient.html
|
|
47
|
+
- doc/classes/CMResult.html
|
|
48
|
+
- doc/classes/Hash.html
|
|
49
|
+
- doc/classes/Symbol.html
|
|
50
|
+
- doc/classes/CampaignMonitor/Campaign.html
|
|
51
|
+
- doc/classes/CampaignMonitor/Client.html
|
|
52
|
+
- doc/classes/CampaignMonitor/List.html
|
|
53
|
+
- doc/classes/CampaignMonitor/Result.html
|
|
54
|
+
- doc/classes/CampaignMonitor/Subscriber.html
|
|
55
|
+
- doc/classes/CampaignMonitor/SubscriberBounce.html
|
|
56
|
+
- doc/classes/CampaignMonitor/SubscriberClick.html
|
|
57
|
+
- doc/classes/CampaignMonitor/SubscriberOpen.html
|
|
58
|
+
- doc/classes/CampaignMonitor/SubscriberUnsubscribe.html
|
|
59
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000027.html
|
|
60
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000028.html
|
|
61
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000029.html
|
|
62
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000030.html
|
|
63
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000031.html
|
|
64
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000032.html
|
|
65
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000033.html
|
|
66
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000034.html
|
|
67
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000035.html
|
|
68
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000036.html
|
|
69
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000053.html
|
|
70
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000054.html
|
|
71
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000055.html
|
|
72
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000056.html
|
|
73
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000057.html
|
|
74
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000058.html
|
|
75
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000059.html
|
|
76
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000060.html
|
|
77
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000061.html
|
|
78
|
+
- doc/classes/CampaignMonitor/Campaign.src/M000062.html
|
|
79
|
+
- doc/classes/CampaignMonitor/Client.src/M000016.html
|
|
80
|
+
- doc/classes/CampaignMonitor/Client.src/M000017.html
|
|
81
|
+
- doc/classes/CampaignMonitor/Client.src/M000018.html
|
|
82
|
+
- doc/classes/CampaignMonitor/Client.src/M000042.html
|
|
83
|
+
- doc/classes/CampaignMonitor/Client.src/M000043.html
|
|
84
|
+
- doc/classes/CampaignMonitor/Client.src/M000044.html
|
|
85
|
+
- doc/classes/CampaignMonitor/List.src/M000021.html
|
|
86
|
+
- doc/classes/CampaignMonitor/List.src/M000022.html
|
|
87
|
+
- doc/classes/CampaignMonitor/List.src/M000023.html
|
|
88
|
+
- doc/classes/CampaignMonitor/List.src/M000024.html
|
|
89
|
+
- doc/classes/CampaignMonitor/List.src/M000025.html
|
|
90
|
+
- doc/classes/CampaignMonitor/List.src/M000026.html
|
|
91
|
+
- doc/classes/CampaignMonitor/List.src/M000047.html
|
|
92
|
+
- doc/classes/CampaignMonitor/List.src/M000048.html
|
|
93
|
+
- doc/classes/CampaignMonitor/List.src/M000049.html
|
|
94
|
+
- doc/classes/CampaignMonitor/List.src/M000050.html
|
|
95
|
+
- doc/classes/CampaignMonitor/List.src/M000051.html
|
|
96
|
+
- doc/classes/CampaignMonitor/List.src/M000052.html
|
|
97
|
+
- doc/classes/CampaignMonitor/Result.src/M000020.html
|
|
98
|
+
- doc/classes/CampaignMonitor/Result.src/M000046.html
|
|
99
|
+
- doc/classes/CampaignMonitor/Subscriber.src/M000012.html
|
|
100
|
+
- doc/classes/CampaignMonitor/Subscriber.src/M000013.html
|
|
101
|
+
- doc/classes/CampaignMonitor/Subscriber.src/M000014.html
|
|
102
|
+
- doc/classes/CampaignMonitor/Subscriber.src/M000038.html
|
|
103
|
+
- doc/classes/CampaignMonitor/Subscriber.src/M000039.html
|
|
104
|
+
- doc/classes/CampaignMonitor/Subscriber.src/M000040.html
|
|
105
|
+
- doc/classes/CampaignMonitor/SubscriberBounce.src/M000019.html
|
|
106
|
+
- doc/classes/CampaignMonitor/SubscriberBounce.src/M000045.html
|
|
107
|
+
- doc/classes/CampaignMonitor/SubscriberClick.src/M000010.html
|
|
108
|
+
- doc/classes/CampaignMonitor/SubscriberClick.src/M000036.html
|
|
109
|
+
- doc/classes/CampaignMonitor/SubscriberOpen.src/M000011.html
|
|
110
|
+
- doc/classes/CampaignMonitor/SubscriberOpen.src/M000037.html
|
|
111
|
+
- doc/classes/CampaignMonitor/SubscriberUnsubscribe.src/M000015.html
|
|
112
|
+
- doc/classes/CampaignMonitor/SubscriberUnsubscribe.src/M000041.html
|
|
113
|
+
- doc/classes/CampaignMonitor.src/M000001.html
|
|
114
|
+
- doc/classes/CampaignMonitor.src/M000002.html
|
|
115
|
+
- doc/classes/CampaignMonitor.src/M000003.html
|
|
116
|
+
- doc/classes/CampaignMonitor.src/M000004.html
|
|
117
|
+
- doc/classes/CampaignMonitor.src/M000005.html
|
|
118
|
+
- doc/classes/CampaignMonitor.src/M000006.html
|
|
119
|
+
- doc/classes/CampaignMonitor.src/M000007.html
|
|
120
|
+
- doc/classes/CampaignMonitor.src/M000008.html
|
|
121
|
+
- doc/classes/CampaignMonitor.src/M000009.html
|
|
122
|
+
- doc/classes/CampaignMonitor.src/M000010.html
|
|
123
|
+
- doc/classes/CampaignMonitor.src/M000011.html
|
|
124
|
+
- doc/classes/CampaignMonitor.src/M000012.html
|
|
125
|
+
- doc/classes/CampaignMonitor.src/M000013.html
|
|
126
|
+
- doc/classes/CampaignMonitor.src/M000014.html
|
|
127
|
+
- doc/classes/CampaignMonitor.src/M000015.html
|
|
128
|
+
- doc/classes/CampaignMonitor.src/M000016.html
|
|
129
|
+
- doc/classes/CampaignMonitor.src/M000017.html
|
|
130
|
+
- doc/classes/CampaignMonitor.src/M000018.html
|
|
131
|
+
- doc/classes/CampaignMonitor.src/M000019.html
|
|
132
|
+
- doc/classes/CampaignMonitor.src/M000020.html
|
|
133
|
+
- doc/classes/CampaignMonitor.src/M000021.html
|
|
134
|
+
- doc/classes/CampaignMonitor.src/M000022.html
|
|
135
|
+
- doc/classes/CampaignMonitor.src/M000023.html
|
|
136
|
+
- doc/classes/CampaignMonitor.src/M000024.html
|
|
137
|
+
- doc/classes/CampaignMonitor.src/M000025.html
|
|
138
|
+
- doc/classes/CampaignMonitor.src/M000026.html
|
|
139
|
+
- doc/classes/CampaignMonitor.src/M000027.html
|
|
140
|
+
- doc/classes/CampaignMonitor.src/M000028.html
|
|
141
|
+
- doc/classes/CampaignMonitor.src/M000029.html
|
|
142
|
+
- doc/classes/CampaignMonitor.src/M000030.html
|
|
143
|
+
- doc/classes/CampaignMonitor.src/M000031.html
|
|
144
|
+
- doc/classes/CampaignMonitor.src/M000032.html
|
|
145
|
+
- doc/classes/CampaignMonitor.src/M000033.html
|
|
146
|
+
- doc/classes/CampaignMonitor.src/M000034.html
|
|
147
|
+
- doc/classes/CampaignMonitor.src/M000035.html
|
|
148
|
+
- doc/classes/CMCampaignSummary.src/M000003.html
|
|
149
|
+
- doc/classes/CMResult.src/M000004.html
|
|
150
|
+
- doc/classes/Hash.src/M000002.html
|
|
151
|
+
- doc/classes/Symbol.src/M000001.html
|
|
152
|
+
- doc/files/campaign_monitor_old_rb.html
|
|
153
|
+
- doc/files/lib/campaign_monitor_rb.html
|
|
154
|
+
- init.rb
|
|
155
|
+
- install.rb
|
|
168
156
|
test_files: []
|
|
157
|
+
|
|
169
158
|
rdoc_options: []
|
|
159
|
+
|
|
170
160
|
extra_rdoc_files: []
|
|
161
|
+
|
|
171
162
|
executables: []
|
|
163
|
+
|
|
172
164
|
extensions: []
|
|
165
|
+
|
|
173
166
|
requirements:
|
|
174
|
-
|
|
175
|
-
dependencies: []
|
|
167
|
+
- none
|
|
168
|
+
dependencies: []
|
|
169
|
+
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html>
|
|
7
|
-
<head>
|
|
8
|
-
<title>number_bounced (CampaignMonitor::Campaign)</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
11
|
-
</head>
|
|
12
|
-
<body class="standalone-code">
|
|
13
|
-
<pre><span class="ruby-comment cmt"># File lib/campaign_monitor.rb, line 406</span>
|
|
14
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">number_bounced</span>
|
|
15
|
-
<span class="ruby-ivar">@number_bounced</span>.<span class="ruby-identifier">nil?</span> <span class="ruby-value">? </span><span class="ruby-identifier">getInfo</span>.<span class="ruby-identifier">number_bounced</span> <span class="ruby-operator">:</span> <span class="ruby-ivar">@number_bounced</span>
|
|
16
|
-
<span class="ruby-keyword kw">end</span></pre>
|
|
17
|
-
</body>
|
|
18
|
-
</html>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html>
|
|
7
|
-
<head>
|
|
8
|
-
<title>campaigns (CampaignMonitor::Client)</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
11
|
-
</head>
|
|
12
|
-
<body class="standalone-code">
|
|
13
|
-
<pre><span class="ruby-comment cmt"># File lib/campaign_monitor.rb, line 199</span>
|
|
14
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">campaigns</span>
|
|
15
|
-
<span class="ruby-identifier">response</span> = <span class="ruby-ivar">@cm_client</span>.<span class="ruby-constant">Client_GetCampaigns</span>(<span class="ruby-value str">"ClientID"</span> =<span class="ruby-operator">></span> <span class="ruby-ivar">@id</span>)
|
|
16
|
-
<span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">response</span>[<span class="ruby-value str">"Code"</span>].<span class="ruby-identifier">to_i</span> <span class="ruby-operator">!=</span> <span class="ruby-value">0</span>
|
|
17
|
-
<span class="ruby-identifier">response</span>[<span class="ruby-value str">"Campaign"</span>].<span class="ruby-identifier">collect</span>{<span class="ruby-operator">|</span><span class="ruby-identifier">c</span><span class="ruby-operator">|</span> <span class="ruby-constant">Campaign</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">c</span>[<span class="ruby-value str">"CampaignID"</span>].<span class="ruby-identifier">to_i</span>, <span class="ruby-identifier">c</span>[<span class="ruby-value str">"Subject"</span>], <span class="ruby-identifier">c</span>[<span class="ruby-value str">"SentDate"</span>], <span class="ruby-identifier">c</span>[<span class="ruby-value str">"TotalRecipients"</span>].<span class="ruby-identifier">to_i</span>)}
|
|
18
|
-
<span class="ruby-keyword kw">else</span>
|
|
19
|
-
<span class="ruby-identifier">raise</span> <span class="ruby-identifier">response</span>[<span class="ruby-value str">"Code"</span>] <span class="ruby-operator">+</span> <span class="ruby-value str">" - "</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">response</span>[<span class="ruby-value str">"Message"</span>]
|
|
20
|
-
<span class="ruby-keyword kw">end</span>
|
|
21
|
-
<span class="ruby-keyword kw">end</span></pre>
|
|
22
|
-
</body>
|
|
23
|
-
</html>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html>
|
|
7
|
-
<head>
|
|
8
|
-
<title>bounced (CampaignMonitor::List)</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
11
|
-
</head>
|
|
12
|
-
<body class="standalone-code">
|
|
13
|
-
<pre><span class="ruby-comment cmt"># File lib/campaign_monitor.rb, line 288</span>
|
|
14
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">bounced</span>(<span class="ruby-identifier">date</span>)
|
|
15
|
-
<span class="ruby-identifier">response</span> = <span class="ruby-ivar">@cm_client</span>.<span class="ruby-constant">Subscribers_GetBounced</span>(<span class="ruby-value str">'ListID'</span> =<span class="ruby-operator">></span> <span class="ruby-ivar">@id</span>, <span class="ruby-value str">'Date'</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">date</span>.<span class="ruby-identifier">strftime</span>(<span class="ruby-value str">"%Y-%m-%d %H:%M:%S"</span>))
|
|
16
|
-
<span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">response</span>[<span class="ruby-value str">"Code"</span>].<span class="ruby-identifier">to_i</span> <span class="ruby-operator">!=</span> <span class="ruby-value">0</span>
|
|
17
|
-
<span class="ruby-identifier">response</span>[<span class="ruby-value str">"Subscriber"</span>].<span class="ruby-identifier">collect</span>{<span class="ruby-operator">|</span><span class="ruby-identifier">s</span><span class="ruby-operator">|</span> <span class="ruby-constant">Subscriber</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">s</span>[<span class="ruby-value str">"EmailAddress"</span>], <span class="ruby-identifier">s</span>[<span class="ruby-value str">"Name"</span>], <span class="ruby-identifier">s</span>[<span class="ruby-value str">"Date"</span>])}
|
|
18
|
-
<span class="ruby-keyword kw">else</span>
|
|
19
|
-
<span class="ruby-identifier">raise</span> <span class="ruby-identifier">response</span>[<span class="ruby-value str">"Code"</span>] <span class="ruby-operator">+</span> <span class="ruby-value str">" - "</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">response</span>[<span class="ruby-value str">"Message"</span>]
|
|
20
|
-
<span class="ruby-keyword kw">end</span>
|
|
21
|
-
<span class="ruby-keyword kw">end</span></pre>
|
|
22
|
-
</body>
|
|
23
|
-
</html>
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html>
|
|
7
|
-
<head>
|
|
8
|
-
<title>new (CampaignMonitor::Result)</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
11
|
-
</head>
|
|
12
|
-
<body class="standalone-code">
|
|
13
|
-
<pre><span class="ruby-comment cmt"># File lib/campaign_monitor.rb, line 498</span>
|
|
14
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">message</span>, <span class="ruby-identifier">code</span>)
|
|
15
|
-
<span class="ruby-ivar">@message</span> = <span class="ruby-identifier">message</span>
|
|
16
|
-
<span class="ruby-ivar">@code</span> = <span class="ruby-identifier">code</span>
|
|
17
|
-
<span class="ruby-keyword kw">end</span></pre>
|
|
18
|
-
</body>
|
|
19
|
-
</html>
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html>
|
|
7
|
-
<head>
|
|
8
|
-
<title>unsubscribe (CampaignMonitor::Subscriber)</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
11
|
-
</head>
|
|
12
|
-
<body class="standalone-code">
|
|
13
|
-
<pre><span class="ruby-comment cmt"># File lib/campaign_monitor.rb, line 445</span>
|
|
14
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">unsubscribe</span>(<span class="ruby-identifier">list_id</span>)
|
|
15
|
-
<span class="ruby-identifier">response</span> = <span class="ruby-ivar">@cm_client</span>.<span class="ruby-constant">Subscriber_Unsubscribe</span>(<span class="ruby-value str">"ListID"</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">list_id</span>, <span class="ruby-value str">"Email"</span> =<span class="ruby-operator">></span> <span class="ruby-ivar">@email_address</span>)
|
|
16
|
-
<span class="ruby-constant">Result</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">response</span>[<span class="ruby-value str">"Message"</span>], <span class="ruby-identifier">response</span>[<span class="ruby-value str">"Code"</span>].<span class="ruby-identifier">to_i</span>)
|
|
17
|
-
<span class="ruby-keyword kw">end</span></pre>
|
|
18
|
-
</body>
|
|
19
|
-
</html>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html>
|
|
7
|
-
<head>
|
|
8
|
-
<title>new (CampaignMonitor::SubscriberBounce)</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
11
|
-
</head>
|
|
12
|
-
<body class="standalone-code">
|
|
13
|
-
<pre><span class="ruby-comment cmt"># File lib/campaign_monitor.rb, line 455</span>
|
|
14
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">email_address</span>, <span class="ruby-identifier">list_id</span>, <span class="ruby-identifier">bounce_type</span>)
|
|
15
|
-
<span class="ruby-ivar">@email_address</span> = <span class="ruby-identifier">email_address</span>
|
|
16
|
-
<span class="ruby-ivar">@bounce_type</span> = <span class="ruby-identifier">bounce_type</span>
|
|
17
|
-
<span class="ruby-ivar">@list_id</span> = <span class="ruby-identifier">list_id</span>
|
|
18
|
-
<span class="ruby-keyword kw">end</span></pre>
|
|
19
|
-
</body>
|
|
20
|
-
</html>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html>
|
|
7
|
-
<head>
|
|
8
|
-
<title>new (CampaignMonitor::SubscriberClick)</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
11
|
-
</head>
|
|
12
|
-
<body class="standalone-code">
|
|
13
|
-
<pre><span class="ruby-comment cmt"># File lib/campaign_monitor.rb, line 477</span>
|
|
14
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">email_address</span>, <span class="ruby-identifier">list_id</span>, <span class="ruby-identifier">clicked_links</span>)
|
|
15
|
-
<span class="ruby-ivar">@email_address</span> = <span class="ruby-identifier">email_address</span>
|
|
16
|
-
<span class="ruby-ivar">@list_id</span> = <span class="ruby-identifier">list_id</span>
|
|
17
|
-
<span class="ruby-ivar">@clicked_links</span> = <span class="ruby-identifier">clicked_links</span>
|
|
18
|
-
<span class="ruby-keyword kw">end</span></pre>
|
|
19
|
-
</body>
|
|
20
|
-
</html>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html>
|
|
7
|
-
<head>
|
|
8
|
-
<title>new (CampaignMonitor::SubscriberOpen)</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
11
|
-
</head>
|
|
12
|
-
<body class="standalone-code">
|
|
13
|
-
<pre><span class="ruby-comment cmt"># File lib/campaign_monitor.rb, line 466</span>
|
|
14
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">email_address</span>, <span class="ruby-identifier">list_id</span>, <span class="ruby-identifier">opens</span>)
|
|
15
|
-
<span class="ruby-ivar">@email_address</span> = <span class="ruby-identifier">email_address</span>
|
|
16
|
-
<span class="ruby-ivar">@list_id</span> = <span class="ruby-identifier">list_id</span>
|
|
17
|
-
<span class="ruby-ivar">@opens</span> = <span class="ruby-identifier">opens</span>
|
|
18
|
-
<span class="ruby-keyword kw">end</span></pre>
|
|
19
|
-
</body>
|
|
20
|
-
</html>
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html>
|
|
7
|
-
<head>
|
|
8
|
-
<title>new (CampaignMonitor::SubscriberUnsubscribe)</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
11
|
-
</head>
|
|
12
|
-
<body class="standalone-code">
|
|
13
|
-
<pre><span class="ruby-comment cmt"># File lib/campaign_monitor.rb, line 488</span>
|
|
14
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">email_address</span>, <span class="ruby-identifier">list_id</span>)
|
|
15
|
-
<span class="ruby-ivar">@email_address</span> = <span class="ruby-identifier">email_address</span>
|
|
16
|
-
<span class="ruby-ivar">@list_id</span> = <span class="ruby-identifier">list_id</span>
|
|
17
|
-
<span class="ruby-keyword kw">end</span></pre>
|
|
18
|
-
</body>
|
|
19
|
-
</html>
|
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
-
<head>
|
|
8
|
-
<title>Class: CampaignMonitorTest</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
-
<script type="text/javascript">
|
|
13
|
-
// <![CDATA[
|
|
14
|
-
|
|
15
|
-
function popupCode( url ) {
|
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
function toggleCode( id ) {
|
|
20
|
-
if ( document.getElementById )
|
|
21
|
-
elem = document.getElementById( id );
|
|
22
|
-
else if ( document.all )
|
|
23
|
-
elem = eval( "document.all." + id );
|
|
24
|
-
else
|
|
25
|
-
return false;
|
|
26
|
-
|
|
27
|
-
elemStyle = elem.style;
|
|
28
|
-
|
|
29
|
-
if ( elemStyle.display != "block" ) {
|
|
30
|
-
elemStyle.display = "block"
|
|
31
|
-
} else {
|
|
32
|
-
elemStyle.display = "none"
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
return true;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// Make codeblocks hidden by default
|
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
-
|
|
41
|
-
// ]]>
|
|
42
|
-
</script>
|
|
43
|
-
|
|
44
|
-
</head>
|
|
45
|
-
<body>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
<div id="classHeader">
|
|
50
|
-
<table class="header-table">
|
|
51
|
-
<tr class="top-aligned-row">
|
|
52
|
-
<td><strong>Class</strong></td>
|
|
53
|
-
<td class="class-name-in-header">CampaignMonitorTest</td>
|
|
54
|
-
</tr>
|
|
55
|
-
<tr class="top-aligned-row">
|
|
56
|
-
<td><strong>In:</strong></td>
|
|
57
|
-
<td>
|
|
58
|
-
<a href="../files/test/campaign_monitor_test_rb.html">
|
|
59
|
-
test/campaign_monitor_test.rb
|
|
60
|
-
</a>
|
|
61
|
-
<br />
|
|
62
|
-
</td>
|
|
63
|
-
</tr>
|
|
64
|
-
|
|
65
|
-
<tr class="top-aligned-row">
|
|
66
|
-
<td><strong>Parent:</strong></td>
|
|
67
|
-
<td>
|
|
68
|
-
Test::Unit::TestCase
|
|
69
|
-
</td>
|
|
70
|
-
</tr>
|
|
71
|
-
</table>
|
|
72
|
-
</div>
|
|
73
|
-
<!-- banner header -->
|
|
74
|
-
|
|
75
|
-
<div id="bodyContent">
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
<div id="contextContent">
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
</div>
|
|
84
|
-
|
|
85
|
-
<div id="method-list">
|
|
86
|
-
<h3 class="section-bar">Methods</h3>
|
|
87
|
-
|
|
88
|
-
<div class="name-list">
|
|
89
|
-
<a href="#M000001">setup</a>
|
|
90
|
-
</div>
|
|
91
|
-
</div>
|
|
92
|
-
|
|
93
|
-
</div>
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
<!-- if includes -->
|
|
97
|
-
|
|
98
|
-
<div id="section">
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
<!-- if method_list -->
|
|
108
|
-
<div id="methods">
|
|
109
|
-
<h3 class="section-bar">Public Instance methods</h3>
|
|
110
|
-
|
|
111
|
-
<div id="method-M000001" class="method-detail">
|
|
112
|
-
<a name="M000001"></a>
|
|
113
|
-
|
|
114
|
-
<div class="method-heading">
|
|
115
|
-
<a href="CampaignMonitorTest.src/M000001.html" target="Code" class="method-signature"
|
|
116
|
-
onclick="popupCode('CampaignMonitorTest.src/M000001.html');return false;">
|
|
117
|
-
<span class="method-name">setup</span><span class="method-args">()</span>
|
|
118
|
-
</a>
|
|
119
|
-
</div>
|
|
120
|
-
|
|
121
|
-
<div class="method-description">
|
|
122
|
-
</div>
|
|
123
|
-
</div>
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
</div>
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
</div>
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
<div id="validator-badges">
|
|
133
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
134
|
-
</div>
|
|
135
|
-
|
|
136
|
-
</body>
|
|
137
|
-
</html>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html>
|
|
7
|
-
<head>
|
|
8
|
-
<title>setup (CampaignMonitorTest)</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
|
11
|
-
</head>
|
|
12
|
-
<body class="standalone-code">
|
|
13
|
-
<pre><span class="ruby-comment cmt"># File test/campaign_monitor_test.rb, line 3</span>
|
|
14
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">setup</span>
|
|
15
|
-
|
|
16
|
-
<span class="ruby-keyword kw">end</span></pre>
|
|
17
|
-
</body>
|
|
18
|
-
</html>
|
data/doc/files/init_rb.html
DELETED
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
-
<head>
|
|
8
|
-
<title>File: init.rb</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
-
<script type="text/javascript">
|
|
13
|
-
// <![CDATA[
|
|
14
|
-
|
|
15
|
-
function popupCode( url ) {
|
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
function toggleCode( id ) {
|
|
20
|
-
if ( document.getElementById )
|
|
21
|
-
elem = document.getElementById( id );
|
|
22
|
-
else if ( document.all )
|
|
23
|
-
elem = eval( "document.all." + id );
|
|
24
|
-
else
|
|
25
|
-
return false;
|
|
26
|
-
|
|
27
|
-
elemStyle = elem.style;
|
|
28
|
-
|
|
29
|
-
if ( elemStyle.display != "block" ) {
|
|
30
|
-
elemStyle.display = "block"
|
|
31
|
-
} else {
|
|
32
|
-
elemStyle.display = "none"
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
return true;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// Make codeblocks hidden by default
|
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
-
|
|
41
|
-
// ]]>
|
|
42
|
-
</script>
|
|
43
|
-
|
|
44
|
-
</head>
|
|
45
|
-
<body>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
<div id="fileHeader">
|
|
50
|
-
<h1>init.rb</h1>
|
|
51
|
-
<table class="header-table">
|
|
52
|
-
<tr class="top-aligned-row">
|
|
53
|
-
<td><strong>Path:</strong></td>
|
|
54
|
-
<td>init.rb
|
|
55
|
-
</td>
|
|
56
|
-
</tr>
|
|
57
|
-
<tr class="top-aligned-row">
|
|
58
|
-
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>Thu May 11 16:49:46 WST 2006</td>
|
|
60
|
-
</tr>
|
|
61
|
-
</table>
|
|
62
|
-
</div>
|
|
63
|
-
<!-- banner header -->
|
|
64
|
-
|
|
65
|
-
<div id="bodyContent">
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
<div id="contextContent">
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
<div id="requires-list">
|
|
73
|
-
<h3 class="section-bar">Required files</h3>
|
|
74
|
-
|
|
75
|
-
<div class="name-list">
|
|
76
|
-
campaign_monitor
|
|
77
|
-
</div>
|
|
78
|
-
</div>
|
|
79
|
-
|
|
80
|
-
</div>
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
</div>
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
<!-- if includes -->
|
|
87
|
-
|
|
88
|
-
<div id="section">
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
<!-- if method_list -->
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
</div>
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
<div id="validator-badges">
|
|
104
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
105
|
-
</div>
|
|
106
|
-
|
|
107
|
-
</body>
|
|
108
|
-
</html>
|
data/doc/files/install_rb.html
DELETED
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
-
<head>
|
|
8
|
-
<title>File: install.rb</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
-
<script type="text/javascript">
|
|
13
|
-
// <![CDATA[
|
|
14
|
-
|
|
15
|
-
function popupCode( url ) {
|
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
function toggleCode( id ) {
|
|
20
|
-
if ( document.getElementById )
|
|
21
|
-
elem = document.getElementById( id );
|
|
22
|
-
else if ( document.all )
|
|
23
|
-
elem = eval( "document.all." + id );
|
|
24
|
-
else
|
|
25
|
-
return false;
|
|
26
|
-
|
|
27
|
-
elemStyle = elem.style;
|
|
28
|
-
|
|
29
|
-
if ( elemStyle.display != "block" ) {
|
|
30
|
-
elemStyle.display = "block"
|
|
31
|
-
} else {
|
|
32
|
-
elemStyle.display = "none"
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
return true;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// Make codeblocks hidden by default
|
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
-
|
|
41
|
-
// ]]>
|
|
42
|
-
</script>
|
|
43
|
-
|
|
44
|
-
</head>
|
|
45
|
-
<body>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
<div id="fileHeader">
|
|
50
|
-
<h1>install.rb</h1>
|
|
51
|
-
<table class="header-table">
|
|
52
|
-
<tr class="top-aligned-row">
|
|
53
|
-
<td><strong>Path:</strong></td>
|
|
54
|
-
<td>install.rb
|
|
55
|
-
</td>
|
|
56
|
-
</tr>
|
|
57
|
-
<tr class="top-aligned-row">
|
|
58
|
-
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>Thu May 11 16:49:46 WST 2006</td>
|
|
60
|
-
</tr>
|
|
61
|
-
</table>
|
|
62
|
-
</div>
|
|
63
|
-
<!-- banner header -->
|
|
64
|
-
|
|
65
|
-
<div id="bodyContent">
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
<div id="contextContent">
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
</div>
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
</div>
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
<!-- if includes -->
|
|
80
|
-
|
|
81
|
-
<div id="section">
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
<!-- if method_list -->
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
</div>
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
<div id="validator-badges">
|
|
97
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
98
|
-
</div>
|
|
99
|
-
|
|
100
|
-
</body>
|
|
101
|
-
</html>
|
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
-
<head>
|
|
8
|
-
<title>File: campaign_monitor_test.rb</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
-
<script type="text/javascript">
|
|
13
|
-
// <![CDATA[
|
|
14
|
-
|
|
15
|
-
function popupCode( url ) {
|
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
function toggleCode( id ) {
|
|
20
|
-
if ( document.getElementById )
|
|
21
|
-
elem = document.getElementById( id );
|
|
22
|
-
else if ( document.all )
|
|
23
|
-
elem = eval( "document.all." + id );
|
|
24
|
-
else
|
|
25
|
-
return false;
|
|
26
|
-
|
|
27
|
-
elemStyle = elem.style;
|
|
28
|
-
|
|
29
|
-
if ( elemStyle.display != "block" ) {
|
|
30
|
-
elemStyle.display = "block"
|
|
31
|
-
} else {
|
|
32
|
-
elemStyle.display = "none"
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
return true;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// Make codeblocks hidden by default
|
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
-
|
|
41
|
-
// ]]>
|
|
42
|
-
</script>
|
|
43
|
-
|
|
44
|
-
</head>
|
|
45
|
-
<body>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
<div id="fileHeader">
|
|
50
|
-
<h1>campaign_monitor_test.rb</h1>
|
|
51
|
-
<table class="header-table">
|
|
52
|
-
<tr class="top-aligned-row">
|
|
53
|
-
<td><strong>Path:</strong></td>
|
|
54
|
-
<td>test/campaign_monitor_test.rb
|
|
55
|
-
</td>
|
|
56
|
-
</tr>
|
|
57
|
-
<tr class="top-aligned-row">
|
|
58
|
-
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>Thu May 11 16:49:43 WST 2006</td>
|
|
60
|
-
</tr>
|
|
61
|
-
</table>
|
|
62
|
-
</div>
|
|
63
|
-
<!-- banner header -->
|
|
64
|
-
|
|
65
|
-
<div id="bodyContent">
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
<div id="contextContent">
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
</div>
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
</div>
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
<!-- if includes -->
|
|
80
|
-
|
|
81
|
-
<div id="section">
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
<!-- if method_list -->
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
</div>
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
<div id="validator-badges">
|
|
97
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
98
|
-
</div>
|
|
99
|
-
|
|
100
|
-
</body>
|
|
101
|
-
</html>
|