exact4r 0.9.3 → 1.0

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.
Files changed (62) hide show
  1. data/CHANGELOG +3 -0
  2. data/README +0 -11
  3. data/Rakefile +38 -6
  4. data/VERSION +1 -1
  5. data/lib/ews/transaction/request.rb +4 -0
  6. data/lib/ews/transaction/validator.rb +2 -0
  7. data/lib/ews/transporter.rb +4 -2
  8. data/test/credentials.rb +62 -0
  9. data/test/credentials.yml +53 -0
  10. data/test/exhaustive/batch_query_close_test.rb +193 -0
  11. data/test/exhaustive/forced_post_test.rb +3 -3
  12. data/test/exhaustive/online_debit_purchase_test.rb +9 -5
  13. data/test/exhaustive/online_debit_refund_test.rb +9 -5
  14. data/test/exhaustive/pre_auth_completion_test.rb +3 -3
  15. data/test/exhaustive/pre_auth_only_test.rb +9 -3
  16. data/test/exhaustive/pre_auth_test.rb +3 -3
  17. data/test/exhaustive/purchase_correction_test.rb +13 -7
  18. data/test/exhaustive/purchase_test.rb +3 -3
  19. data/test/exhaustive/recurring_seed_pre_auth_test.rb +3 -3
  20. data/test/exhaustive/recurring_seed_purchase_test.rb +3 -3
  21. data/test/exhaustive/refund_correction_test.rb +12 -6
  22. data/test/exhaustive/refund_test.rb +3 -3
  23. data/test/exhaustive/secure_storage_test.rb +3 -3
  24. data/test/exhaustive/tagged_online_debit_refund_test.rb +64 -37
  25. data/test/exhaustive/tagged_pre_auth_completion_test.rb +8 -8
  26. data/test/exhaustive/tagged_pre_auth_test.rb +8 -8
  27. data/test/exhaustive/tagged_purchase_test.rb +8 -8
  28. data/test/exhaustive/tagged_refund_test.rb +9 -9
  29. data/test/exhaustive/tagged_void_test.rb +24 -10
  30. data/test/exhaustive/transaction_details_test.rb +8 -6
  31. data/test/exhaustive/void_test.rb +9 -3
  32. data/test/general/avs_test.rb +7 -7
  33. data/test/general/request_test.rb +20 -37
  34. data/test/general/transporter_test.rb +6 -6
  35. data/test/general/validator_test.rb +2 -2
  36. data/test/test_helper.rb +8 -18
  37. metadata +5 -27
  38. data/doc/classes/EWS/Transaction/FakeResponse.html +0 -451
  39. data/doc/classes/EWS/Transaction/Request.html +0 -469
  40. data/doc/classes/EWS/Transaction/Response.html +0 -472
  41. data/doc/classes/EWS/Transaction/Validator.html +0 -182
  42. data/doc/classes/EWS/Transporter.html +0 -269
  43. data/doc/classes/REXML/Document.html +0 -176
  44. data/doc/classes/REXML/Entity.html +0 -150
  45. data/doc/classes/REXML.html +0 -112
  46. data/doc/created.rid +0 -1
  47. data/doc/files/CHANGELOG.html +0 -156
  48. data/doc/files/LICENCE.html +0 -109
  49. data/doc/files/README.html +0 -371
  50. data/doc/files/VERSION.html +0 -107
  51. data/doc/files/lib/ews/transaction/fake_response_rb.html +0 -101
  52. data/doc/files/lib/ews/transaction/mapping_rb.html +0 -108
  53. data/doc/files/lib/ews/transaction/request_rb.html +0 -108
  54. data/doc/files/lib/ews/transaction/response_rb.html +0 -101
  55. data/doc/files/lib/ews/transaction/validator_rb.html +0 -101
  56. data/doc/files/lib/ews/transporter_rb.html +0 -108
  57. data/doc/files/lib/exact4r_rb.html +0 -117
  58. data/doc/fr_class_index.html +0 -34
  59. data/doc/fr_file_index.html +0 -37
  60. data/doc/fr_method_index.html +0 -48
  61. data/doc/index.html +0 -24
  62. data/doc/rdoc-style.css +0 -208
