adyen-admin 0.0.6 → 0.0.7

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 (23) hide show
  1. data/CHANGES.md +1 -3
  2. data/README.md +10 -2
  3. data/VERSION +1 -1
  4. data/lib/adyen-admin/skin.rb +5 -5
  5. data/spec/adyen-admin/skin_spec.rb +39 -17
  6. data/spec/fixtures/cassettes/Adyen_Admin_Client/_get/raises_authenticated_error_when_not_logged_in.yml +9 -9
  7. data/spec/fixtures/cassettes/Adyen_Admin_Client/_login/passes_with_correct_username_password.yml +35 -35
  8. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all/freezes_local_skins.yml +3 -3
  9. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all/returns_the_skins.yml +3 -3
  10. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all_remote/returns_the_skins.yml +3 -3
  11. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all_remote/sets_local_path.yml +3 -3
  12. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_decompile/new_remote_skin/downloads_and_decompiles_skin.yml +537 -0
  13. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_download/gets_the_file.yml +65 -65
  14. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_download/is_a_zipfile.yml +65 -65
  15. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_find/returns_no_skin.yml +3 -3
  16. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_find/returns_the_skin.yml +3 -3
  17. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_test_url/returns_url_to_test.yml +16 -16
  18. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_upload/valid_set/increases_version.yml +103 -93
  19. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_version/returns_live_value.yml +4 -4
  20. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_version/returns_test_value.yml +3 -3
  21. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_version/returns_uploaded_value.yml +4 -4
  22. data/spec/fixtures/cassettes/login.yml +34 -34
  23. metadata +17 -15
data/CHANGES.md CHANGED
@@ -7,10 +7,8 @@
7
7
  * add CLI binaries (to compile + upload) -> read from .adyenrc file
8
8
  * make compatible with Live system
9
9
 
10
- ## v0.0.6
10
+ ## v0.0.7
11
11
  * fix download issue
12
-
13
- ## v0.0.5
14
12
  * fix name with multiple - issue
15
13
  * added decompile with backup
16
14
 
data/README.md CHANGED
@@ -23,18 +23,26 @@ Adyen::Admin.login(<accountname>, <username>, <password>)
23
23
 
24
24
  Adyen::Admin::Skin.all #returns all remote + local skins
25
25
 
26
+ skin = Adyen::Admin::Skin.find("<skin code>") #find (remote) skin by code
27
+
28
+ zip_file = skin.download # get zip file
29
+
30
+ skin.decompile(zip_file) # unzip file and move to skin path, backup + overwrite existing files
31
+
26
32
  ```
27
33
 
28
34
  ### Skins
29
35
 
30
- By now a Skin can be:
36
+ Then Skin object represent an adyen skin is mapped to local folder, to a remote endpoint or both. Local only skins are `froozen` to indicate the missing endpoint.
37
+
38
+ By now a Skin has following actions:
31
39
 
32
40
  * downloaded
41
+ * decompiled
33
42
  * uploaded
34
43
  * compiled
35
44
  * retrieve versions
36
45
  * retrieve test_url
37
- * map to local or remote
38
46
 
39
47
  ## Dependencies
40
48
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.6
1
+ 0.0.7
@@ -134,15 +134,14 @@ module Adyen
134
134
  compile(/(zip|lock)$/, ".backup.zip")
135
135
  end
136
136
  else
137
- File.join(Skin.default_path, [name,code].compact.join("-")).tap do |p|
138
- `mkdir -p #{p}`
139
- self.path = p
140
- end
137
+ backup = false
138
+ decompile_path = File.join(Skin.default_path, [name,code].compact.join("-"))
139
+ `mkdir -p #{decompile_path}`
141
140
  end
142
141
 
143
142
  Zip::ZipFile.open(filename) do |zip_file|
144
143
  zip_file.each do |file|
145
- f_path = File.join(self.path, file.name.gsub("#{code}/", ""))
144
+ f_path = File.join(self.path || decompile_path, file.name.gsub("#{code}/", ""))
146
145
  FileUtils.mkdir_p(File.dirname(f_path))
147
146
  if File.directory?(f_path)
148
147
  `mkdir -p #{f_path}`
