adyen-admin 0.0.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.
Files changed (60) hide show
  1. data/.gitignore +5 -0
  2. data/.travis.yml +3 -0
  3. data/CHANGES.md +16 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +26 -0
  6. data/README.md +57 -0
  7. data/Rakefile +24 -0
  8. data/VERSION +1 -0
  9. data/adyen-admin.gemspec +25 -0
  10. data/lib/adyen-admin/client.rb +26 -0
  11. data/lib/adyen-admin/skin.rb +180 -0
  12. data/lib/adyen-admin.rb +16 -0
  13. data/spec/adyen-admin/client_spec.rb +21 -0
  14. data/spec/adyen-admin/skin_spec.rb +177 -0
  15. data/spec/fixtures/cassettes/Adyen_Admin_Client/_login/passes_with_correct_username_password.yml +661 -0
  16. data/spec/fixtures/cassettes/Adyen_Admin_Skin/_all/returns_the_skins.yml +269 -0
  17. data/spec/fixtures/cassettes/Adyen_Admin_Skin/_download/gets_the_file.yml +275 -0
  18. data/spec/fixtures/cassettes/Adyen_Admin_Skin/_test_url/returns_url_to_test.yml +941 -0
  19. data/spec/fixtures/cassettes/Adyen_Admin_Skin/_upload/valid_set/increases_version.yml +7769 -0
  20. data/spec/fixtures/cassettes/Adyen_Admin_Skin/_version/returns_live_value.yml +77 -0
  21. data/spec/fixtures/cassettes/Adyen_Admin_Skin/_version/returns_test_value.yml +77 -0
  22. data/spec/fixtures/cassettes/Adyen_Admin_Skin/_version/returns_uploaded_value.yml +666 -0
  23. data/spec/fixtures/cassettes/login.yml +668 -0
  24. data/spec/fixtures/skins/DV3tf95f/css/screen.css +262 -0
  25. data/spec/fixtures/skins/DV3tf95f/inc/order_data.txt +1 -0
  26. data/spec/fixtures/skins/JH0815/css/screen.css +262 -0
  27. data/spec/fixtures/skins/JH0815/skin.html.erb +13 -0
  28. data/spec/fixtures/skins/base/css/print.css +7 -0
  29. data/spec/fixtures/skins/base/css/screen_ie6.css +1 -0
  30. data/spec/fixtures/skins/base/img/Airliner.airjamaica.a340.arp.750pix.jpg +0 -0
  31. data/spec/fixtures/skins/base/img/Eurofighter.jpg +0 -0
  32. data/spec/fixtures/skins/base/img/bg_gr.jpg +0 -0
  33. data/spec/fixtures/skins/base/img/blog_gr.jpg +0 -0
  34. data/spec/fixtures/skins/base/img/category.gif +0 -0
  35. data/spec/fixtures/skins/base/img/mig.jpg +0 -0
  36. data/spec/fixtures/skins/base/img/top1.jpg +0 -0
  37. data/spec/fixtures/skins/base/img/top2.jpg +0 -0
  38. data/spec/fixtures/skins/base/img/top3.jpg +0 -0
  39. data/spec/fixtures/skins/base/inc/cfooter.txt +15 -0
  40. data/spec/fixtures/skins/base/inc/cheader.txt +11 -0
  41. data/spec/fixtures/skins/base/inc/pmfooter.txt +1 -0
  42. data/spec/fixtures/skins/base/inc/pmheader.txt +4 -0
  43. data/spec/fixtures/skins/base/res/resources.properties +0 -0
  44. data/spec/fixtures/skins/example-7hFAQnmt/css/print.css +17 -0
  45. data/spec/fixtures/skins/example-7hFAQnmt/css/screen.css +704 -0
  46. data/spec/fixtures/skins/example-7hFAQnmt/css/screen_ie6.css +7 -0
  47. data/spec/fixtures/skins/example-7hFAQnmt/img/banner_top.png +0 -0
  48. data/spec/fixtures/skins/example-7hFAQnmt/img/bg.gif +0 -0
  49. data/spec/fixtures/skins/example-7hFAQnmt/img/bg_buttons.png +0 -0
  50. data/spec/fixtures/skins/example-7hFAQnmt/img/button_template.xcf +0 -0
  51. data/spec/fixtures/skins/example-7hFAQnmt/img/gradient.png +0 -0
  52. data/spec/fixtures/skins/example-7hFAQnmt/img/logo.png +0 -0
  53. data/spec/fixtures/skins/example-7hFAQnmt/img/logo.xcf +0 -0
  54. data/spec/fixtures/skins/example-7hFAQnmt/inc/cfooter.txt +1 -0
  55. data/spec/fixtures/skins/example-7hFAQnmt/inc/cheader.txt +2 -0
  56. data/spec/fixtures/skins/example-7hFAQnmt/inc/pmfooter.txt +1 -0
  57. data/spec/fixtures/skins/example-7hFAQnmt/inc/pmheader.txt +2 -0
  58. data/spec/fixtures/skins/example-7hFAQnmt/metadata.yml +5 -0
  59. data/spec/spec_helper.rb +21 -0
  60. metadata +228 -0