@@ -1,371 +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: README</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>README</h1>
51
- <table class="header-table">
52
- <tr class="top-aligned-row">
53
- <td><strong>Path:</strong></td>
54
- <td>README
55
- </td>
56
- </tr>
57
- <tr class="top-aligned-row">
58
- <td><strong>Last Update:</strong></td>
59
- <td>Tue Sep 15 16:09:38 +1000 2009</td>
60
- </tr>
61
- </table>
62
- </div>
63
- <!-- banner header -->
64
-
65
- <div id="bodyContent">
66
-
67
-
68
-
69
- <div id="contextContent">
70
-
71
- <div id="description">
72
- <h1>exact4r</h1>
73
- <p>
74
- A gem which provides access to E-xact&#8216;s Web Services API, allowing
75
- the submission of financial transactions via REST, JSON or SOAP.
76
- </p>
77
- <h2>Getting Started</h2>
78
- <p>
79
- To submit requests to our transaction processing service, you must first
80
- have a Gateway ID, and a password. Test logins are as follows:
81
- </p>
82
- <pre>
83
- Account 1: :gateway_id =&gt; &quot;A00049-01&quot;, :password =&gt; &quot;test1&quot;
84
- Account 2: :gateway_id =&gt; &quot;A00427-01&quot;, :password =&gt; &quot;testus&quot;
85
- </pre>
86
- <h1>1. Submit a transaction</h1>
87
- <pre>
88
- require 'rubygems'
89
- require 'exact4r'
90
-
91
- # build a purchase request
92
- request = EWS::Transaction::Request.new({
93
- :transaction_type =&gt; :purchase,
94
- :amount =&gt; 10.50,
95
- :cardholder_name =&gt; &quot;Simon Brown&quot;,
96
- :cc_number =&gt; &quot;4111111111111111&quot;,
97
- :cc_expiry =&gt; &quot;1012&quot;, # MUST be MMYY format
98
- :gateway_id =&gt; &quot;XXXXXXX&quot;, # which gateway to submit the request to
99
- :password =&gt; &quot;YYYYYY&quot; # your password for that gateway
100
- })
101
-
102
- transporter = EWS::Transporter.new
103
- response = transporter.submit(request) # submits using REST (XML) by default
104
-
105
- # submit using JSON, or
106
- response = transporter.submit(request, :json)
107
-
108
- # submit using SOAP, or
109
- response = transporter.submit(request, :soap)
110
-
111
- # submit explicitly via REST
112
- response = transporter.submit(request, :rest)
113
-
114
- # The response object is independent of type of transport chosen.
115
- # We decode the payload into a regular object
116
- response.transaction_tag # 1234
117
- response.exact_resp_code # &quot;00&quot;
118
- response.exact_message # &quot;Transaction Normal&quot;
119
- response.bank_resp_code # &quot;00&quot;
120
- response.bank_message # &quot;APPROVED&quot;
121
- </pre>
122
- <h1>2. Find information on an existing transaction</h1>
123
- <pre>
124
- require 'rubygems'
125
- require 'exact4r'
126
-
127
- # build a purchase request
128
- request = EWS::Transaction::Request.new({
129
- :transaction_type =&gt; :purchase,
130
- :amount =&gt; 10.50,
131
- :cardholder_name =&gt; &quot;Simon Brown&quot;,
132
- :cc_number =&gt; &quot;4111111111111111&quot;,
133
- :cc_expiry =&gt; &quot;1012&quot;, # MUST be MMYY format
134
- :gateway_id =&gt; &quot;XXXXXXX&quot;, # which gateway to submit the request to
135
- :password =&gt; &quot;YYYYYY&quot; # your password for that gateway
136
- })
137
-
138
- transporter = EWS::Transporter.new
139
- response = transporter.submit(request) # submits using REST (XML) by default
140
-
141
- # you need to know the transaction tag of the transaction you are looking for
142
- find_request = EWS::Transaction::Request.new({
143
- :transaction_type =&gt; :transaction_details,
144
- :transaction_tag =&gt; response.transaction_tag,
145
- :gateway_id =&gt; &quot;XXXXXXX&quot;,
146
- :password =&gt; &quot;YYYYYY&quot;
147
- })
148
-
149
- find_response = transporter.submit(find_request, :json) # again, can choose your transport type as before
150
- find_response.cc_number # 4111111111111111
151
- find_response.amount # 10.50
152
- </pre>
153
- <h1>3. Re-using a Transporter</h1>
154
- <pre>
155
- require 'rubygems'
156
- require 'exact4r'
157
-
158
- # The transporter object can be re-used across multiple transactions, so set it up once
159
- # and forget about it.
160
- # In this example, we will continue to use E-xact's default web-service URL, but we
161
- # will specify a default transport_type of :soap
162
- transporter = EWS::Transporter.new(&quot;https://api.e-xact.com/&quot;, {:transaction_type =&gt; :soap})
163
-
164
- # now let's submit do a recurring seed purchase...
165
- rsp_req = EWS::Transaction::Request.new({
166
- :transaction_type =&gt; :recurring_seed_purchase,
167
- :amount =&gt; 12.00,
168
- :cardholder_name =&gt; &quot;Simon Brown&quot;,
169
- :cc_number =&gt; &quot;4111111111111111&quot;,
170
- :cc_expiry =&gt; &quot;1012&quot;,
171
- :gateway_id =&gt; &quot;XXXXXX&quot;,
172
- :password =&gt; &quot;YYYYYY&quot;
173
- })
174
-
175
- rsp_resp = transporter.submit(rsp_req)
176
- raise &quot;Seed Purchase failed&quot; unless rsp_resp.approved?
177
-
178
- # ...then do multiple refunds against it
179
- 1.upto(10) do
180
- rf_req = EWS::Transaction::Request.new({
181
- :transaction_type =&gt; :tagged_refund,
182
- :transaction_tag =&gt; rsp_resp.transaction_tag, # need to know which transaction we're refunding against...
183
- :authorization_num =&gt; rsp_resp.authorization_num, # and its authorization_num
184
- :amount =&gt; 1.00, # refund a dollar at a time
185
- :gateway_id =&gt; &quot;XXXXXX&quot;,
186
- :password =&gt; &quot;YYYYYY&quot;
187
- })
188
- rf_resp = transporter.submit(rf_req)
189
- raise &quot;Refund failed: #{rf_resp.exact_resp_code}, #{rf_resp.exact_message}&quot; unless rf_resp.approved?
190
- end
191
- </pre>
192
- <h1>4. Using the AVS API</h1>
193
- <p>
194
- Allowable AVS params are:
195
- </p>
196
- <ul>
197
- <li>:avs_street_address =&gt; &quot;7501ELMST.&quot;
198
-
199
- </li>
200
- <li>:avs_unit_no =&gt; &quot;801&quot;
201
-
202
- </li>
203
- <li>:avs_po_box =&gt; nil # P.O. Box or street address may be specified, but
204
- not both
205
-
206
- </li>
207
- <li>:avs_postal_code =&gt; &quot;90210&quot;
208
-
209
- </li>
210
- <li>:avs_test_flag =&gt; &quot;X&quot; # AVS test flag (optional)
211
-
212
- </li>
213
- </ul>
214
- <h3>Test Flags</h3>
215
- <p>
216
- In order to simulate an AVS response in the test environment, set the
217
- :<tt>avs_test_flag</tt> to the AVS result code you would like returned. The
218
- AVS result is a one-character response that indicates the degree of match
219
- for the provided address. The following AVS responses are currently
220
- supported:
221
- </p>
222
- <h3>North American Response Codes</h3>
223
- <pre>
224
- AVS Code - ABS Definition - Explanation
225
- </pre>
226
- <ul>
227
- <li>X - Exact match, 9 digit zip - Street Address, and 9 digit ZIP Code match
228
-
229
- </li>
230
- <li>Y - Exact match, 5 digit zip - Street Address, and 5 digit ZIP Code match
231
-
232
- </li>
233
- <li>A - Partial match - Street Address matches, ZIP Code does not
234
-
235
- </li>
236
- <li>W - Partial match - ZIP Code matches, Street Address does not
237
-
238
- </li>
239
- <li>Z - Partial match - 5 digit ZIP Code match only
240
-
241
- </li>
242
- <li>N - No match - No Address or ZIP Code match
243
-
244
- </li>
245
- <li>U - Unavailable - Address information is unavailable for that account
246
- number, or the card issuer does not support
247
-
248
- </li>
249
- <li>G - Service Not supported, non-US Issuer does not participate
250
-
251
- </li>
252
- <li>R - Retry - Issuer system unavailable, retry later
253
-
254
- </li>
255
- <li>E - Not a mail or phone order
256
-
257
- </li>
258
- <li>S - Service not supported
259
-
260
- </li>
261
- </ul>
262
- <h3>International Response Codes</h3>
263
- <pre>
264
- AVS Code - ABS Definition and Explanation
265
- </pre>
266
- <ul>
267
- <li>G - Global non-AVS participant
268
-
269
- </li>
270
- <li>B - Address matches only
271
-
272
- </li>
273
- <li>C - Address and Postal Code do not match
274
-
275
- </li>
276
- <li>D - Address and Postal Code match
277
-
278
- </li>
279
- <li>F - Address and Postal Code match (UK only)
280
-
281
- </li>
282
- <li>I - Address information not verified for international transaction
283
-
284
- </li>
285
- <li>M - Address and Postal Code match
286
-
287
- </li>
288
- <li>P - Postal Code matches only
289
-
290
- </li>
291
- </ul>
292
- <h3>Code Sample</h3>
293
- <pre>
294
- avs_params = {
295
- :avs_test_flag =&gt; 'N',
296
- :avs_street_address =&gt; '123BROWNSTREET',
297
- :avs_unit_no =&gt; '4,
298
- :avs_po_box =&gt; nil,
299
- :avs_postal_code =&gt; '902101234'
300
- }
301
-
302
- tx_params = {
303
- :transaction_type =&gt; :purchase,
304
- :amount =&gt; 10.50,
305
- :cardholder_name =&gt; &quot;Simon Brown&quot;,
306
- :cc_number =&gt; &quot;4111111111111111&quot;,
307
- :cc_expiry =&gt; &quot;1012&quot;,
308
- :gateway_id =&gt; &quot;XXXXXXX&quot;,
309
- :password =&gt; &quot;YYYYYY&quot;
310
- }.merge(avs_params)
311
-
312
- request = EWS::Transaction::Request.new(tx_params)
313
-
314
- transporter = EWS::Transporter.new(&quot;https://api.e-xact.com/&quot;)
315
- response = transporter.submit(request)
316
-
317
- response.cc_verification_str1.should == &quot;N123BROWNSTREET4902101234&quot;
318
- response.avs.should == N
319
- </pre>
320
- <h1>Rake tasks</h1>
321
- <p>
322
- test
323
- </p>
324
- <pre>
325
- Run all tests (default)
326
- </pre>
327
- <p>
328
- rdoc
329
- </p>
330
- <pre>
331
- Generate rdoc html in doc/
332
- </pre>
333
- <p>
334
- gem
335
- </p>
336
- <pre>
337
- Build gem
338
- </pre>
339
-
340
- </div>
341
-
342
-
343
- </div>
344
-
345
-
346
- </div>
347
-
348
-
349
- <!-- if includes -->
350
-
351
- <div id="section">
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
-
360
- <!-- if method_list -->
361
-
362
-
363
- </div>
364
-
365
-
366
- <div id="validator-badges">
367
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
368
- </div>
369
-
370
- </body>
371
- </html>
@@ -1,107 +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: VERSION</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>VERSION</h1>
51
- <table class="header-table">
52
- <tr class="top-aligned-row">
53
- <td><strong>Path:</strong></td>
54
- <td>VERSION
55
- </td>
56
- </tr>
57
- <tr class="top-aligned-row">
58
- <td><strong>Last Update:</strong></td>
59
- <td>Tue Sep 15 16:05:10 +1000 2009</td>
60
- </tr>
61
- </table>
62
- </div>
63
- <!-- banner header -->
64
-
65
- <div id="bodyContent">
66
-
67
-
68
-
69
- <div id="contextContent">
70
-
71
- <div id="description">
72
- <p>
73
- 0.9.2
74
- </p>
75
-
76
- </div>
77
-
78
-
79
- </div>
80
-
81
-
82
- </div>
83
-
84
-
85
- <!-- if includes -->
86
-
87
- <div id="section">
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
- <!-- if method_list -->
97
-
98
-
99
- </div>
100
-
101
-
102
- <div id="validator-badges">
103
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
104
- </div>
105
-
106
- </body>
107
- </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: fake_response.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>fake_response.rb</h1>
51
- <table class="header-table">
52
- <tr class="top-aligned-row">
53
- <td><strong>Path:</strong></td>
54
- <td>lib/ews/transaction/fake_response.rb
55
- </td>
56
- </tr>
57
- <tr class="top-aligned-row">
58
- <td><strong>Last Update:</strong></td>
59
- <td>Tue Sep 15 15:52:11 +1000 2009</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,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: mapping.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>mapping.rb</h1>
51
- <table class="header-table">
52
- <tr class="top-aligned-row">
53
- <td><strong>Path:</strong></td>
54
- <td>lib/ews/transaction/mapping.rb
55
- </td>
56
- </tr>
57
- <tr class="top-aligned-row">
58
- <td><strong>Last Update:</strong></td>
59
- <td>Tue Sep 15 15:54:32 +1000 2009</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
- builder&nbsp;&nbsp;
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>