@@ -152,6 +151,7 @@ module Adyen
152
151
  end
153
152
  end
154
153
  end
154
+ self.path ||= decompile_path
155
155
 
156
156
  if backup
157
157
  `mv .backup.zip #{File.join(self.path, ".backup.zip")}`
@@ -23,7 +23,7 @@ module Adyen::Admin
23
23
 
24
24
  describe ".all_remote" do
25
25
  it 'returns the skins' do
26
- Skin.all.should == [
26
+ Skin.all_remote.should == [
27
27
  skin,
28
28
  Skin.new(:code => "Kx9axnRf", :name => "demo"),
29
29
  Skin.new(:code => "vQW0fEo8", :name => "test"),
@@ -142,30 +142,52 @@ module Adyen::Admin
142
142
  describe "#decompile" do
143
143
  let(:skin_code) { "DV3tf95f" }
144
144
  let(:skin) { Skin.new(:path => "#{skin_fixtures}/#{skin_code}") }
145
- let!(:zip_filename) { skin.compile(nil) }
146
- let(:backup_filename) { File.join(skin.path, '.backup.zip') }
147
-
148
- before do
149
- `cp -r #{skin_fixtures}/#{skin_code} #{skin_fixtures}/_backup`
150
- end
151
145
 
152
146
  after do
153
- `rm -rf #{zip_filename} #{backup_filename} #{skin_fixtures}/#{skin_code}`
154
- `mv #{skin_fixtures}/_backup #{skin_fixtures}/#{skin_code}`
147
+ `rm -rf #{zip_filename}`
155
148
  end
156
149
 
157
- it "creates backup" do
158
- skin.decompile(zip_filename)
150
+ context "existing skin" do
151
+ let(:backup_filename) { File.join(skin.path, '.backup.zip') }
152
+ let!(:zip_filename) { skin.compile(nil) }
159
153
 
160
- File.should be_exists(backup_filename)
161
- end
154
+ before do
155
+ `cp -r #{skin_fixtures}/#{skin_code} #{skin_fixtures}/_backup`
156
+ end
162
157
 
163
- it "unzips files" do
164
- `rm -rf #{skin.path}`
158
+ after do
159
+ `rm -rf #{backup_filename} #{skin_fixtures}/#{skin_code}`
160
+ `mv #{skin_fixtures}/_backup #{skin_fixtures}/#{skin_code}`
161
+ end
165
162
 
166
- expect do
163
+ it "creates backup" do
167
164
  skin.decompile(zip_filename)
168
- end.to change { File.exists?(File.join(skin.path, 'inc', 'order_data.txt')) }
165
+
166
+ File.should be_exists(backup_filename)
167
+ end
168
+
169
+ it "unzips files" do
170
+ `rm -rf #{skin.path}`
171
+
172
+ expect do
173
+ skin.decompile(zip_filename)
174
+ end.to change { File.exists?(File.join(skin.path, 'inc', 'order_data.txt')) }
175
+ end
176
+ end
177
+
178
+ context "new remote skin" do
179
+ let(:skin) { Skin.new(:name => "test", :code => "vQW0fEo8") }
180
+ let!(:zip_filename) { skin.download }
181
+
182
+ after do
183
+ `rm -rf #{skin.path}`
184
+ end
185
+
186
+ it "downloads and decompiles skin" do
187
+ expect do
188
+ skin.decompile(zip_filename)
189
+ end.to change { skin.path }
190
+ end
169
191
  end
170
192
  end
171
193
 
@@ -29,13 +29,13 @@ http_interactions:
29
29
  message: Moved Temporarily
30
30
  headers:
31
31
  Date:
32
- - Thu, 12 Apr 2012 15:12:33 GMT
32
+ - Thu, 12 Apr 2012 15:59:55 GMT
33
33
  Server:
34
34
  - Apache
35
35
  Set-Cookie:
36
- - JSESSIONID=14B161A025DDDCA864B685B2B8936DF0.test5e; Path=/ca/; Secure; HttpOnly
36
+ - JSESSIONID=84F73E1B4FA287BC6827EC39280ADAF8.test5e; Path=/ca/; Secure; HttpOnly
37
37
  Location:
38
- - https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=14B161A025DDDCA864B685B2B8936DF0.test5e
38
+ - https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=84F73E1B4FA287BC6827EC39280ADAF8.test5e
39
39
  Content-Length:
40
40
  - "0"
41
41
  Keep-Alive:
@@ -48,10 +48,10 @@ http_interactions:
48
48
  encoding: US-ASCII
49
49
  string: ""
50
50
  http_version:
51
- recorded_at: Thu, 12 Apr 2012 15:12:33 GMT
51
+ recorded_at: Thu, 12 Apr 2012 15:59:55 GMT
52
52
  - request:
53
53
  method: get
54
- uri: https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=14B161A025DDDCA864B685B2B8936DF0.test5e
54
+ uri: https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=84F73E1B4FA287BC6827EC39280ADAF8.test5e
55
55
  body:
56
56
  encoding: US-ASCII
57
57
  string: ""
@@ -67,7 +67,7 @@ http_interactions:
67
67
  Accept-Language:
68
68
  - en-us,en;q=0.5
69
69
  Cookie:
70
- - JSESSIONID=14B161A025DDDCA864B685B2B8936DF0.test5e
70
+ - JSESSIONID=84F73E1B4FA287BC6827EC39280ADAF8.test5e
71
71
  Host:
72
72
  - ca-test.adyen.com
73
73
  Connection:
@@ -80,7 +80,7 @@ http_interactions:
80
80
  message: OK
81
81
  headers:
82
82
  Date:
83
- - Thu, 12 Apr 2012 15:12:33 GMT
83
+ - Thu, 12 Apr 2012 15:59:56 GMT
84
84
  Server:
85
85
  - Apache
86
86
  Cache-Control:
@@ -242,7 +242,7 @@ http_interactions:
242
242
 
243
243
  <tr>
244
244
  <td colspan="2"><br />
245
- <input type="hidden" name="j_formHash" value="204t93A+Vr9sLSS0lCB/zfNwdobM4A=" />
245
+ <input type="hidden" name="j_formHash" value="994jn5V6LNqMGPZwB9TZTQnwIKRgsw=" />
246
246
  <input type="submit" class="button" value="Submit" /></td>
247
247
  </tr>
248
248
  </table>
@@ -267,5 +267,5 @@ http_interactions:
267
267
  </html>
268
268
 
269
269
  http_version:
270
- recorded_at: Thu, 12 Apr 2012 15:12:33 GMT
270
+ recorded_at: Thu, 12 Apr 2012 15:59:55 GMT
271
271
  recorded_with: VCR 2.0.1
@@ -29,7 +29,7 @@ http_interactions:
29
29
  message: OK
30
30
  headers:
31
31
  Date:
32
- - Thu, 12 Apr 2012 15:12:32 GMT
32
+ - Thu, 12 Apr 2012 15:59:55 GMT
33
33
  Server:
34
34
  - Apache
35
35
  Cache-Control:
@@ -41,7 +41,7 @@ http_interactions:
41
41
  X-Frame-Options:
42
42
  - SAMEORIGIN
43
43
  Set-Cookie:
44
- - JSESSIONID=835803BCAD34B80F5BF46419CA9593A1.test5e; Path=/ca/; Secure; HttpOnly
44
+ - JSESSIONID=694FD1B42F2D99DE9A8621430348F99E.test5e; Path=/ca/; Secure; HttpOnly
45
45
  Content-Language:
46
46
  - en-GB
47
47
  Keep-Alive:
@@ -66,15 +66,15 @@ http_interactions:
66
66
  <meta http-equiv="imagetoolbar" content="no" />
67
67
  <meta content="TRUE" name="MSSmartTagsPreventParsing" />
68
68
 
69
- <link rel="shortcut icon" href="/ca/img/adyen/favicon.ico;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" type="image/ico"/>
69
+ <link rel="shortcut icon" href="/ca/img/adyen/favicon.ico;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" type="image/ico"/>
70
70
 
71
- <script type="text/javascript" src="/ca/js/functions.js;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e"></script>
72
- <script src="/ca/js/prototype.js;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" type="text/javascript"></script>
73
- <script src="/ca/js/scriptaculous.js;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" type="text/javascript"></script>
71
+ <script type="text/javascript" src="/ca/js/functions.js;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e"></script>
72
+ <script src="/ca/js/prototype.js;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" type="text/javascript"></script>
73
+ <script src="/ca/js/scriptaculous.js;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" type="text/javascript"></script>
74
74
 
75
- <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style.css;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" />
75
+ <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style.css;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" />
76
76
  <!--[if lt IE 7]>
77
- <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style_ie6.css;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" />
77
+ <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style_ie6.css;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" />
78
78
  <![endif]-->
79
79
 
80
80
 
@@ -84,9 +84,9 @@ http_interactions:
84
84
  <div id="topbar"><div class="iefillerdiv"></div></div>
85
85
  <div id="middlebarcontainer">
86
86
  <div id="middlebar">
87
- <a href="/ca/ca/overview/default.shtml;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e"><img id="mainlogo" src="/ca/img/adyen.png;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="Logo"/>
88
- <img id="testsystemwarning" src="/ca/img/adyen_test.png;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="test"/></a>
89
- <img id="maintagline" src="/ca/img/adyen_tagline.png;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="Complex Finance, Online Insight" />
87
+ <a href="/ca/ca/overview/default.shtml;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e"><img id="mainlogo" src="/ca/img/adyen.png;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" alt="Logo"/>
88
+ <img id="testsystemwarning" src="/ca/img/adyen_test.png;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" alt="test"/></a>
89
+ <img id="maintagline" src="/ca/img/adyen_tagline.png;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" alt="Complex Finance, Online Insight" />
90
90
  </div>
91
91
  </div>
92
92
  <div id="bottombar"><div id="bottombar2"></div></div>
@@ -101,9 +101,9 @@ http_interactions:
101
101
  </div>
102
102
 
103
103
  <div style="text-align: left; margin-top: 5px">
104
- <!--a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" title="Home"><img src="/ca/img/home.gif;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="Home"/></a-->
105
- <a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e"><img src="/ca/img/home.png;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="Home"/> home</a><br/>
106
- <a class="icon" href="/ca/logoff.shtml;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" title="Sign Off"><img src="/ca/img/exit.png;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="Sign Off"/> sign off</a>
104
+ <!--a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" title="Home"><img src="/ca/img/home.gif;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" alt="Home"/></a-->
105
+ <a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e"><img src="/ca/img/home.png;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" alt="Home"/> home</a><br/>
106
+ <a class="icon" href="/ca/logoff.shtml;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" title="Sign Off"><img src="/ca/img/exit.png;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e" alt="Sign Off"/> sign off</a>
107
107
  </div>
108
108
  </div>
109
109
  </div>
@@ -193,13 +193,13 @@ http_interactions:
193
193
 
194
194
  <tr>
195
195
  <td colspan="2"><br />
196
- <input type="hidden" name="j_formHash" value="369hCKSf1tc95xwgv+hGXVk+oCE6x8=" />
196
+ <input type="hidden" name="j_formHash" value="712Sb34pRfY1Wu+ajYsUlS0w2H9C3k=" />
197
197
  <input type="submit" class="button" value="Submit" /></td>
198
198
  </tr>
199
199
  </table>
200
200
  </form>
201
201
  <br/>
202
- <a href="/ca/forgotPassword.shtml;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e">Forgot your password?</a>
202
+ <a href="/ca/forgotPassword.shtml;jsessionid=694FD1B42F2D99DE9A8621430348F99E.test5e">Forgot your password?</a>
203
203
  </div>
204
204
 
205
205
  <div class="bbarl">
@@ -218,13 +218,13 @@ http_interactions:
218
218
  </html>
219
219
 
220
220
  http_version:
221
- recorded_at: Thu, 12 Apr 2012 15:12:32 GMT
221
+ recorded_at: Thu, 12 Apr 2012 15:59:54 GMT
222
222
  - request:
223
223
  method: post
224
224
  uri: https://ca-test.adyen.com/ca/ca/config/j_security_check
225
225
  body:
226
226
  encoding: UTF-8
227
- string: j_account=SoundCloud&j_username=skinadmin&j_password=12312311&j_formHash=369hCKSf1tc95xwgv%2BhGXVk%2BoCE6x8%3D
227
+ string: j_account=SoundCloud&j_username=skinadmin&j_password=12312311&j_formHash=712Sb34pRfY1Wu%2BajYsUlS0w2H9C3k%3D
228
228
  headers:
229
229
  Accept:
230
230
  - "*/*"
@@ -237,7 +237,7 @@ http_interactions:
237
237
  Accept-Language:
238
238
  - en-us,en;q=0.5
239
239
  Cookie:
240
- - JSESSIONID=835803BCAD34B80F5BF46419CA9593A1.test5e
240
+ - JSESSIONID=694FD1B42F2D99DE9A8621430348F99E.test5e
241
241
  Host:
242
242
  - ca-test.adyen.com
243
243
  Referer:
@@ -256,7 +256,7 @@ http_interactions:
256
256
  Content-Type:
257
257
  - application/x-www-form-urlencoded
258
258
  Content-Length:
259
- - "110"
259
+ - "108"
260
260
  Connection:
261
261
  - keep-alive
262
262
  Keep-Alive:
@@ -267,11 +267,11 @@ http_interactions:
267
267
  message: Moved Temporarily
268
268
  headers:
269
269
  Date:
270
- - Thu, 12 Apr 2012 15:12:33 GMT
270
+ - Thu, 12 Apr 2012 15:59:55 GMT
271
271
  Server:
272
272
  - Apache
273
273
  Set-Cookie:
274
- - JSESSIONID=AEF01AA9362D2B7BCE355B423ADFCF31.test5e; Path=/ca/; Secure; HttpOnly
274
+ - JSESSIONID=3EF6A53A51B9D2A2CFE766D2AE78AEFE.test5e; Path=/ca/; Secure; HttpOnly
275
275
  Location:
276
276
  - https://ca-test.adyen.com/ca/
277
277
  Content-Length:
@@ -286,7 +286,7 @@ http_interactions:
286
286
  encoding: US-ASCII
287
287
  string: ""
288
288
  http_version:
289
- recorded_at: Thu, 12 Apr 2012 15:12:33 GMT
289
+ recorded_at: Thu, 12 Apr 2012 15:59:55 GMT
290
290
  - request:
291
291
  method: get
292
292
  uri: https://ca-test.adyen.com/ca/
@@ -305,7 +305,7 @@ http_interactions:
305
305
  Accept-Language:
306
306
  - en-us,en;q=0.5
307
307
  Cookie:
308
- - JSESSIONID=AEF01AA9362D2B7BCE355B423ADFCF31.test5e
308
+ - JSESSIONID=3EF6A53A51B9D2A2CFE766D2AE78AEFE.test5e
309
309
  Host:
310
310
  - ca-test.adyen.com
311
311
  Referer:
@@ -320,7 +320,7 @@ http_interactions:
320
320
  message: Moved Temporarily
321
321
  headers:
322
322
  Date:
323
- - Thu, 12 Apr 2012 15:12:33 GMT
323
+ - Thu, 12 Apr 2012 15:59:55 GMT
324
324
  Server:
325
325
  - Apache
326
326
  Location:
@@ -339,7 +339,7 @@ http_interactions:
339
339
  encoding: US-ASCII
340
340
  string: ""
341
341
  http_version:
342
- recorded_at: Thu, 12 Apr 2012 15:12:33 GMT
342
+ recorded_at: Thu, 12 Apr 2012 15:59:55 GMT
343
343
  - request:
344
344
  method: get
345
345
  uri: https://ca-test.adyen.com/ca/ca/overview/default.shtml
@@ -358,7 +358,7 @@ http_interactions:
358
358
  Accept-Language:
359
359
  - en-us,en;q=0.5
360
360
  Cookie:
361
- - JSESSIONID=AEF01AA9362D2B7BCE355B423ADFCF31.test5e
361
+ - JSESSIONID=3EF6A53A51B9D2A2CFE766D2AE78AEFE.test5e
362
362
  Host:
363
363
  - ca-test.adyen.com
364
364
  Referer:
@@ -373,7 +373,7 @@ http_interactions:
373
373
  message: OK
374
374
  headers:
375
375
  Date:
376
- - Thu, 12 Apr 2012 15:12:33 GMT
376
+ - Thu, 12 Apr 2012 15:59:55 GMT
377
377
  Server:
378
378
  - Apache
379
379
  Cache-Control:
@@ -501,7 +501,7 @@ http_interactions:
501
501
 
502
502
 
503
503
 
504
- <div style="float: right; text-align: right; font-size: 0.8em;"><h1 title="Page Generation Time">2012-04-12 17:12:33 CEST</h1>
504
+ <div style="float: right; text-align: right; font-size: 0.8em;"><h1 title="Page Generation Time">2012-04-12 17:59:55 CEST</h1>
505
505
  <span class="topright">
506
506
  <a href="/ca/ca/overview/default.shtml?configure=true" title="Configure this page">
507
507
  <img src="/ca/img/icons/layout_edit.png" alt="Edit Layout" /> Customise this page </a>
@@ -524,7 +524,7 @@ http_interactions:
524
524
  <div class="content">
525
525
  You are logged in under the SoundCloud
526
526
  Company account.<br />
527
- Your last login was on <b>2012-04-12 17:04:18 CEST</b>.
527
+ Your last login was on <b>2012-04-12 17:58:04 CEST</b>.
528
528
  </div>
529
529
  </div>
530
530
  <div id="system_messages" class="block">
@@ -564,7 +564,7 @@ http_interactions:
564
564
  <script type="text/javascript">
565
565
  var chart1 = new FusionCharts("/ca/Charts/AngularGauge.swf", "sampleChart", "180", "110", "0", "0","#FFFFFF","noScale","EN");
566
566
  //debugMode, registerWithJS, c, scaleMode, lang, detectFlashVersion, autoInstallRedirect
567
- chart1.setDataURL("/ca/ca/reports/chartdata/speedometer.shtml?random=1334243553579");
567
+ chart1.setDataURL("/ca/ca/reports/chartdata/speedometer.shtml?random=1334246395762");
568
568
  chart1.render("chart2div");
569
569
  </script> </div>
570
570
  </div>
@@ -601,7 +601,7 @@ http_interactions:
601
601
  <script type="text/javascript">
602
602
  var chart1 = new FusionCharts("/ca/Charts/MSLine.swf", "sampleChart", "374", "180", "0", "1","#FFFFFF","noScale","EN","1","0");
603
603
  //debugMode, registerWithJS, c, scaleMode, lang, detectFlashVersion, autoInstallRedirect
604
- chart1.setDataURL("/ca/ca/reports/chartdata/chart_weekhistory.shtml?random=1334243553580");
604
+ chart1.setDataURL("/ca/ca/reports/chartdata/chart_weekhistory.shtml?random=1334246395763");
605
605
  chart1.render("chart1div");
606
606
  </script> </div>
607
607
  </div>
@@ -617,7 +617,7 @@ http_interactions:
617
617
  Current system time:
618
618
  </th>
619
619
  <td>
620
- 2012-04-12 17:12:33 CEST
620
+ 2012-04-12 17:59:55 CEST
621
621
  </td>
622
622
  </tr>
623
623
  <tr>
@@ -625,7 +625,7 @@ http_interactions:
625
625
  Backoffice up-to-date till:
626
626
  </th>
627
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-12 17:11:44 CEST</span>
628
+ <span title="All payments made till this time are listed in the payments list. Newer payments may not be visible yet.">2012-04-12 17:59:14 CEST</span>
629
629
  </td>
630
630
  </tr>
631
631
  </table> </div>
@@ -657,5 +657,5 @@ http_interactions:
657
657
  </html>
658
658
 
659
659
  http_version:
660
- recorded_at: Thu, 12 Apr 2012 15:12:33 GMT
660
+ recorded_at: Thu, 12 Apr 2012 15:59:55 GMT
661
661
  recorded_with: VCR 2.0.1
@@ -18,7 +18,7 @@ http_interactions:
18
18
  Accept-Language:
19
19
  - en-us,en;q=0.5
20
20
  Cookie:
21
- - JSESSIONID=8C3D2F4728B757CCE97F3C32698E9008.test5e
21
+ - JSESSIONID=BBA383BAB63B4A2D7A65D7989DB9AC63.test5e
22
22
  Host:
23
23
  - ca-test.adyen.com
24
24
  Connection:
@@ -31,7 +31,7 @@ http_interactions:
31
31
  message: OK
32
32
  headers:
33
33
  Date:
34
- - Thu, 12 Apr 2012 15:12:35 GMT
34
+ - Thu, 12 Apr 2012 15:59:57 GMT
35
35
  Server:
36
36
  - Apache
37
37
  Cache-Control:
@@ -288,5 +288,5 @@ http_interactions:
288
288
  </html>
289
289
 
290
290
  http_version:
291
- recorded_at: Thu, 12 Apr 2012 15:12:35 GMT
291
+ recorded_at: Thu, 12 Apr 2012 15:59:57 GMT
292
292
  recorded_with: VCR 2.0.1
@@ -18,7 +18,7 @@ http_interactions:
18
18
  Accept-Language:
19
19
  - en-us,en;q=0.5
20
20
  Cookie:
21
- - JSESSIONID=8C3D2F4728B757CCE97F3C32698E9008.test5e
21
+ - JSESSIONID=BBA383BAB63B4A2D7A65D7989DB9AC63.test5e
22
22
  Host:
23
23
  - ca-test.adyen.com
24
24
  Connection:
@@ -31,7 +31,7 @@ http_interactions:
31
31
  message: OK
32
32
  headers:
33
33
  Date:
34
- - Thu, 12 Apr 2012 15:12:35 GMT
34
+ - Thu, 12 Apr 2012 15:59:57 GMT
35
35
  Server:
36
36
  - Apache
37
37
  Cache-Control:
@@ -288,5 +288,5 @@ http_interactions:
288
288
  </html>
289
289
 
290
290
  http_version:
291
- recorded_at: Thu, 12 Apr 2012 15:12:35 GMT
291
+ recorded_at: Thu, 12 Apr 2012 15:59:57 GMT
292
292
  recorded_with: VCR 2.0.1
@@ -18,7 +18,7 @@ http_interactions:
18
18
  Accept-Language:
19
19
  - en-us,en;q=0.5
20
20
  Cookie:
21
- - JSESSIONID=8C3D2F4728B757CCE97F3C32698E9008.test5e
21
+ - JSESSIONID=BBA383BAB63B4A2D7A65D7989DB9AC63.test5e
22
22
  Host:
23
23
  - ca-test.adyen.com
24
24
  Connection:
@@ -31,7 +31,7 @@ http_interactions:
31
31
  message: OK
32
32
  headers:
33
33
  Date:
34
- - Thu, 12 Apr 2012 15:12:34 GMT
34
+ - Thu, 12 Apr 2012 15:59:57 GMT
35
35
  Server:
36
36
  - Apache
37
37
  Cache-Control:
@@ -288,5 +288,5 @@ http_interactions:
288
288
  </html>
289
289
 
290
290
  http_version:
291
- recorded_at: Thu, 12 Apr 2012 15:12:34 GMT
291
+ recorded_at: Thu, 12 Apr 2012 15:59:56 GMT
292
292
  recorded_with: VCR 2.0.1
@@ -18,7 +18,7 @@ http_interactions:
18
18
  Accept-Language:
19
19
  - en-us,en;q=0.5
20
20
  Cookie:
21
- - JSESSIONID=8C3D2F4728B757CCE97F3C32698E9008.test5e
21
+ - JSESSIONID=BBA383BAB63B4A2D7A65D7989DB9AC63.test5e
22
22
  Host:
23
23
  - ca-test.adyen.com
24
24
  Connection:
@@ -31,7 +31,7 @@ http_interactions:
31
31
  message: OK
32
32
  headers:
33
33
  Date:
34
- - Thu, 12 Apr 2012 15:12:35 GMT
34
+ - Thu, 12 Apr 2012 15:59:57 GMT
35
35
  Server:
36
36
  - Apache
37
37
  Cache-Control:
@@ -288,5 +288,5 @@ http_interactions:
288
288
  </html>
289
289
 
290
290
  http_version:
291
- recorded_at: Thu, 12 Apr 2012 15:12:34 GMT
291
+ recorded_at: Thu, 12 Apr 2012 15:59:57 GMT
292
292
  recorded_with: VCR 2.0.1