@@ -0,0 +1,661 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://ca-test.adyen.com/ca/ca/login.shtml
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ""
9
+ headers:
10
+ Accept:
11
+ - "*/*"
12
+ User-Agent:
13
+ - Mechanize/2.3 Ruby/1.9.2p290 (http://github.com/tenderlove/mechanize/)
14
+ Accept-Encoding:
15
+ - gzip,deflate,identity
16
+ Accept-Charset:
17
+ - ISO-8859-1,utf-8;q=0.7,*;q=0.7
18
+ Accept-Language:
19
+ - en-us,en;q=0.5
20
+ Host:
21
+ - ca-test.adyen.com
22
+ Connection:
23
+ - keep-alive
24
+ Keep-Alive:
25
+ - 300
26
+ response:
27
+ status:
28
+ code: 200
29
+ message: OK
30
+ headers:
31
+ Date:
32
+ - Tue, 10 Apr 2012 17:04:14 GMT
33
+ Server:
34
+ - Apache
35
+ Cache-Control:
36
+ - no-cache, no-store, must-revalidate, max-age=0, post-check=0, pre-check=0
37
+ Pragma:
38
+ - no-cache
39
+ Expires:
40
+ - "-1"
41
+ X-Frame-Options:
42
+ - SAMEORIGIN
43
+ Set-Cookie:
44
+ - JSESSIONID=7DC48F7B45B0783A797070828D0F8A3C.test5e; Path=/ca/; Secure; HttpOnly
45
+ Content-Language:
46
+ - en-GB
47
+ Keep-Alive:
48
+ - timeout=15, max=100
49
+ Connection:
50
+ - Keep-Alive
51
+ Transfer-Encoding:
52
+ - chunked
53
+ Content-Type:
54
+ - text/html;charset=UTF-8
55
+ body:
56
+ encoding: US-ASCII
57
+ string: |
58
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
59
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
60
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
61
+ <head>
62
+
63
+ <title>Adyen PSP System</title>
64
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
65
+ <meta http-equiv="content-style-type" content="text/css" />
66
+ <meta http-equiv="imagetoolbar" content="no" />
67
+ <meta content="TRUE" name="MSSmartTagsPreventParsing" />
68
+
69
+ <link rel="shortcut icon" href="/ca/img/adyen/favicon.ico;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" type="image/ico"/>
70
+
71
+ <script type="text/javascript" src="/ca/js/functions.js;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e"></script>
72
+ <script src="/ca/js/prototype.js;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" type="text/javascript"></script>
73
+ <script src="/ca/js/scriptaculous.js;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" type="text/javascript"></script>
74
+
75
+ <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style.css;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" />
76
+ <!--[if lt IE 7]>
77
+ <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style_ie6.css;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" />
78
+ <![endif]-->
79
+
80
+
81
+ </head>
82
+ <body>
83
+
84
+ <div id="topbar"><div class="iefillerdiv"></div></div>
85
+ <div id="middlebarcontainer">
86
+ <div id="middlebar">
87
+ <a href="/ca/ca/overview/default.shtml;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e"><img id="mainlogo" src="/ca/img/adyen.png;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" alt="Logo"/>
88
+ <img id="testsystemwarning" src="/ca/img/adyen_test.png;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" alt="test"/></a>
89
+ <img id="maintagline" src="/ca/img/adyen_tagline.png;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" alt="Complex Finance, Online Insight" />
90
+ </div>
91
+ </div>
92
+ <div id="bottombar"><div id="bottombar2"></div></div>
93
+
94
+ <div id="maincontent">
95
+ <div id="boxleft">
96
+ <div id="infobox">
97
+ <ul class="nav">
98
+ </ul>
99
+ <div id="infoboxcontent">
100
+ <div>
101
+ </div>
102
+
103
+ <div style="text-align: left; margin-top: 5px">
104
+ <!--a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" title="Home"><img src="/ca/img/home.gif;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" alt="Home"/></a-->
105
+ <a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e"><img src="/ca/img/home.png;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" alt="Home"/> home</a><br/>
106
+ <a class="icon" href="/ca/logoff.shtml;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" title="Sign Off"><img src="/ca/img/exit.png;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e" alt="Sign Off"/> sign off</a>
107
+ </div>
108
+ </div>
109
+ </div>
110
+
111
+
112
+ <div class="bbarlmenu">
113
+ <div class="bbarrmenu">
114
+ <div class="bbarmenu">
115
+ </div>
116
+ </div>
117
+ </div>
118
+
119
+ </div>
120
+
121
+ <div id="contentbg">
122
+ <div id="content">
123
+ <div id="contentwrapper">
124
+
125
+ <div id="subcontent">
126
+ <ul id="help">
127
+ <li class="palette7">
128
+ <h3 class="bg">Signing On</h3>
129
+ <div class="border">
130
+ All fields are case-sensitive. If you have trouble signing on, check that the "Caps Lock" isn't on. </div>
131
+ </li>
132
+ </ul>
133
+
134
+ <script type="text/javascript" language="javascript">
135
+ function createCookie(name,value,days) {
136
+ path = "/ca/";
137
+ if (path == "") path = "/";
138
+ if (days) {
139
+ var date = new Date();
140
+ date.setTime(date.getTime()+(days*24*60*60*1000));
141
+ var expires = "; expires="+date.toGMTString();
142
+ } else {
143
+ var expires = "";
144
+ }
145
+ document.cookie = name+"="+value+expires+"; path="+path+(window.location.protocol.indexOf('https:')==0?'; Secure':'');
146
+ }
147
+
148
+ function eraseCookie(name) {
149
+ createCookie(name,"",-1);
150
+ }
151
+
152
+ function handleCookie() {
153
+ if(document.getElementById("rememberMe").checked == true) {
154
+ if(document.getElementById("accountTextInput")) {
155
+ createCookie("defaultAccount", document.getElementById("accountTextInput").value,7);
156
+ } else {
157
+ createCookie("defaultAccount", document.getElementById("accountHiddenInput").value,7);
158
+ }
159
+ } else {
160
+ eraseCookie("defaultAccount")
161
+ }
162
+ }
163
+ </script>
164
+ <h1 class="pagetitle">Please Sign On</h1>
165
+
166
+ <form method="post" autocomplete="off" onsubmit="handleCookie();" action="config/j_security_check">
167
+ <table class="data">
168
+ <tr>
169
+ <th class="row"><label for="accountTextInput">Account:</label></th>
170
+ <td><input type="text" id="accountTextInput" name="j_account" /></td>
171
+ </tr>
172
+ <tr>
173
+ <th class="row"><label for="j_username">User Name:</label></th>
174
+ <td><input type="text" id="j_username" name="j_username" /></td>
175
+ </tr>
176
+
177
+ <script type="text/javascript" language="javascript">
178
+ var elToFocus = document.getElementById("accountTextInput");
179
+ if( null == elToFocus ) {
180
+ elToFocus = document.getElementById("j_username");
181
+ }
182
+ elToFocus.focus();
183
+ </script>
184
+ <tr>
185
+ <th class="row"><label for="j_password">Password:</label></th>
186
+ <td><input type="password" id="j_password" name="j_password" /></td>
187
+ </tr>
188
+
189
+ <tr>
190
+ <td colspan="2"><label for="rememberMe">Remember my account on this computer</label> <input type="checkbox"
191
+ id="rememberMe" name="rememberMe" /></td>
192
+ </tr>
193
+
194
+ <tr>
195
+ <td colspan="2"><br />
196
+ <input type="hidden" name="j_formHash" value="470RjWtx2CFovzLaJqN9MBJY3U5bbA=" />
197
+ <input type="submit" class="button" value="Submit" /></td>
198
+ </tr>
199
+ </table>
200
+ </form>
201
+ <br/>
202
+ <a href="/ca/forgotPassword.shtml;jsessionid=7DC48F7B45B0783A797070828D0F8A3C.test5e">Forgot your password?</a>
203
+ </div>
204
+
205
+ <div class="bbarl">
206
+ <div class="bbarr">
207
+ <div class="bbar">
208
+ </div>
209
+ </div>
210
+ </div>
211
+ </div>
212
+
213
+
214
+ </div>
215
+ </div>
216
+ </div>
217
+ </body>
218
+ </html>
219
+
220
+ http_version:
221
+ recorded_at: Tue, 10 Apr 2012 17:04:14 GMT
222
+ - request:
223
+ method: post
224
+ uri: https://ca-test.adyen.com/ca/ca/config/j_security_check
225
+ body:
226
+ encoding: UTF-8
227
+ string: j_account=SoundCloud&j_username=skinadmin&j_password=12312311&j_formHash=470RjWtx2CFovzLaJqN9MBJY3U5bbA%3D
228
+ headers:
229
+ Accept:
230
+ - "*/*"
231
+ User-Agent:
232
+ - Mechanize/2.3 Ruby/1.9.2p290 (http://github.com/tenderlove/mechanize/)
233
+ Accept-Encoding:
234
+ - gzip,deflate,identity
235
+ Accept-Charset:
236
+ - ISO-8859-1,utf-8;q=0.7,*;q=0.7
237
+ Accept-Language:
238
+ - en-us,en;q=0.5
239
+ Cookie:
240
+ - JSESSIONID=7DC48F7B45B0783A797070828D0F8A3C.test5e
241
+ Host:
242
+ - ca-test.adyen.com
243
+ Referer:
244
+ - &id001 !ruby/object:URI::HTTPS
245
+ fragment:
246
+ host: ca-test.adyen.com
247
+ opaque:
248
+ parser:
249
+ password:
250
+ path: /ca/ca/login.shtml
251
+ port: 443
252
+ query:
253
+ registry:
254
+ scheme: https
255
+ user:
256
+ Content-Type:
257
+ - application/x-www-form-urlencoded
258
+ Content-Length:
259
+ - "106"
260
+ Connection:
261
+ - keep-alive
262
+ Keep-Alive:
263
+ - 300
264
+ response:
265
+ status:
266
+ code: 302
267
+ message: Moved Temporarily
268
+ headers:
269
+ Date:
270
+ - Tue, 10 Apr 2012 17:04:14 GMT
271
+ Server:
272
+ - Apache
273
+ Set-Cookie:
274
+ - JSESSIONID=8B6F6027FB64519949B432989D3DBB65.test5e; Path=/ca/; Secure; HttpOnly
275
+ Location:
276
+ - https://ca-test.adyen.com/ca/
277
+ Content-Length:
278
+ - "0"
279
+ Keep-Alive:
280
+ - timeout=15, max=100
281
+ Connection:
282
+ - Keep-Alive
283
+ Content-Type:
284
+ - text/plain; charset=UTF-8
285
+ body:
286
+ encoding: US-ASCII
287
+ string: ""
288
+ http_version:
289
+ recorded_at: Tue, 10 Apr 2012 17:04:14 GMT
290
+ - request:
291
+ method: get
292
+ uri: https://ca-test.adyen.com/ca/
293
+ body:
294
+ encoding: US-ASCII
295
+ string: ""
296
+ headers:
297
+ Accept:
298
+ - "*/*"
299
+ User-Agent:
300
+ - Mechanize/2.3 Ruby/1.9.2p290 (http://github.com/tenderlove/mechanize/)
301
+ Accept-Encoding:
302
+ - gzip,deflate,identity
303
+ Accept-Charset:
304
+ - ISO-8859-1,utf-8;q=0.7,*;q=0.7
305
+ Accept-Language:
306
+ - en-us,en;q=0.5
307
+ Cookie:
308
+ - JSESSIONID=8B6F6027FB64519949B432989D3DBB65.test5e
309
+ Host:
310
+ - ca-test.adyen.com
311
+ Referer:
312
+ - *id001
313
+ Connection:
314
+ - keep-alive
315
+ Keep-Alive:
316
+ - 300
317
+ response:
318
+ status:
319
+ code: 302
320
+ message: Moved Temporarily
321
+ headers:
322
+ Date:
323
+ - Tue, 10 Apr 2012 17:04:14 GMT
324
+ Server:
325
+ - Apache
326
+ Location:
327
+ - https://ca-test.adyen.com/ca/ca/overview/default.shtml
328
+ Content-Language:
329
+ - en-GB
330
+ Content-Length:
331
+ - "0"
332
+ Keep-Alive:
333
+ - timeout=15, max=100
334
+ Connection:
335
+ - Keep-Alive
336
+ Content-Type:
337
+ - text/plain; charset=UTF-8
338
+ body:
339
+ encoding: US-ASCII
340
+ string: ""
341
+ http_version:
342
+ recorded_at: Tue, 10 Apr 2012 17:04:14 GMT
343
+ - request:
344
+ method: get
345
+ uri: https://ca-test.adyen.com/ca/ca/overview/default.shtml
346
+ body:
347
+ encoding: US-ASCII
348
+ string: ""
349
+ headers:
350
+ Accept:
351
+ - "*/*"
352
+ User-Agent:
353
+ - Mechanize/2.3 Ruby/1.9.2p290 (http://github.com/tenderlove/mechanize/)
354
+ Accept-Encoding:
355
+ - gzip,deflate,identity
356
+ Accept-Charset:
357
+ - ISO-8859-1,utf-8;q=0.7,*;q=0.7
358
+ Accept-Language:
359
+ - en-us,en;q=0.5
360
+ Cookie:
361
+ - JSESSIONID=8B6F6027FB64519949B432989D3DBB65.test5e
362
+ Host:
363
+ - ca-test.adyen.com
364
+ Referer:
365
+ - *id001
366
+ Connection:
367
+ - keep-alive
368
+ Keep-Alive:
369
+ - 300
370
+ response:
371
+ status:
372
+ code: 200
373
+ message: OK
374
+ headers:
375
+ Date:
376
+ - Tue, 10 Apr 2012 17:04:14 GMT
377
+ Server:
378
+ - Apache
379
+ Cache-Control:
380
+ - no-cache, no-store, must-revalidate, max-age=0, post-check=0, pre-check=0
381
+ Pragma:
382
+ - no-cache
383
+ Expires:
384
+ - "-1"
385
+ X-Frame-Options:
386
+ - SAMEORIGIN
387
+ Content-Language:
388
+ - en-GB
389
+ Keep-Alive:
390
+ - timeout=15, max=100
391
+ Connection:
392
+ - Keep-Alive
393
+ Transfer-Encoding:
394
+ - chunked
395
+ Content-Type:
396
+ - text/html;charset=UTF-8
397
+ body:
398
+ encoding: US-ASCII
399
+ string: |
400
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
401
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
402
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
403
+ <head>
404
+
405
+ <title>Adyen PSP System</title>
406
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
407
+ <meta http-equiv="content-style-type" content="text/css" />
408
+ <meta http-equiv="imagetoolbar" content="no" />
409
+ <meta content="TRUE" name="MSSmartTagsPreventParsing" />
410
+
411
+ <link rel="shortcut icon" href="/ca/img/adyen/favicon.ico" type="image/ico"/>
412
+
413
+ <script type="text/javascript" src="/ca/js/functions.js"></script>
414
+ <script src="/ca/js/prototype.js" type="text/javascript"></script>
415
+ <script src="/ca/js/scriptaculous.js" type="text/javascript"></script>
416
+
417
+ <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style.css" />
418
+ <!--[if lt IE 7]>
419
+ <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style_ie6.css" />
420
+ <![endif]-->
421
+
422
+ <link rel="alternate" title="Payments Per Hour RSS" href="https://ca-test.adyen.com/reports/token/rss/lasttx/Company/SoundCloud/?user=skinadmin%40Company.SoundCloud&amp;amp%3Bkey=1334075779504&amp;amp%3Btoken=KV7veoeR9GsL%2FH%2BZrgI1Yhiio5I%3D" type="application/rss+xml" />
423
+ <link rel="alternate" title="Authorised Volume RSS" href="https://ca-test.adyen.com/reports/token/rss/authorisedtxrss/Company/SoundCloud/?user=skinadmin%40Company.SoundCloud&amp;amp%3Bkey=1334075779504&amp;amp%3Btoken=KV7veoeR9GsL%2FH%2BZrgI1Yhiio5I%3D" type="application/rss+xml" />
424
+ <link rel="alternate" title="System Messages RSS" href="https://ca-test.adyen.com/reports/token/rss/systemmessagesrss/Company/SoundCloud/?user=skinadmin%40Company.SoundCloud&amp;amp%3Bkey=1334075779504&amp;amp%3Btoken=KV7veoeR9GsL%2FH%2BZrgI1Yhiio5I%3D" type="application/rss+xml" />
425
+
426
+ </head>
427
+ <body>
428
+
429
+ <div id="topbar"><div class="iefillerdiv"></div></div>
430
+ <div id="middlebarcontainer">
431
+ <div id="middlebar">
432
+ <a href="/ca/ca/overview/default.shtml"><img id="mainlogo" src="/ca/img/adyen.png" alt="Logo"/>
433
+ <img id="testsystemwarning" src="/ca/img/adyen_test.png" alt="test"/></a>
434
+ <img id="maintagline" src="/ca/img/adyen_tagline.png" alt="Complex Finance, Online Insight" />
435
+ </div>
436
+ </div>
437
+ <div id="bottombar"><div id="bottombar2"></div></div>
438
+
439
+ <div id="maincontent">
440
+ <div id="boxleft">
441
+ <div id="infobox">
442
+ <ul class="nav">
443
+ </ul>
444
+ <div id="infoboxcontent">
445
+ <div id="merchantlogo">
446
+ <a href="/ca/ca/accounts/manage.shtml"><img src="/ca/ca/image.shtml?cachingId=Company.SoundCloud&amp;name=accountLogo&amp;mimeType=image%2Fpng" alt="merchantlogo"/></a>
447
+ </div>
448
+ <div>
449
+ <div style="padding-left: 0px;">
450
+ <a class="accountnav" href="/ca/ca/accounts/choose.shtml?setActiveAccountKey=Company.SoundCloud"
451
+ style="text-decoration: underline; color: #666;" >SoundCloud</a>
452
+ </div>
453
+ </div>
454
+
455
+ <div style="text-align: left; margin-top: 5px">
456
+ <!--a class="icon" href="/ca/ca/overview/default.shtml" title="Home"><img src="/ca/img/home.gif" alt="Home"/></a-->
457
+ <a class="icon" href="/ca/logoff.shtml" title="Sign Off"><img src="/ca/img/exit.png" alt="Sign Off"/> sign off</a>
458
+ <br/><a class="icon" href="/ca/ca/accounts/choose.shtml?chooseUserAccount=true"><img src="/ca/img/bookmark.png" alt="bookmarks"/> bookmarks</a>
459
+ </div>
460
+ </div>
461
+ </div>
462
+
463
+
464
+ <div class="bbarlmenu">
465
+ <div class="bbarrmenu">
466
+ <div class="bbarmenu">
467
+ </div>
468
+ </div>
469
+ </div>
470
+
471
+ <div id="menu">
472
+ <ul class="nav">
473
+ <li class="navfirstli">&nbsp;</li>
474
+ <li class="activelink" ><a href="/ca/ca/overview/default.shtml">Home</a></li>
475
+ <li ><a href="/ca/ca/payments/showList.shtml">Payments</a></li>
476
+ <li ><a href="/ca/ca/accounts/choose.shtml">Accounts</a></li>
477
+ <li ><a href="/ca/ca/reports/choose.shtml">Reports</a></li>
478
+ <li ><a href="/ca/ca/skin/skins.shtml">Skins</a></li>
479
+ <li ><a href="/ca/ca/config/choose.shtml">Settings</a></li>
480
+ <li ><a href="/ca/ca/support/start.shtml">Support</a></li>
481
+ </ul>
482
+ </div>
483
+ <div class="bbarlmenu">
484
+ <div class="bbarrmenu">
485
+ <div class="bbarmenu">
486
+ </div>
487
+ </div>
488
+ </div>
489
+ </div>
490
+
491
+ <div id="contentbg">
492
+ <div id="content">
493
+ <div id="contentwrapper">
494
+
495
+ <script type="text/javascript" src="/ca/js/FusionCharts.js"></script>
496
+
497
+ <div id="subcontent">
498
+
499
+
500
+
501
+
502
+
503
+
504
+ <div style="float: right; text-align: right; font-size: 0.8em;"><h1 title="Page Generation Time">2012-04-10 19:04:14 CEST</h1>
505
+ <span class="topright">
506
+ <a href="/ca/ca/overview/default.shtml?configure=true" title="Configure this page">
507
+ <img src="/ca/img/icons/layout_edit.png" alt="Edit Layout" /> Customise this page </a>
508
+ </span>
509
+ </div>
510
+
511
+ <h1 class="pagetitle">Welcome skinadmin</h1>
512
+
513
+
514
+ <div id="portal" class="portal">
515
+
516
+
517
+ <div class="portal-column" id="portal-column-1">
518
+ <div class="portal-column-base"> [ column 1 ] </div>
519
+ <div id="login_info" class="block">
520
+ <h3 class="handle">
521
+ <a class="block-toggle"><span>toggle</span></a>
522
+ Login Info
523
+ </h3>
524
+ <div class="content">
525
+ You are logged in under the SoundCloud
526
+ Company account.<br />
527
+ Your last login was on <b>2012-04-10 19:01:28 CEST</b>.
528
+ </div>
529
+ </div>
530
+ <div id="system_messages" class="block">
531
+ <h3 class="handle">
532
+ <a class="block-toggle"><span>toggle</span></a>
533
+ System Messages
534
+ </h3>
535
+ <div class="content">
536
+ <div style="float: right; padding: 0px;"><a href="/ca/ca/systemmessage/editsystemmessagesubscription.shtml"><img style="vertical-align: middle" alt="[ add ]" title="Edit System Message Subscriptions" src="/ca/img/icons/comment_edit.png" /></a></div>
537
+ <img style="vertical-align: middle" alt="URGENT" src="/ca/img/icons/error.png" />
538
+ <a href="15342" onclick="return toggleElementVisibility(document.getElementById('system_message_15342'))">SoundCloudCOM is NOT accepting Notifications</a>
539
+ <span style="font-size: 0.8em; font-style: italic" >
540
+ (2012-04-07 18:32:14 CEST)
541
+ </span>
542
+ <div style="border: 1px solid grey; display: none" id="system_message_15342">
543
+ <div style="background-color: #ddd; padding: 0px;"><b>NOTIFICATIONS</b>
544
+ <span style="font-size: 0.8em; font-style: italic">
545
+ </span>
546
+ </div>
547
+ SoundCloudCOM is NOT accepting Notifications on url http://warteschlange.de:8888/adyen/notify. Please check the notification url of this merchant.
548
+ </div>
549
+ <br />
550
+ </div>
551
+ </div>
552
+ <div id="last_24hours_guage" class="block">
553
+ <h3 class="handle">
554
+ <a class="block-toggle"><span>toggle</span></a>
555
+ Authorisations Last 24 Hours
556
+ </h3>
557
+ <div class="content">
558
+ <div style="text-align: center" id="chart2div">
559
+ <p>&nbsp;</p>
560
+ <p>FusionCharts needs Adobe Flash Player to run. If you're unable to see the chart here,
561
+ it means that your browser does not seem to have the Flash Player Installed. You
562
+ can downloaded it <a href="http://www.adobe.com/products/flashplayer/" onlick="return wopen(this);">here</a> for free.</p>
563
+ </div>
564
+ <script type="text/javascript">
565
+ var chart1 = new FusionCharts("/ca/Charts/AngularGauge.swf", "sampleChart", "180", "110", "0", "0","#FFFFFF","noScale","EN");
566
+ //debugMode, registerWithJS, c, scaleMode, lang, detectFlashVersion, autoInstallRedirect
567
+ chart1.setDataURL("/ca/ca/reports/chartdata/speedometer.shtml?random=1334077454979");
568
+ chart1.render("chart2div");
569
+ </script> </div>
570
+ </div>
571
+ </div>
572
+ <div class="portal-column" id="portal-column-2">
573
+ <div class="portal-column-base"> [ column 2 ] </div>
574
+ <div id="payment_search" class="block">
575
+ <h3 class="handle">
576
+ <a class="block-toggle"><span>toggle</span></a>
577
+ Payment Search
578
+ </h3>
579
+ <div class="content">
580
+ <form method="post" action="/ca/ca/payments/modifySearch.shtml">
581
+ <img class="fr" src="/ca/img/AdyenG_small.png" /> <input type="text" size="30" name="query" value="" />
582
+ <br/>
583
+ <input type="hidden" id="payments_skipList" name="skipList" value="" />
584
+ <input type="submit" name="search" onclick="document.getElementById('payments_skipList').value = ''" value="Search" />
585
+ <input type="submit" name="search" onclick="document.getElementById('payments_skipList').value = 'firstResult'" value="I'm Feeling Lucky" /></form>
586
+ <div style="clear: both; font-size: 0.9em;">Search for payments by entering some search terms in the field above (e.g. amount, reference number, shopper email, etc...).</div>
587
+ </div>
588
+ </div>
589
+ <div id="transaction_history_graph" class="block">
590
+ <h3 class="handle">
591
+ <a class="block-toggle"><span>toggle</span></a>
592
+ Transaction History Graph
593
+ </h3>
594
+ <div class="content">
595
+ <div style="text-align: center" id="chart1div">
596
+ <p>&nbsp;</p>
597
+ <p>FusionCharts needs Adobe Flash Player to run. If you're unable to see the chart here,
598
+ it means that your browser does not seem to have the Flash Player Installed. You
599
+ can downloaded it <a href="http://www.adobe.com/products/flashplayer/" onlick="return wopen(this);">here</a> for free.</p>
600
+ </div>
601
+ <script type="text/javascript">
602
+ var chart1 = new FusionCharts("/ca/Charts/MSLine.swf", "sampleChart", "374", "180", "0", "1","#FFFFFF","noScale","EN","1","0");
603
+ //debugMode, registerWithJS, c, scaleMode, lang, detectFlashVersion, autoInstallRedirect
604
+ chart1.setDataURL("/ca/ca/reports/chartdata/chart_weekhistory.shtml?random=1334077454980");
605
+ chart1.render("chart1div");
606
+ </script> </div>
607
+ </div>
608
+ <div id="system_overview" class="block">
609
+ <h3 class="handle">
610
+ <a class="block-toggle"><span>toggle</span></a>
611
+ System Overview
612
+ </h3>
613
+ <div class="content">
614
+ <table class="data">
615
+ <tr>
616
+ <th class="row">
617
+ Current system time:
618
+ </th>
619
+ <td>
620
+ 2012-04-10 19:04:14 CEST
621
+ </td>
622
+ </tr>
623
+ <tr>
624
+ <th class="row">
625
+ Backoffice up-to-date till:
626
+ </th>
627
+ <td>
628
+ <span title="All payments made till this time are listed in the payments list. Newer payments may not be visible yet.">2012-04-10 19:03:23 CEST</span>
629
+ </td>
630
+ </tr>
631
+ </table> </div>
632
+ </div>
633
+ </div>
634
+ <div class="portal-column" id="portal-column-3">
635
+ <div class="portal-column-base"> [ column 3 ] </div>
636
+ </div>
637
+ <div class="portal-column" id="portal-column-4">
638
+ <div class="portal-column-base"> [ column 4 ] </div>
639
+ </div>
640
+ </div>
641
+ </div>
642
+
643
+
644
+ <div class="bbarl">
645
+ <div class="bbarr">
646
+ <div class="bbar">
647
+ </div>
648
+ </div>
649
+ </div>
650
+ </div>
651
+
652
+
653
+ </div>
654
+ </div>
655
+ </div>
656
+ </body>
657
+ </html>
658
+
659
+ http_version:
660
+ recorded_at: Tue, 10 Apr 2012 17:04:15 GMT
661
+ recorded_with: VCR 2.0.1