eveapi 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +8 -8
  2. data/.document +0 -4
  3. data/.gitignore +2 -0
  4. data/.yardopts +1 -0
  5. data/CONTRIBUTING.md +31 -0
  6. data/README.md +90 -56
  7. data/Rakefile +5 -41
  8. data/gemspec.yml +1 -1
  9. data/lib/eveapi.rb +17 -31
  10. data/lib/eveapi/alliance.rb +21 -8
  11. data/lib/eveapi/character.rb +44 -14
  12. data/lib/eveapi/client.rb +141 -15
  13. data/lib/eveapi/crest.rb +24 -10
  14. data/lib/eveapi/request.rb +5 -0
  15. data/lib/eveapi/util.rb +60 -3
  16. data/lib/eveapi/version.rb +1 -1
  17. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_corporations_to_be_an_Array.yml +194 -206
  18. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_find_to_fill_short_name_and_name_values.yml +25 -31
  19. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_info_to_be_a_Hash.yml +195 -207
  20. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_new_with_id_argument_to_create_an_Alliance.yml +18 -18
  21. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_to_h_to_be_a_Hash.yml +192 -204
  22. data/spec/cassettes/EVEApi/EVEApi_Character/expect_Character_new_args_to_create_a_Character.yml +28 -28
  23. data/spec/cassettes/EVEApi/EVEApi_Character/expect_a_Character_account_balance_to_return_a_Hash.yml +32 -32
  24. data/spec/cassettes/EVEApi/{EVEApi_Client/calling_api_method_account_characters.yml → EVEApi_Character/raises_ArgumentError_on_non-existing_instance_variable.yml} +54 -23
  25. data/spec/cassettes/EVEApi/{EVEApi_Client/calling_api_method_char_wallet_journal.yml → EVEApi_Character/sets_Client_instance_variable_if_method_argument_key_matches_name.yml} +85 -23
  26. data/spec/cassettes/EVEApi/EVEApi_Client/{calling_api_method_account_account_status.yml → calling_api_method_account_status.yml} +22 -22
  27. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_api_methods.yml +288 -0
  28. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_call_list.yml +288 -0
  29. data/spec/cassettes/EVEApi/EVEApi_Client/{calling_api_method_char_notifications.yml → calling_api_method_characters.yml} +58 -24
  30. data/spec/cassettes/EVEApi/EVEApi_Client/{calling_api_method_account_api_key_info.yml → calling_api_method_key_info.yml} +23 -23
  31. data/spec/cassettes/EVEApi/EVEApi_Client/{calling_api_method_server_server_status.yml → calling_api_method_server_status.yml} +23 -23
  32. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_characters_to_handle_mutiple_characters_differently.yml +18 -18
  33. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_charcaters_to_succeed.yml +18 -18
  34. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_connection_to_be_an_Excon_Connection.yml +18 -18
  35. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_new_to_succeed.yml +18 -18
  36. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_params_to_return_an_empty_hash_when_on_no_param.yml +18 -18
  37. data/spec/cassettes/EVEApi/EVEApi_Client/{expect_check_path_to_return_a_non-empty_String_for_a_muti-part_name.yml → expect_Symbol_to_path_to_return_a_String_for_a_muti-part_name.yml} +18 -18
  38. data/spec/cassettes/EVEApi/EVEApi_Client/{expect_check_path_to_return_an_empty_String_for_a_one_part_name.yml → expect_Symbol_to_path_to_return_an_empty_String_for_a_one_part_name.yml} +18 -18
  39. data/spec/cassettes/EVEApi/EVEApi_Client/expect_api_methods_to_return_an_Array_of_method_symobls.yml +23 -23
  40. data/spec/cassettes/EVEApi/EVEApi_Client/expect_calling_a_non-existing_API_method_to_fail.yml +21 -21
  41. data/spec/cassettes/EVEApi/EVEApi_Client/expect_calling_an_existing_API_method_to_succeed.yml +23 -23
  42. data/spec/cassettes/EVEApi/EVEApi_Crest/expect_Crest_alliances_to_be_an_Array.yml +192 -204
  43. data/spec/cassettes/EVEApi/EVEApi_Crest/expect_Crest_new_to_succeed.yml +18 -18
  44. data/spec/cassettes/EVEApi/EVEApi_Crest/expect_Crest_types_to_be_an_Array.yml +25972 -0
  45. data/spec/cassettes/EVEApi/EVEApi_Crest/expect_details_to_return_Hash_when_called_on_Hash_with_href_key.yml +26023 -0
  46. data/spec/cassettes/EVEApi/EVEApi_Request/expect_there_to_be_a_EVEApi_Request_class.yml +18 -18
  47. data/spec/eve_api_spec.rb +19 -5
  48. metadata +31 -41
  49. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_account_balance.yml +0 -160
  50. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_asset_list.yml +0 -207
  51. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_character_sheet.yml +0 -207
  52. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contact_list.yml +0 -175
  53. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contact_notifications.yml +0 -159
  54. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contracts.yml +0 -159
  55. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_industry_jobs.yml +0 -159
  56. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_mail_messages.yml +0 -159
  57. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_mailing_lists.yml +0 -159
  58. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_market_orders.yml +0 -159
  59. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_medals.yml +0 -160
  60. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_research.yml +0 -159
  61. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_skill_in_training.yml +0 -159
  62. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_skill_queue.yml +0 -159
  63. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_standings.yml +0 -173
  64. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_upcoming_calendar_events.yml +0 -169
  65. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_wallet_transactions.yml +0 -159
@@ -19,20 +19,20 @@ http_interactions:
19
19
  Access-Control-Allow-Origin:
20
20
  - "*"
21
21
  Date:
22
- - Sat, 12 Sep 2015 08:52:52 GMT
22
+ - Sun, 13 Sep 2015 20:36:11 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
25
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
26
- \ <currentTime>2015-09-12 08:52:53</currentTime>\r\n <result>\r\n <rowset
26
+ \ <currentTime>2015-09-13 20:36:11</currentTime>\r\n <result>\r\n <rowset
27
27
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
28
28
  \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
29
29
  Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
30
30
  factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
31
31
  corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
32
32
  allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
33
- \ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
33
+ \ </result>\r\n <cachedUntil>2015-09-13 21:19:27</cachedUntil>\r\n</eveapi>"
34
34
  http_version:
35
- recorded_at: Sat, 12 Sep 2015 08:52:53 GMT
35
+ recorded_at: Sun, 13 Sep 2015 20:36:06 GMT
36
36
  - request:
37
37
  method: get
38
38
  uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
@@ -52,20 +52,20 @@ http_interactions:
52
52
  Access-Control-Allow-Origin:
53
53
  - "*"
54
54
  Date:
55
- - Sat, 12 Sep 2015 08:52:52 GMT
55
+ - Sun, 13 Sep 2015 20:36:11 GMT
56
56
  body:
57
57
  encoding: UTF-8
58
58
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
59
- \ <currentTime>2015-09-12 08:52:53</currentTime>\r\n <result>\r\n <rowset
59
+ \ <currentTime>2015-09-13 20:36:12</currentTime>\r\n <result>\r\n <rowset
60
60
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
61
61
  \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
62
62
  Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
63
63
  factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
64
64
  corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
65
65
  allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
66
- \ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
66
+ \ </result>\r\n <cachedUntil>2015-09-13 21:19:27</cachedUntil>\r\n</eveapi>"
67
67
  http_version:
68
- recorded_at: Sat, 12 Sep 2015 08:52:53 GMT
68
+ recorded_at: Sun, 13 Sep 2015 20:36:07 GMT
69
69
  - request:
70
70
  method: get
71
71
  uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
@@ -85,18 +85,18 @@ http_interactions:
85
85
  Access-Control-Allow-Origin:
86
86
  - "*"
87
87
  Date:
88
- - Sat, 12 Sep 2015 08:52:53 GMT
88
+ - Sun, 13 Sep 2015 20:36:11 GMT
89
89
  body:
90
90
  encoding: UTF-8
91
91
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
92
- \ <currentTime>2015-09-12 08:52:53</currentTime>\r\n <result>\r\n <rowset
92
+ \ <currentTime>2015-09-13 20:36:12</currentTime>\r\n <result>\r\n <rowset
93
93
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
94
94
  \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
95
95
  Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
96
- factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
97
- 09:48:16</cachedUntil>\r\n</eveapi>"
96
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
97
+ 21:23:58</cachedUntil>\r\n</eveapi>"
98
98
  http_version:
99
- recorded_at: Sat, 12 Sep 2015 08:52:53 GMT
99
+ recorded_at: Sun, 13 Sep 2015 20:36:07 GMT
100
100
  - request:
101
101
  method: get
102
102
  uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
@@ -116,18 +116,18 @@ http_interactions:
116
116
  Access-Control-Allow-Origin:
117
117
  - "*"
118
118
  Date:
119
- - Sat, 12 Sep 2015 08:52:53 GMT
119
+ - Sun, 13 Sep 2015 20:36:12 GMT
120
120
  body:
121
121
  encoding: UTF-8
122
122
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
123
- \ <currentTime>2015-09-12 08:52:54</currentTime>\r\n <result>\r\n <rowset
123
+ \ <currentTime>2015-09-13 20:36:12</currentTime>\r\n <result>\r\n <rowset
124
124
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
125
125
  \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
126
126
  Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
127
- factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
128
- 09:48:16</cachedUntil>\r\n</eveapi>"
127
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
128
+ 21:23:58</cachedUntil>\r\n</eveapi>"
129
129
  http_version:
130
- recorded_at: Sat, 12 Sep 2015 08:52:54 GMT
130
+ recorded_at: Sun, 13 Sep 2015 20:36:07 GMT
131
131
  - request:
132
132
  method: get
133
133
  uri: https://public-crest.eveonline.com/alliances/1354830081/
@@ -145,13 +145,13 @@ http_interactions:
145
145
  Server:
146
146
  - nginx
147
147
  Date:
148
- - Sat, 12 Sep 2015 08:55:41 GMT
148
+ - Sun, 13 Sep 2015 20:39:00 GMT
149
149
  Content-Type:
150
150
  - application/vnd.ccp.eve.Alliance-v1+json; charset=utf-8
151
151
  Connection:
152
152
  - keep-alive
153
153
  X-Cache-Status:
154
- - EXPIRED
154
+ - HIT
155
155
  Access-Control-Max-Age:
156
156
  - '1728000'
157
157
  Access-Control-Expose-Header:
@@ -161,7 +161,7 @@ http_interactions:
161
161
  Access-Control-Allow-Origin:
162
162
  - "*"
163
163
  Content-Length:
164
- - '193684'
164
+ - '193171'
165
165
  Content-Language:
166
166
  - en-US
167
167
  Vary:
@@ -174,7 +174,7 @@ http_interactions:
174
174
  - AUTHORIZATION, X-REQUESTED-WITH, CONTENT-TYPE, ACCEPT
175
175
  body:
176
176
  encoding: UTF-8
177
- string: '{"startDate": "2010-06-01T05:36:00", "corporationsCount": 373, "description":
177
+ string: '{"startDate": "2010-06-01T05:36:00", "corporationsCount": 372, "description":
178
178
  "<font size=\"12\" color=\"#bfffffff\">NULLSEC SPACE FOR RENT: <br><br>https://forums.eveonline.com/default.aspx?g=posts&amp;t=435240<br><br>Mandatory
179
179
  Zizek:<br><br>At the same time, there is the much more unsettling opposite
180
180
  idea of the domination of my screen persona over my \"real\" self. Our social
@@ -211,7 +211,7 @@ http_interactions:
211
211
  "128x128": {"href": "http://imageserver.eveonline.com/Corporation/1344654522_128.png"},
212
212
  "256x256": {"href": "http://imageserver.eveonline.com/Corporation/1344654522_256.png"}},
213
213
  "id": 1344654522}, "primeHour_str": "2", "primeHour": 2, "deleted": false,
214
- "corporationsCount_str": "373", "creatorCorporation": {"name": "Effervescent
214
+ "corporationsCount_str": "372", "creatorCorporation": {"name": "Effervescent
215
215
  Blue", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/459299583/",
216
216
  "id_str": "459299583", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/459299583_32.png"},
217
217
  "64x64": {"href": "http://imageserver.eveonline.com/Corporation/459299583_64.png"},
@@ -1150,13 +1150,7 @@ http_interactions:
1150
1150
  "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98320135_64.png"},
1151
1151
  "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98320135_128.png"},
1152
1152
  "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98320135_256.png"}},
1153
- "id": 98320135}, {"name": "Nixon Memorial Trust Factory", "isNPC": false,
1154
- "href": "https://public-crest.eveonline.com/corporations/98320426/", "id_str":
1155
- "98320426", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98320426_32.png"},
1156
- "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98320426_64.png"},
1157
- "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98320426_128.png"},
1158
- "256x256": {"href": "http://imageserver.eveonline.com/Corporation/98320426_256.png"}},
1159
- "id": 98320426}, {"name": "The Black Dynasty", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98322089/",
1153
+ "id": 98320135}, {"name": "The Black Dynasty", "isNPC": false, "href": "https://public-crest.eveonline.com/corporations/98322089/",
1160
1154
  "id_str": "98322089", "logo": {"32x32": {"href": "http://imageserver.eveonline.com/Corporation/98322089_32.png"},
1161
1155
  "64x64": {"href": "http://imageserver.eveonline.com/Corporation/98322089_64.png"},
1162
1156
  "128x128": {"href": "http://imageserver.eveonline.com/Corporation/98322089_128.png"},
@@ -2259,5 +2253,5 @@ http_interactions:
2259
2253
  "id": 2052404106}], "shortName": "CONDI", "id": 1354830081, "name": "Goonswarm
2260
2254
  Federation"}'
2261
2255
  http_version:
2262
- recorded_at: Sat, 12 Sep 2015 08:52:54 GMT
2256
+ recorded_at: Sun, 13 Sep 2015 20:36:08 GMT
2263
2257
  recorded_with: VCR 2.9.3
@@ -19,20 +19,20 @@ http_interactions:
19
19
  Access-Control-Allow-Origin:
20
20
  - "*"
21
21
  Date:
22
- - Sat, 12 Sep 2015 08:52:33 GMT
22
+ - Sun, 13 Sep 2015 20:35:38 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
25
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
26
- \ <currentTime>2015-09-12 08:52:34</currentTime>\r\n <result>\r\n <rowset
26
+ \ <currentTime>2015-09-13 20:35:39</currentTime>\r\n <result>\r\n <rowset
27
27
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
28
28
  \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
29
29
  Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
30
30
  factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
31
31
  corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
32
32
  allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
33
- \ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
33
+ \ </result>\r\n <cachedUntil>2015-09-13 21:19:27</cachedUntil>\r\n</eveapi>"
34
34
  http_version:
35
- recorded_at: Sat, 12 Sep 2015 08:52:34 GMT
35
+ recorded_at: Sun, 13 Sep 2015 20:35:34 GMT
36
36
  - request:
37
37
  method: get
38
38
  uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
@@ -52,20 +52,20 @@ http_interactions:
52
52
  Access-Control-Allow-Origin:
53
53
  - "*"
54
54
  Date:
55
- - Sat, 12 Sep 2015 08:52:34 GMT
55
+ - Sun, 13 Sep 2015 20:35:38 GMT
56
56
  body:
57
57
  encoding: UTF-8
58
58
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
59
- \ <currentTime>2015-09-12 08:52:35</currentTime>\r\n <result>\r\n <rowset
59
+ \ <currentTime>2015-09-13 20:35:39</currentTime>\r\n <result>\r\n <rowset
60
60
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
61
61
  \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
62
62
  Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
63
63
  factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
64
64
  corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
65
65
  allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
66
- \ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
66
+ \ </result>\r\n <cachedUntil>2015-09-13 21:19:27</cachedUntil>\r\n</eveapi>"
67
67
  http_version:
68
- recorded_at: Sat, 12 Sep 2015 08:52:35 GMT
68
+ recorded_at: Sun, 13 Sep 2015 20:35:34 GMT
69
69
  - request:
70
70
  method: get
71
71
  uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
@@ -85,18 +85,18 @@ http_interactions:
85
85
  Access-Control-Allow-Origin:
86
86
  - "*"
87
87
  Date:
88
- - Sat, 12 Sep 2015 08:52:34 GMT
88
+ - Sun, 13 Sep 2015 20:35:42 GMT
89
89
  body:
90
90
  encoding: UTF-8
91
91
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
92
- \ <currentTime>2015-09-12 08:52:35</currentTime>\r\n <result>\r\n <rowset
92
+ \ <currentTime>2015-09-13 20:35:42</currentTime>\r\n <result>\r\n <rowset
93
93
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
94
94
  \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
95
95
  Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
96
- factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
97
- 09:48:16</cachedUntil>\r\n</eveapi>"
96
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
97
+ 21:23:58</cachedUntil>\r\n</eveapi>"
98
98
  http_version:
99
- recorded_at: Sat, 12 Sep 2015 08:52:35 GMT
99
+ recorded_at: Sun, 13 Sep 2015 20:35:38 GMT
100
100
  - request:
101
101
  method: get
102
102
  uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
@@ -116,18 +116,18 @@ http_interactions:
116
116
  Access-Control-Allow-Origin:
117
117
  - "*"
118
118
  Date:
119
- - Sat, 12 Sep 2015 08:52:34 GMT
119
+ - Sun, 13 Sep 2015 20:35:43 GMT
120
120
  body:
121
121
  encoding: UTF-8
122
122
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
123
- \ <currentTime>2015-09-12 08:52:35</currentTime>\r\n <result>\r\n <rowset
123
+ \ <currentTime>2015-09-13 20:35:43</currentTime>\r\n <result>\r\n <rowset
124
124
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
125
125
  \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
126
126
  Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
127
- factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
128
- 09:48:16</cachedUntil>\r\n</eveapi>"
127
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
128
+ 21:23:58</cachedUntil>\r\n</eveapi>"
129
129
  http_version:
130
- recorded_at: Sat, 12 Sep 2015 08:52:35 GMT
130
+ recorded_at: Sun, 13 Sep 2015 20:35:38 GMT
131
131
  - request:
132
132
  method: get
133
133
  uri: https://public-crest.eveonline.com/alliances/
@@ -145,7 +145,7 @@ http_interactions:
145
145
  Server:
146
146
  - nginx
147
147
  Date:
148
- - Sat, 12 Sep 2015 08:55:22 GMT
148
+ - Sun, 13 Sep 2015 20:38:30 GMT
149
149
  Content-Type:
150
150
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
151
151
  Connection:
@@ -172,7 +172,7 @@ http_interactions:
172
172
  - Accept, Accept-Encoding, Accept-Language, User-Agent
173
173
  body:
174
174
  encoding: UTF-8
175
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
175
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
176
176
  "99000006", "shortName": "666", "href": "https://public-crest.eveonline.com/alliances/99000006/",
177
177
  "id": 99000006, "name": "Everto Rex Regis"}}, {"href": {"id_str": "99000008",
178
178
  "shortName": "PILS.", "href": "https://public-crest.eveonline.com/alliances/99000008/",
@@ -673,9 +673,9 @@ http_interactions:
673
673
  "id": 99000868, "name": "Crazy by Nature"}}, {"href": {"id_str": "99000871",
674
674
  "shortName": "HAHA", "href": "https://public-crest.eveonline.com/alliances/99000871/",
675
675
  "id": 99000871, "name": "Surely You''re Joking"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=2"},
676
- "totalCount": 3084, "pageCount_str": "13"}'
676
+ "totalCount": 3078, "pageCount_str": "13"}'
677
677
  http_version:
678
- recorded_at: Sat, 12 Sep 2015 08:52:35 GMT
678
+ recorded_at: Sun, 13 Sep 2015 20:35:38 GMT
679
679
  - request:
680
680
  method: get
681
681
  uri: https://public-crest.eveonline.com/alliances/?page=2
@@ -693,7 +693,7 @@ http_interactions:
693
693
  Server:
694
694
  - nginx
695
695
  Date:
696
- - Sat, 12 Sep 2015 08:55:23 GMT
696
+ - Sun, 13 Sep 2015 20:38:31 GMT
697
697
  Content-Type:
698
698
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
699
699
  Connection:
@@ -720,7 +720,7 @@ http_interactions:
720
720
  - Accept, Accept-Encoding, Accept-Language, User-Agent
721
721
  body:
722
722
  encoding: UTF-8
723
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
723
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
724
724
  "99000872", "shortName": "DINC", "href": "https://public-crest.eveonline.com/alliances/99000872/",
725
725
  "id": 99000872, "name": "Absolute Damage Inc."}}, {"href": {"id_str": "99000873",
726
726
  "shortName": "CNU", "href": "https://public-crest.eveonline.com/alliances/99000873/",
@@ -1221,9 +1221,9 @@ http_interactions:
1221
1221
  "id": 99001648, "name": "P-A-T-R-I-O-T-S"}}, {"href": {"id_str": "99001649",
1222
1222
  "shortName": "4NEXS", "href": "https://public-crest.eveonline.com/alliances/99001649/",
1223
1223
  "id": 99001649, "name": "Tesseract Nexus"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=3"},
1224
- "totalCount": 3084, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/"}}'
1224
+ "totalCount": 3078, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/"}}'
1225
1225
  http_version:
1226
- recorded_at: Sat, 12 Sep 2015 08:52:36 GMT
1226
+ recorded_at: Sun, 13 Sep 2015 20:35:38 GMT
1227
1227
  - request:
1228
1228
  method: get
1229
1229
  uri: https://public-crest.eveonline.com/alliances/?page=3
@@ -1241,7 +1241,7 @@ http_interactions:
1241
1241
  Server:
1242
1242
  - nginx
1243
1243
  Date:
1244
- - Sat, 12 Sep 2015 08:55:23 GMT
1244
+ - Sun, 13 Sep 2015 20:38:31 GMT
1245
1245
  Content-Type:
1246
1246
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
1247
1247
  Connection:
@@ -1268,7 +1268,7 @@ http_interactions:
1268
1268
  - Accept, Accept-Encoding, Accept-Language, User-Agent
1269
1269
  body:
1270
1270
  encoding: UTF-8
1271
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
1271
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
1272
1272
  "99001650", "shortName": "BADF1", "href": "https://public-crest.eveonline.com/alliances/99001650/",
1273
1273
  "id": 99001650, "name": "BadFellas."}}, {"href": {"id_str": "99001651", "shortName":
1274
1274
  "TUS.", "href": "https://public-crest.eveonline.com/alliances/99001651/",
@@ -1769,9 +1769,9 @@ http_interactions:
1769
1769
  "id": 99002385, "name": "Sphere Alliance"}}, {"href": {"id_str": "99002388",
1770
1770
  "shortName": "FERNO", "href": "https://public-crest.eveonline.com/alliances/99002388/",
1771
1771
  "id": 99002388, "name": "INFERNO ALLIANCE"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=4"},
1772
- "totalCount": 3084, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=2"}}'
1772
+ "totalCount": 3078, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=2"}}'
1773
1773
  http_version:
1774
- recorded_at: Sat, 12 Sep 2015 08:52:36 GMT
1774
+ recorded_at: Sun, 13 Sep 2015 20:35:39 GMT
1775
1775
  - request:
1776
1776
  method: get
1777
1777
  uri: https://public-crest.eveonline.com/alliances/?page=4
@@ -1789,7 +1789,7 @@ http_interactions:
1789
1789
  Server:
1790
1790
  - nginx
1791
1791
  Date:
1792
- - Sat, 12 Sep 2015 08:55:23 GMT
1792
+ - Sun, 13 Sep 2015 20:38:31 GMT
1793
1793
  Content-Type:
1794
1794
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
1795
1795
  Connection:
@@ -1805,7 +1805,7 @@ http_interactions:
1805
1805
  Access-Control-Allow-Origin:
1806
1806
  - "*"
1807
1807
  Content-Length:
1808
- - '41755'
1808
+ - '41737'
1809
1809
  Access-Control-Allow-Methods:
1810
1810
  - GET, PUT, POST, DELETE, HEAD, OPTIONS
1811
1811
  Access-Control:
@@ -1816,7 +1816,7 @@ http_interactions:
1816
1816
  - Accept, Accept-Encoding, Accept-Language, User-Agent
1817
1817
  body:
1818
1818
  encoding: UTF-8
1819
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
1819
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
1820
1820
  "99002390", "shortName": "-O-", "href": "https://public-crest.eveonline.com/alliances/99002390/",
1821
1821
  "id": 99002390, "name": "Out of Order."}}, {"href": {"id_str": "99002392",
1822
1822
  "shortName": "NFA", "href": "https://public-crest.eveonline.com/alliances/99002392/",
@@ -2270,16 +2270,12 @@ http_interactions:
2270
2270
  "CRBNG", "href": "https://public-crest.eveonline.com/alliances/99003119/",
2271
2271
  "id": 99003119, "name": "Cave of Caerbannog"}}, {"href": {"id_str": "99003127",
2272
2272
  "shortName": "OHBBY", "href": "https://public-crest.eveonline.com/alliances/99003127/",
2273
- "id": 99003127, "name": "Outlaw Horizon."}}, {"href": {"id_str": "99003128",
2274
- "shortName": "TVM", "href": "https://public-crest.eveonline.com/alliances/99003128/",
2275
- "id": 99003128, "name": "The Void Mandate"}}, {"href": {"id_str": "99003130",
2273
+ "id": 99003127, "name": "Outlaw Horizon."}}, {"href": {"id_str": "99003130",
2276
2274
  "shortName": "DARK", "href": "https://public-crest.eveonline.com/alliances/99003130/",
2277
2275
  "id": 99003130, "name": "Dark Aether"}}, {"href": {"id_str": "99003134", "shortName":
2278
2276
  "-CFD-", "href": "https://public-crest.eveonline.com/alliances/99003134/",
2279
- "id": 99003134, "name": "The Confederation."}}, {"href": {"id_str": "99003140",
2280
- "shortName": "CSI", "href": "https://public-crest.eveonline.com/alliances/99003140/",
2281
- "id": 99003140, "name": "Cerberus Security Incorporated"}}, {"href": {"id_str":
2282
- "99003141", "shortName": "DEFY", "href": "https://public-crest.eveonline.com/alliances/99003141/",
2277
+ "id": 99003134, "name": "The Confederation."}}, {"href": {"id_str": "99003141",
2278
+ "shortName": "DEFY", "href": "https://public-crest.eveonline.com/alliances/99003141/",
2283
2279
  "id": 99003141, "name": "D.E.F.I.A.N.C.E"}}, {"href": {"id_str": "99003144",
2284
2280
  "shortName": "WHBOO", "href": "https://public-crest.eveonline.com/alliances/99003144/",
2285
2281
  "id": 99003144, "name": "Scary Wormhole People"}}, {"href": {"id_str": "99003145",
@@ -2316,10 +2312,14 @@ http_interactions:
2316
2312
  "shortName": "SHIN", "href": "https://public-crest.eveonline.com/alliances/99003178/",
2317
2313
  "id": 99003178, "name": "Shinjiketo"}}, {"href": {"id_str": "99003179", "shortName":
2318
2314
  "LR", "href": "https://public-crest.eveonline.com/alliances/99003179/", "id":
2319
- 99003179, "name": "Last Resort."}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=5"},
2320
- "totalCount": 3084, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=3"}}'
2315
+ 99003179, "name": "Last Resort."}}, {"href": {"id_str": "99003180", "shortName":
2316
+ "SETH", "href": "https://public-crest.eveonline.com/alliances/99003180/",
2317
+ "id": 99003180, "name": "Silent Forge"}}, {"href": {"id_str": "99003182",
2318
+ "shortName": "M1C0", "href": "https://public-crest.eveonline.com/alliances/99003182/",
2319
+ "id": 99003182, "name": "M1NER CONFL1CT"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=5"},
2320
+ "totalCount": 3078, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=3"}}'
2321
2321
  http_version:
2322
- recorded_at: Sat, 12 Sep 2015 08:52:36 GMT
2322
+ recorded_at: Sun, 13 Sep 2015 20:35:39 GMT
2323
2323
  - request:
2324
2324
  method: get
2325
2325
  uri: https://public-crest.eveonline.com/alliances/?page=5
@@ -2337,7 +2337,7 @@ http_interactions:
2337
2337
  Server:
2338
2338
  - nginx
2339
2339
  Date:
2340
- - Sat, 12 Sep 2015 08:55:24 GMT
2340
+ - Sun, 13 Sep 2015 20:38:35 GMT
2341
2341
  Content-Type:
2342
2342
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
2343
2343
  Connection:
@@ -2353,7 +2353,7 @@ http_interactions:
2353
2353
  Access-Control-Allow-Origin:
2354
2354
  - "*"
2355
2355
  Content-Length:
2356
- - '42069'
2356
+ - '42089'
2357
2357
  Access-Control-Allow-Methods:
2358
2358
  - GET, PUT, POST, DELETE, HEAD, OPTIONS
2359
2359
  Access-Control:
@@ -2364,12 +2364,8 @@ http_interactions:
2364
2364
  - Accept, Accept-Encoding, Accept-Language, User-Agent
2365
2365
  body:
2366
2366
  encoding: UTF-8
2367
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
2368
- "99003180", "shortName": "SETH", "href": "https://public-crest.eveonline.com/alliances/99003180/",
2369
- "id": 99003180, "name": "Silent Forge"}}, {"href": {"id_str": "99003182",
2370
- "shortName": "M1C0", "href": "https://public-crest.eveonline.com/alliances/99003182/",
2371
- "id": 99003182, "name": "M1NER CONFL1CT"}}, {"href": {"id_str": "99003184",
2372
- "shortName": "NIALA", "href": "https://public-crest.eveonline.com/alliances/99003184/",
2367
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
2368
+ "99003184", "shortName": "NIALA", "href": "https://public-crest.eveonline.com/alliances/99003184/",
2373
2369
  "id": 99003184, "name": "Nia Lando"}}, {"href": {"id_str": "99003187", "shortName":
2374
2370
  "DE-NY", "href": "https://public-crest.eveonline.com/alliances/99003187/",
2375
2371
  "id": 99003187, "name": "Disavowed."}}, {"href": {"id_str": "99003189", "shortName":
@@ -2864,10 +2860,14 @@ http_interactions:
2864
2860
  "NEIC", "href": "https://public-crest.eveonline.com/alliances/99003821/",
2865
2861
  "id": 99003821, "name": "New Eden Industrialists Conglomerate"}}, {"href":
2866
2862
  {"id_str": "99003822", "shortName": "PIG", "href": "https://public-crest.eveonline.com/alliances/99003822/",
2867
- "id": 99003822, "name": "Pigships"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=6"},
2868
- "totalCount": 3084, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=4"}}'
2863
+ "id": 99003822, "name": "Pigships"}}, {"href": {"id_str": "99003824", "shortName":
2864
+ "QCA", "href": "https://public-crest.eveonline.com/alliances/99003824/", "id":
2865
+ 99003824, "name": "Quantum Corp Alliance"}}, {"href": {"id_str": "99003827",
2866
+ "shortName": "TOBED", "href": "https://public-crest.eveonline.com/alliances/99003827/",
2867
+ "id": 99003827, "name": "To Be Determined Alliance"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=6"},
2868
+ "totalCount": 3078, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=4"}}'
2869
2869
  http_version:
2870
- recorded_at: Sat, 12 Sep 2015 08:52:37 GMT
2870
+ recorded_at: Sun, 13 Sep 2015 20:35:42 GMT
2871
2871
  - request:
2872
2872
  method: get
2873
2873
  uri: https://public-crest.eveonline.com/alliances/?page=6
@@ -2885,7 +2885,7 @@ http_interactions:
2885
2885
  Server:
2886
2886
  - nginx
2887
2887
  Date:
2888
- - Sat, 12 Sep 2015 08:55:24 GMT
2888
+ - Sun, 13 Sep 2015 20:38:35 GMT
2889
2889
  Content-Type:
2890
2890
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
2891
2891
  Connection:
@@ -2901,7 +2901,7 @@ http_interactions:
2901
2901
  Access-Control-Allow-Origin:
2902
2902
  - "*"
2903
2903
  Content-Length:
2904
- - '41845'
2904
+ - '41829'
2905
2905
  Access-Control-Allow-Methods:
2906
2906
  - GET, PUT, POST, DELETE, HEAD, OPTIONS
2907
2907
  Access-Control:
@@ -2912,11 +2912,7 @@ http_interactions:
2912
2912
  - Accept, Accept-Encoding, Accept-Language, User-Agent
2913
2913
  body:
2914
2914
  encoding: UTF-8
2915
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
2916
- "99003824", "shortName": "QCA", "href": "https://public-crest.eveonline.com/alliances/99003824/",
2917
- "id": 99003824, "name": "Quantum Corp Alliance"}}, {"href": {"id_str": "99003827",
2918
- "shortName": "TOBED", "href": "https://public-crest.eveonline.com/alliances/99003827/",
2919
- "id": 99003827, "name": "To Be Determined Alliance"}}, {"href": {"id_str":
2915
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
2920
2916
  "99003834", "shortName": "BEARS", "href": "https://public-crest.eveonline.com/alliances/99003834/",
2921
2917
  "id": 99003834, "name": "Chaotic Carebears"}}, {"href": {"id_str": "99003838",
2922
2918
  "shortName": "REQ", "href": "https://public-crest.eveonline.com/alliances/99003838/",
@@ -3412,11 +3408,14 @@ http_interactions:
3412
3408
  "SHHH.", "href": "https://public-crest.eveonline.com/alliances/99004428/",
3413
3409
  "id": 99004428, "name": "Snuggle Struggle."}}, {"href": {"id_str": "99004430",
3414
3410
  "shortName": "DBOM", "href": "https://public-crest.eveonline.com/alliances/99004430/",
3415
- "id": 99004430, "name": "Disorganized Band of Misfits"}}], "next": {"href":
3416
- "https://public-crest.eveonline.com/alliances/?page=7"}, "totalCount": 3084,
3417
- "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=5"}}'
3411
+ "id": 99004430, "name": "Disorganized Band of Misfits"}}, {"href": {"id_str":
3412
+ "99004431", "shortName": "YGS", "href": "https://public-crest.eveonline.com/alliances/99004431/",
3413
+ "id": 99004431, "name": "You Got Served."}}, {"href": {"id_str": "99004432",
3414
+ "shortName": "A-FED", "href": "https://public-crest.eveonline.com/alliances/99004432/",
3415
+ "id": 99004432, "name": "Aura Federation"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=7"},
3416
+ "totalCount": 3078, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=5"}}'
3418
3417
  http_version:
3419
- recorded_at: Sat, 12 Sep 2015 08:52:37 GMT
3418
+ recorded_at: Sun, 13 Sep 2015 20:35:43 GMT
3420
3419
  - request:
3421
3420
  method: get
3422
3421
  uri: https://public-crest.eveonline.com/alliances/?page=7
@@ -3434,7 +3433,7 @@ http_interactions:
3434
3433
  Server:
3435
3434
  - nginx
3436
3435
  Date:
3437
- - Sat, 12 Sep 2015 08:55:24 GMT
3436
+ - Sun, 13 Sep 2015 20:38:35 GMT
3438
3437
  Content-Type:
3439
3438
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
3440
3439
  Connection:
@@ -3450,7 +3449,7 @@ http_interactions:
3450
3449
  Access-Control-Allow-Origin:
3451
3450
  - "*"
3452
3451
  Content-Length:
3453
- - '42140'
3452
+ - '42152'
3454
3453
  Access-Control-Allow-Methods:
3455
3454
  - GET, PUT, POST, DELETE, HEAD, OPTIONS
3456
3455
  Access-Control:
@@ -3461,12 +3460,8 @@ http_interactions:
3461
3460
  - Accept, Accept-Encoding, Accept-Language, User-Agent
3462
3461
  body:
3463
3462
  encoding: UTF-8
3464
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
3465
- "99004431", "shortName": "YGS", "href": "https://public-crest.eveonline.com/alliances/99004431/",
3466
- "id": 99004431, "name": "You Got Served."}}, {"href": {"id_str": "99004432",
3467
- "shortName": "A-FED", "href": "https://public-crest.eveonline.com/alliances/99004432/",
3468
- "id": 99004432, "name": "Aura Federation"}}, {"href": {"id_str": "99004436",
3469
- "shortName": "XIDKX", "href": "https://public-crest.eveonline.com/alliances/99004436/",
3463
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
3464
+ "99004436", "shortName": "XIDKX", "href": "https://public-crest.eveonline.com/alliances/99004436/",
3470
3465
  "id": 99004436, "name": "Lost Cause Syndicate"}}, {"href": {"id_str": "99004437",
3471
3466
  "shortName": "DAMND", "href": "https://public-crest.eveonline.com/alliances/99004437/",
3472
3467
  "id": 99004437, "name": "Militia of the Damned Alliance"}}, {"href": {"id_str":
@@ -3795,9 +3790,7 @@ http_interactions:
3795
3790
  "shortName": ".ASP.", "href": "https://public-crest.eveonline.com/alliances/99004778/",
3796
3791
  "id": 99004778, "name": "AII ShaII Perish"}}, {"href": {"id_str": "99004779",
3797
3792
  "shortName": "CY-27", "href": "https://public-crest.eveonline.com/alliances/99004779/",
3798
- "id": 99004779, "name": "Soviet-Union"}}, {"href": {"id_str": "99004781",
3799
- "shortName": "FLUSH", "href": "https://public-crest.eveonline.com/alliances/99004781/",
3800
- "id": 99004781, "name": "Poopstain Removal Team"}}, {"href": {"id_str": "99004782",
3793
+ "id": 99004779, "name": "Soviet-Union"}}, {"href": {"id_str": "99004782",
3801
3794
  "shortName": ". SS", "href": "https://public-crest.eveonline.com/alliances/99004782/",
3802
3795
  "id": 99004782, "name": "Schwarze Schar"}}, {"href": {"id_str": "99004783",
3803
3796
  "shortName": "-SMP-", "href": "https://public-crest.eveonline.com/alliances/99004783/",
@@ -3855,9 +3848,7 @@ http_interactions:
3855
3848
  "shortName": "GREEN", "href": "https://public-crest.eveonline.com/alliances/99004843/",
3856
3849
  "id": 99004843, "name": "Green Tea Alliance"}}, {"href": {"id_str": "99004844",
3857
3850
  "shortName": ".RUS.", "href": "https://public-crest.eveonline.com/alliances/99004844/",
3858
- "id": 99004844, "name": "R-U-S-S-I-A"}}, {"href": {"id_str": "99004847", "shortName":
3859
- "TBGRL", "href": "https://public-crest.eveonline.com/alliances/99004847/",
3860
- "id": 99004847, "name": "Prolapse."}}, {"href": {"id_str": "99004849", "shortName":
3851
+ "id": 99004844, "name": "R-U-S-S-I-A"}}, {"href": {"id_str": "99004849", "shortName":
3861
3852
  "FURR", "href": "https://public-crest.eveonline.com/alliances/99004849/",
3862
3853
  "id": 99004849, "name": "Dead Cats Don''t Meow"}}, {"href": {"id_str": "99004852",
3863
3854
  "shortName": "-XVX-", "href": "https://public-crest.eveonline.com/alliances/99004852/",
@@ -3961,10 +3952,18 @@ http_interactions:
3961
3952
  "shortName": "BLAZD", "href": "https://public-crest.eveonline.com/alliances/99004940/",
3962
3953
  "id": 99004940, "name": "Sons of Seraphinus"}}, {"href": {"id_str": "99004942",
3963
3954
  "shortName": "CNFLG", "href": "https://public-crest.eveonline.com/alliances/99004942/",
3964
- "id": 99004942, "name": "CONFLAGBUSINESSMAN"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=8"},
3965
- "totalCount": 3084, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=6"}}'
3955
+ "id": 99004942, "name": "CONFLAGBUSINESSMAN"}}, {"href": {"id_str": "99004943",
3956
+ "shortName": "TACIT", "href": "https://public-crest.eveonline.com/alliances/99004943/",
3957
+ "id": 99004943, "name": "Favente Deo Supero"}}, {"href": {"id_str": "99004944",
3958
+ "shortName": "IS-S", "href": "https://public-crest.eveonline.com/alliances/99004944/",
3959
+ "id": 99004944, "name": "Ishukone Syndicate"}}, {"href": {"id_str": "99004945",
3960
+ "shortName": ".IED", "href": "https://public-crest.eveonline.com/alliances/99004945/",
3961
+ "id": 99004945, "name": "Immediate Destruction"}}, {"href": {"id_str": "99004952",
3962
+ "shortName": "SINS", "href": "https://public-crest.eveonline.com/alliances/99004952/",
3963
+ "id": 99004952, "name": "The Sinful Legion"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=8"},
3964
+ "totalCount": 3078, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=6"}}'
3966
3965
  http_version:
3967
- recorded_at: Sat, 12 Sep 2015 08:52:37 GMT
3966
+ recorded_at: Sun, 13 Sep 2015 20:35:43 GMT
3968
3967
  - request:
3969
3968
  method: get
3970
3969
  uri: https://public-crest.eveonline.com/alliances/?page=8
@@ -3982,7 +3981,7 @@ http_interactions:
3982
3981
  Server:
3983
3982
  - nginx
3984
3983
  Date:
3985
- - Sat, 12 Sep 2015 08:55:25 GMT
3984
+ - Sun, 13 Sep 2015 20:38:36 GMT
3986
3985
  Content-Type:
3987
3986
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
3988
3987
  Connection:
@@ -3998,7 +3997,7 @@ http_interactions:
3998
3997
  Access-Control-Allow-Origin:
3999
3998
  - "*"
4000
3999
  Content-Length:
4001
- - '42051'
4000
+ - '42064'
4002
4001
  Access-Control-Allow-Methods:
4003
4002
  - GET, PUT, POST, DELETE, HEAD, OPTIONS
4004
4003
  Access-Control:
@@ -4009,16 +4008,8 @@ http_interactions:
4009
4008
  - Accept, Accept-Encoding, Accept-Language, User-Agent
4010
4009
  body:
4011
4010
  encoding: UTF-8
4012
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
4013
- "99004943", "shortName": "TACIT", "href": "https://public-crest.eveonline.com/alliances/99004943/",
4014
- "id": 99004943, "name": "Favente Deo Supero"}}, {"href": {"id_str": "99004944",
4015
- "shortName": "IS-S", "href": "https://public-crest.eveonline.com/alliances/99004944/",
4016
- "id": 99004944, "name": "Ishukone Syndicate"}}, {"href": {"id_str": "99004945",
4017
- "shortName": ".IED", "href": "https://public-crest.eveonline.com/alliances/99004945/",
4018
- "id": 99004945, "name": "Immediate Destruction"}}, {"href": {"id_str": "99004952",
4019
- "shortName": "SINS", "href": "https://public-crest.eveonline.com/alliances/99004952/",
4020
- "id": 99004952, "name": "The Sinful Legion"}}, {"href": {"id_str": "99004953",
4021
- "shortName": "NSI", "href": "https://public-crest.eveonline.com/alliances/99004953/",
4011
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
4012
+ "99004953", "shortName": "NSI", "href": "https://public-crest.eveonline.com/alliances/99004953/",
4022
4013
  "id": 99004953, "name": "Natural Selection Initiative"}}, {"href": {"id_str":
4023
4014
  "99004954", "shortName": "CAT", "href": "https://public-crest.eveonline.com/alliances/99004954/",
4024
4015
  "id": 99004954, "name": "Crazy Awesome Team"}}, {"href": {"id_str": "99004956",
@@ -4509,11 +4500,19 @@ http_interactions:
4509
4500
  "shortName": "RSE", "href": "https://public-crest.eveonline.com/alliances/99005365/",
4510
4501
  "id": 99005365, "name": "Red Sun Empire"}}, {"href": {"id_str": "99005366",
4511
4502
  "shortName": "EIA", "href": "https://public-crest.eveonline.com/alliances/99005366/",
4512
- "id": 99005366, "name": "Executive Intelligence Agency"}}], "next": {"href":
4513
- "https://public-crest.eveonline.com/alliances/?page=9"}, "totalCount": 3084,
4503
+ "id": 99005366, "name": "Executive Intelligence Agency"}}, {"href": {"id_str":
4504
+ "99005367", "shortName": "OUTWI", "href": "https://public-crest.eveonline.com/alliances/99005367/",
4505
+ "id": 99005367, "name": "Outworld Imbalances"}}, {"href": {"id_str": "99005368",
4506
+ "shortName": "KOBOL", "href": "https://public-crest.eveonline.com/alliances/99005368/",
4507
+ "id": 99005368, "name": "Kobol Astrotech"}}, {"href": {"id_str": "99005369",
4508
+ "shortName": "FIGHT", "href": "https://public-crest.eveonline.com/alliances/99005369/",
4509
+ "id": 99005369, "name": "The WeHurt Initiative"}}, {"href": {"id_str": "99005370",
4510
+ "shortName": "ZBDEE", "href": "https://public-crest.eveonline.com/alliances/99005370/",
4511
+ "id": 99005370, "name": "The Magic Roundabout Alliance"}}], "next": {"href":
4512
+ "https://public-crest.eveonline.com/alliances/?page=9"}, "totalCount": 3078,
4514
4513
  "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=7"}}'
4515
4514
  http_version:
4516
- recorded_at: Sat, 12 Sep 2015 08:52:38 GMT
4515
+ recorded_at: Sun, 13 Sep 2015 20:35:43 GMT
4517
4516
  - request:
4518
4517
  method: get
4519
4518
  uri: https://public-crest.eveonline.com/alliances/?page=9
@@ -4531,7 +4530,7 @@ http_interactions:
4531
4530
  Server:
4532
4531
  - nginx
4533
4532
  Date:
4534
- - Sat, 12 Sep 2015 08:55:25 GMT
4533
+ - Sun, 13 Sep 2015 20:38:36 GMT
4535
4534
  Content-Type:
4536
4535
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
4537
4536
  Connection:
@@ -4547,7 +4546,7 @@ http_interactions:
4547
4546
  Access-Control-Allow-Origin:
4548
4547
  - "*"
4549
4548
  Content-Length:
4550
- - '42052'
4549
+ - '42014'
4551
4550
  Access-Control-Allow-Methods:
4552
4551
  - GET, PUT, POST, DELETE, HEAD, OPTIONS
4553
4552
  Access-Control:
@@ -4558,15 +4557,7 @@ http_interactions:
4558
4557
  - Accept, Accept-Encoding, Accept-Language, User-Agent
4559
4558
  body:
4560
4559
  encoding: UTF-8
4561
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
4562
- "99005367", "shortName": "OUTWI", "href": "https://public-crest.eveonline.com/alliances/99005367/",
4563
- "id": 99005367, "name": "Outworld Imbalances"}}, {"href": {"id_str": "99005368",
4564
- "shortName": "KOBOL", "href": "https://public-crest.eveonline.com/alliances/99005368/",
4565
- "id": 99005368, "name": "Kobol Astrotech"}}, {"href": {"id_str": "99005369",
4566
- "shortName": "FIGHT", "href": "https://public-crest.eveonline.com/alliances/99005369/",
4567
- "id": 99005369, "name": "The WeHurt Initiative"}}, {"href": {"id_str": "99005370",
4568
- "shortName": "ZBDEE", "href": "https://public-crest.eveonline.com/alliances/99005370/",
4569
- "id": 99005370, "name": "The Magic Roundabout Alliance"}}, {"href": {"id_str":
4560
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
4570
4561
  "99005372", "shortName": "SNE", "href": "https://public-crest.eveonline.com/alliances/99005372/",
4571
4562
  "id": 99005372, "name": "Shards Of New Eden"}}, {"href": {"id_str": "99005374",
4572
4563
  "shortName": "ADD", "href": "https://public-crest.eveonline.com/alliances/99005374/",
@@ -4826,9 +4817,7 @@ http_interactions:
4826
4817
  "shortName": "POS", "href": "https://public-crest.eveonline.com/alliances/99005563/",
4827
4818
  "id": 99005563, "name": "Prime Orbital Systems"}}, {"href": {"id_str": "99005566",
4828
4819
  "shortName": "TAF", "href": "https://public-crest.eveonline.com/alliances/99005566/",
4829
- "id": 99005566, "name": "The Angry Fellows"}}, {"href": {"id_str": "99005567",
4830
- "shortName": "SHE2", "href": "https://public-crest.eveonline.com/alliances/99005567/",
4831
- "id": 99005567, "name": "Thats what she said too"}}, {"href": {"id_str": "99005569",
4820
+ "id": 99005566, "name": "The Angry Fellows"}}, {"href": {"id_str": "99005569",
4832
4821
  "shortName": "SNOT", "href": "https://public-crest.eveonline.com/alliances/99005569/",
4833
4822
  "id": 99005569, "name": "Band of Boogers"}}, {"href": {"id_str": "99005571",
4834
4823
  "shortName": "R64", "href": "https://public-crest.eveonline.com/alliances/99005571/",
@@ -4894,12 +4883,10 @@ http_interactions:
4894
4883
  "shortName": "SOLA", "href": "https://public-crest.eveonline.com/alliances/99005613/",
4895
4884
  "id": 99005613, "name": "Solar Solutions"}}, {"href": {"id_str": "99005614",
4896
4885
  "shortName": "S3", "href": "https://public-crest.eveonline.com/alliances/99005614/",
4897
- "id": 99005614, "name": "SL33PERS"}}, {"href": {"id_str": "99005615", "shortName":
4898
- "EN-V", "href": "https://public-crest.eveonline.com/alliances/99005615/",
4899
- "id": 99005615, "name": "Regicidal Tendencies"}}, {"href": {"id_str": "99005616",
4900
- "shortName": "TNS", "href": "https://public-crest.eveonline.com/alliances/99005616/",
4901
- "id": 99005616, "name": "The New State."}}, {"href": {"id_str": "99005617",
4902
- "shortName": "ROME", "href": "https://public-crest.eveonline.com/alliances/99005617/",
4886
+ "id": 99005614, "name": "SL33PERS"}}, {"href": {"id_str": "99005616", "shortName":
4887
+ "TNS", "href": "https://public-crest.eveonline.com/alliances/99005616/", "id":
4888
+ 99005616, "name": "The New State."}}, {"href": {"id_str": "99005617", "shortName":
4889
+ "ROME", "href": "https://public-crest.eveonline.com/alliances/99005617/",
4903
4890
  "id": 99005617, "name": "Mandalorian Imperium"}}, {"href": {"id_str": "99005618",
4904
4891
  "shortName": "PHASE", "href": "https://public-crest.eveonline.com/alliances/99005618/",
4905
4892
  "id": 99005618, "name": "PhaseShift"}}, {"href": {"id_str": "99005619", "shortName":
@@ -4942,11 +4929,7 @@ http_interactions:
4942
4929
  "shortName": "L", "href": "https://public-crest.eveonline.com/alliances/99005646/",
4943
4930
  "id": 99005646, "name": "Libertad"}}, {"href": {"id_str": "99005647", "shortName":
4944
4931
  "DRGN", "href": "https://public-crest.eveonline.com/alliances/99005647/",
4945
- "id": 99005647, "name": "Dragon Alliance."}}, {"href": {"id_str": "99005648",
4946
- "shortName": "F0 TE", "href": "https://public-crest.eveonline.com/alliances/99005648/",
4947
- "id": 99005648, "name": "F0 Testing Alliance"}}, {"href": {"id_str": "99005649",
4948
- "shortName": "THE T", "href": "https://public-crest.eveonline.com/alliances/99005649/",
4949
- "id": 99005649, "name": "The Testing Alliance"}}, {"href": {"id_str": "99005650",
4932
+ "id": 99005647, "name": "Dragon Alliance."}}, {"href": {"id_str": "99005650",
4950
4933
  "shortName": "NRA", "href": "https://public-crest.eveonline.com/alliances/99005650/",
4951
4934
  "id": 99005650, "name": "Nan Roig Alliance"}}, {"href": {"id_str": "99005651",
4952
4935
  "shortName": "65TH.", "href": "https://public-crest.eveonline.com/alliances/99005651/",
@@ -5058,10 +5041,26 @@ http_interactions:
5058
5041
  "shortName": "DOOMN", "href": "https://public-crest.eveonline.com/alliances/99005721/",
5059
5042
  "id": 99005721, "name": "DOOM NAVY"}}, {"href": {"id_str": "99005722", "shortName":
5060
5043
  "DPSW", "href": "https://public-crest.eveonline.com/alliances/99005722/",
5061
- "id": 99005722, "name": "S P R U T"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=10"},
5062
- "totalCount": 3084, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=8"}}'
5044
+ "id": 99005722, "name": "S P R U T"}}, {"href": {"id_str": "99005723", "shortName":
5045
+ "SERV", "href": "https://public-crest.eveonline.com/alliances/99005723/",
5046
+ "id": 99005723, "name": "Servantal Alliance"}}, {"href": {"id_str": "99005724",
5047
+ "shortName": "-TM-", "href": "https://public-crest.eveonline.com/alliances/99005724/",
5048
+ "id": 99005724, "name": "The Minions."}}, {"href": {"id_str": "99005725",
5049
+ "shortName": "BHAND", "href": "https://public-crest.eveonline.com/alliances/99005725/",
5050
+ "id": 99005725, "name": "Black Hand Alliance"}}, {"href": {"id_str": "99005726",
5051
+ "shortName": "NDKA3", "href": "https://public-crest.eveonline.com/alliances/99005726/",
5052
+ "id": 99005726, "name": "New Destiny Kingdoms"}}, {"href": {"id_str": "99005727",
5053
+ "shortName": "BK0UT", "href": "https://public-crest.eveonline.com/alliances/99005727/",
5054
+ "id": 99005727, "name": "Blackout Theory"}}, {"href": {"id_str": "99005728",
5055
+ "shortName": "Z3.", "href": "https://public-crest.eveonline.com/alliances/99005728/",
5056
+ "id": 99005728, "name": "Z3. Tag Empire"}}, {"href": {"id_str": "99005729",
5057
+ "shortName": "IGLOO", "href": "https://public-crest.eveonline.com/alliances/99005729/",
5058
+ "id": 99005729, "name": "The Penguin Cartel"}}, {"href": {"id_str": "99005730",
5059
+ "shortName": "MALE", "href": "https://public-crest.eveonline.com/alliances/99005730/",
5060
+ "id": 99005730, "name": "The Patriarchy."}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=10"},
5061
+ "totalCount": 3078, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=8"}}'
5063
5062
  http_version:
5064
- recorded_at: Sat, 12 Sep 2015 08:52:38 GMT
5063
+ recorded_at: Sun, 13 Sep 2015 20:35:44 GMT
5065
5064
  - request:
5066
5065
  method: get
5067
5066
  uri: https://public-crest.eveonline.com/alliances/?page=10
@@ -5079,7 +5078,7 @@ http_interactions:
5079
5078
  Server:
5080
5079
  - nginx
5081
5080
  Date:
5082
- - Sat, 12 Sep 2015 08:55:25 GMT
5081
+ - Sun, 13 Sep 2015 20:38:36 GMT
5083
5082
  Content-Type:
5084
5083
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
5085
5084
  Connection:
@@ -5095,7 +5094,7 @@ http_interactions:
5095
5094
  Access-Control-Allow-Origin:
5096
5095
  - "*"
5097
5096
  Content-Length:
5098
- - '42304'
5097
+ - '42330'
5099
5098
  Access-Control-Allow-Methods:
5100
5099
  - GET, PUT, POST, DELETE, HEAD, OPTIONS
5101
5100
  Access-Control:
@@ -5106,24 +5105,8 @@ http_interactions:
5106
5105
  - Accept, Accept-Encoding, Accept-Language, User-Agent
5107
5106
  body:
5108
5107
  encoding: UTF-8
5109
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
5110
- "99005723", "shortName": "SERV", "href": "https://public-crest.eveonline.com/alliances/99005723/",
5111
- "id": 99005723, "name": "Servantal Alliance"}}, {"href": {"id_str": "99005724",
5112
- "shortName": "-TM-", "href": "https://public-crest.eveonline.com/alliances/99005724/",
5113
- "id": 99005724, "name": "The Minions."}}, {"href": {"id_str": "99005725",
5114
- "shortName": "BHAND", "href": "https://public-crest.eveonline.com/alliances/99005725/",
5115
- "id": 99005725, "name": "Black Hand Alliance"}}, {"href": {"id_str": "99005726",
5116
- "shortName": "NDKA3", "href": "https://public-crest.eveonline.com/alliances/99005726/",
5117
- "id": 99005726, "name": "New Destiny Kingdoms"}}, {"href": {"id_str": "99005727",
5118
- "shortName": "BK0UT", "href": "https://public-crest.eveonline.com/alliances/99005727/",
5119
- "id": 99005727, "name": "Blackout Theory"}}, {"href": {"id_str": "99005728",
5120
- "shortName": "Z3.", "href": "https://public-crest.eveonline.com/alliances/99005728/",
5121
- "id": 99005728, "name": "Z3. Tag Empire"}}, {"href": {"id_str": "99005729",
5122
- "shortName": "IGLOO", "href": "https://public-crest.eveonline.com/alliances/99005729/",
5123
- "id": 99005729, "name": "The Penguin Cartel"}}, {"href": {"id_str": "99005730",
5124
- "shortName": "MALE", "href": "https://public-crest.eveonline.com/alliances/99005730/",
5125
- "id": 99005730, "name": "The Patriarchy."}}, {"href": {"id_str": "99005731",
5126
- "shortName": "HOLES", "href": "https://public-crest.eveonline.com/alliances/99005731/",
5108
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
5109
+ "99005731", "shortName": "HOLES", "href": "https://public-crest.eveonline.com/alliances/99005731/",
5127
5110
  "id": 99005731, "name": "Holesale Operations"}}, {"href": {"id_str": "99005732",
5128
5111
  "shortName": "YOBRA", "href": "https://public-crest.eveonline.com/alliances/99005732/",
5129
5112
  "id": 99005732, "name": "Yolo Brothers"}}, {"href": {"id_str": "99005733",
@@ -5314,7 +5297,11 @@ http_interactions:
5314
5297
  "99005826", "shortName": "SSCB", "href": "https://public-crest.eveonline.com/alliances/99005826/",
5315
5298
  "id": 99005826, "name": "Swiggity Swooty Coming for the Booty"}}, {"href":
5316
5299
  {"id_str": "99005827", "shortName": "BRUTL", "href": "https://public-crest.eveonline.com/alliances/99005827/",
5317
- "id": 99005827, "name": "Aegis Directorate"}}, {"href": {"id_str": "101677770",
5300
+ "id": 99005827, "name": "Aegis Directorate"}}, {"href": {"id_str": "99005828",
5301
+ "shortName": "POCO", "href": "https://public-crest.eveonline.com/alliances/99005828/",
5302
+ "id": 99005828, "name": "Poco Loco Trading Inc."}}, {"href": {"id_str": "99005829",
5303
+ "shortName": "-SMF-", "href": "https://public-crest.eveonline.com/alliances/99005829/",
5304
+ "id": 99005829, "name": "Space Mafia."}}, {"href": {"id_str": "101677770",
5318
5305
  "shortName": "SLAP", "href": "https://public-crest.eveonline.com/alliances/101677770/",
5319
5306
  "id": 101677770, "name": "United Freaks"}}, {"href": {"id_str": "106665679",
5320
5307
  "shortName": "BMWG", "href": "https://public-crest.eveonline.com/alliances/106665679/",
@@ -5606,10 +5593,23 @@ http_interactions:
5606
5593
  "486420224", "shortName": "SICK", "href": "https://public-crest.eveonline.com/alliances/486420224/",
5607
5594
  "id": 486420224, "name": "War and Pestilence"}}, {"href": {"id_str": "487280191",
5608
5595
  "shortName": "TSL", "href": "https://public-crest.eveonline.com/alliances/487280191/",
5609
- "id": 487280191, "name": "The Star League"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=11"},
5610
- "totalCount": 3084, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=9"}}'
5596
+ "id": 487280191, "name": "The Star League"}}, {"href": {"id_str": "491350469",
5597
+ "shortName": "FRONT", "href": "https://public-crest.eveonline.com/alliances/491350469/",
5598
+ "id": 491350469, "name": "The Obsidian Front"}}, {"href": {"id_str": "492994173",
5599
+ "shortName": "AA", "href": "https://public-crest.eveonline.com/alliances/492994173/",
5600
+ "id": 492994173, "name": "Arbeitaholics Anonymous"}}, {"href": {"id_str":
5601
+ "495729389", "shortName": "SHDWC", "href": "https://public-crest.eveonline.com/alliances/495729389/",
5602
+ "id": 495729389, "name": "Shadow Cartel"}}, {"href": {"id_str": "495752022",
5603
+ "shortName": "DONKY", "href": "https://public-crest.eveonline.com/alliances/495752022/",
5604
+ "id": 495752022, "name": "The Donkey Rollers"}}, {"href": {"id_str": "497302911",
5605
+ "shortName": ".5.", "href": "https://public-crest.eveonline.com/alliances/497302911/",
5606
+ "id": 497302911, "name": "The Five"}}, {"href": {"id_str": "498125261", "shortName":
5607
+ "TEST", "href": "https://public-crest.eveonline.com/alliances/498125261/",
5608
+ "id": 498125261, "name": "Test Alliance Please Ignore"}}], "next": {"href":
5609
+ "https://public-crest.eveonline.com/alliances/?page=11"}, "totalCount": 3078,
5610
+ "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=9"}}'
5611
5611
  http_version:
5612
- recorded_at: Sat, 12 Sep 2015 08:52:38 GMT
5612
+ recorded_at: Sun, 13 Sep 2015 20:35:44 GMT
5613
5613
  - request:
5614
5614
  method: get
5615
5615
  uri: https://public-crest.eveonline.com/alliances/?page=11
@@ -5627,7 +5627,7 @@ http_interactions:
5627
5627
  Server:
5628
5628
  - nginx
5629
5629
  Date:
5630
- - Sat, 12 Sep 2015 08:55:26 GMT
5630
+ - Sun, 13 Sep 2015 20:38:37 GMT
5631
5631
  Content-Type:
5632
5632
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
5633
5633
  Connection:
@@ -5643,7 +5643,7 @@ http_interactions:
5643
5643
  Access-Control-Allow-Origin:
5644
5644
  - "*"
5645
5645
  Content-Length:
5646
- - '42615'
5646
+ - '42609'
5647
5647
  Access-Control-Allow-Methods:
5648
5648
  - GET, PUT, POST, DELETE, HEAD, OPTIONS
5649
5649
  Access-Control:
@@ -5654,19 +5654,7 @@ http_interactions:
5654
5654
  - Accept, Accept-Encoding, Accept-Language, User-Agent
5655
5655
  body:
5656
5656
  encoding: UTF-8
5657
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
5658
- "491350469", "shortName": "FRONT", "href": "https://public-crest.eveonline.com/alliances/491350469/",
5659
- "id": 491350469, "name": "The Obsidian Front"}}, {"href": {"id_str": "492994173",
5660
- "shortName": "AA", "href": "https://public-crest.eveonline.com/alliances/492994173/",
5661
- "id": 492994173, "name": "Arbeitaholics Anonymous"}}, {"href": {"id_str":
5662
- "495729389", "shortName": "SHDWC", "href": "https://public-crest.eveonline.com/alliances/495729389/",
5663
- "id": 495729389, "name": "Shadow Cartel"}}, {"href": {"id_str": "495752022",
5664
- "shortName": "DONKY", "href": "https://public-crest.eveonline.com/alliances/495752022/",
5665
- "id": 495752022, "name": "The Donkey Rollers"}}, {"href": {"id_str": "497302911",
5666
- "shortName": ".5.", "href": "https://public-crest.eveonline.com/alliances/497302911/",
5667
- "id": 497302911, "name": "The Five"}}, {"href": {"id_str": "498125261", "shortName":
5668
- "TEST", "href": "https://public-crest.eveonline.com/alliances/498125261/",
5669
- "id": 498125261, "name": "Test Alliance Please Ignore"}}, {"href": {"id_str":
5657
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
5670
5658
  "499005583", "shortName": "IM", "href": "https://public-crest.eveonline.com/alliances/499005583/",
5671
5659
  "id": 499005583, "name": "Initiative Mercenaries"}}, {"href": {"id_str": "501163976",
5672
5660
  "shortName": "M-P", "href": "https://public-crest.eveonline.com/alliances/501163976/",
@@ -6154,10 +6142,22 @@ http_interactions:
6154
6142
  "shortName": "PIE", "href": "https://public-crest.eveonline.com/alliances/1186465684/",
6155
6143
  "id": 1186465684, "name": "Praetoria Imperialis Excubitoris"}}, {"href": {"id_str":
6156
6144
  "1188261112", "shortName": "GR", "href": "https://public-crest.eveonline.com/alliances/1188261112/",
6157
- "id": 1188261112, "name": "Green Rhino"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=12"},
6158
- "totalCount": 3084, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=10"}}'
6145
+ "id": 1188261112, "name": "Green Rhino"}}, {"href": {"id_str": "1189243859",
6146
+ "shortName": "ZULU", "href": "https://public-crest.eveonline.com/alliances/1189243859/",
6147
+ "id": 1189243859, "name": "Zulu People"}}, {"href": {"id_str": "1194892549",
6148
+ "shortName": "4TH", "href": "https://public-crest.eveonline.com/alliances/1194892549/",
6149
+ "id": 1194892549, "name": "The Fourth District"}}, {"href": {"id_str": "1197953359",
6150
+ "shortName": "YARR", "href": "https://public-crest.eveonline.com/alliances/1197953359/",
6151
+ "id": 1197953359, "name": "Exiled Collective"}}, {"href": {"id_str": "1198020766",
6152
+ "shortName": "A.I.F", "href": "https://public-crest.eveonline.com/alliances/1198020766/",
6153
+ "id": 1198020766, "name": "C0NVICTED"}}, {"href": {"id_str": "1198164123",
6154
+ "shortName": "D S", "href": "https://public-crest.eveonline.com/alliances/1198164123/",
6155
+ "id": 1198164123, "name": "Dark Stripes"}}, {"href": {"id_str": "1199535134",
6156
+ "shortName": "QOOKI", "href": "https://public-crest.eveonline.com/alliances/1199535134/",
6157
+ "id": 1199535134, "name": "Quantum Cookies"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=12"},
6158
+ "totalCount": 3078, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=10"}}'
6159
6159
  http_version:
6160
- recorded_at: Sat, 12 Sep 2015 08:52:39 GMT
6160
+ recorded_at: Sun, 13 Sep 2015 20:35:44 GMT
6161
6161
  - request:
6162
6162
  method: get
6163
6163
  uri: https://public-crest.eveonline.com/alliances/?page=12
@@ -6175,7 +6175,7 @@ http_interactions:
6175
6175
  Server:
6176
6176
  - nginx
6177
6177
  Date:
6178
- - Sat, 12 Sep 2015 08:55:26 GMT
6178
+ - Sun, 13 Sep 2015 20:38:37 GMT
6179
6179
  Content-Type:
6180
6180
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
6181
6181
  Connection:
@@ -6191,7 +6191,7 @@ http_interactions:
6191
6191
  Access-Control-Allow-Origin:
6192
6192
  - "*"
6193
6193
  Content-Length:
6194
- - '43213'
6194
+ - '43205'
6195
6195
  Access-Control-Allow-Methods:
6196
6196
  - GET, PUT, POST, DELETE, HEAD, OPTIONS
6197
6197
  Access-Control:
@@ -6202,20 +6202,8 @@ http_interactions:
6202
6202
  - Accept, Accept-Encoding, Accept-Language, User-Agent
6203
6203
  body:
6204
6204
  encoding: UTF-8
6205
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
6206
- "1189243859", "shortName": "ZULU", "href": "https://public-crest.eveonline.com/alliances/1189243859/",
6207
- "id": 1189243859, "name": "Zulu People"}}, {"href": {"id_str": "1194892549",
6208
- "shortName": "4TH", "href": "https://public-crest.eveonline.com/alliances/1194892549/",
6209
- "id": 1194892549, "name": "The Fourth District"}}, {"href": {"id_str": "1197953359",
6210
- "shortName": "YARR", "href": "https://public-crest.eveonline.com/alliances/1197953359/",
6211
- "id": 1197953359, "name": "Exiled Collective"}}, {"href": {"id_str": "1198020766",
6212
- "shortName": "A.I.F", "href": "https://public-crest.eveonline.com/alliances/1198020766/",
6213
- "id": 1198020766, "name": "C0NVICTED"}}, {"href": {"id_str": "1198164123",
6214
- "shortName": "D S", "href": "https://public-crest.eveonline.com/alliances/1198164123/",
6215
- "id": 1198164123, "name": "Dark Stripes"}}, {"href": {"id_str": "1199535134",
6216
- "shortName": "QOOKI", "href": "https://public-crest.eveonline.com/alliances/1199535134/",
6217
- "id": 1199535134, "name": "Quantum Cookies"}}, {"href": {"id_str": "1203105975",
6218
- "shortName": "HELM.", "href": "https://public-crest.eveonline.com/alliances/1203105975/",
6205
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
6206
+ "1203105975", "shortName": "HELM.", "href": "https://public-crest.eveonline.com/alliances/1203105975/",
6219
6207
  "id": 1203105975, "name": "HELM Alliance"}}, {"href": {"id_str": "1204148554",
6220
6208
  "shortName": "EWOKS", "href": "https://public-crest.eveonline.com/alliances/1204148554/",
6221
6209
  "id": 1204148554, "name": "Ewoks"}}, {"href": {"id_str": "1208295500", "shortName":
@@ -6702,10 +6690,22 @@ http_interactions:
6702
6690
  "shortName": "C.F", "href": "https://public-crest.eveonline.com/alliances/1789460651/",
6703
6691
  "id": 1789460651, "name": "Care Factor"}}, {"href": {"id_str": "1793718161",
6704
6692
  "shortName": "TWV", "href": "https://public-crest.eveonline.com/alliances/1793718161/",
6705
- "id": 1793718161, "name": "TransWarp Ventures"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=13"},
6706
- "totalCount": 3084, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=11"}}'
6693
+ "id": 1793718161, "name": "TransWarp Ventures"}}, {"href": {"id_str": "1794112889",
6694
+ "shortName": "-PH", "href": "https://public-crest.eveonline.com/alliances/1794112889/",
6695
+ "id": 1794112889, "name": "Acid."}}, {"href": {"id_str": "1796387588", "shortName":
6696
+ "LUPUS", "href": "https://public-crest.eveonline.com/alliances/1796387588/",
6697
+ "id": 1796387588, "name": "Caveo Lupus"}}, {"href": {"id_str": "1796417614",
6698
+ "shortName": "GLBL", "href": "https://public-crest.eveonline.com/alliances/1796417614/",
6699
+ "id": 1796417614, "name": "Universal Domination Inc"}}, {"href": {"id_str":
6700
+ "1798720604", "shortName": "GT", "href": "https://public-crest.eveonline.com/alliances/1798720604/",
6701
+ "id": 1798720604, "name": "A Gentle Tyranny"}}, {"href": {"id_str": "1799076555",
6702
+ "shortName": "A.P.I", "href": "https://public-crest.eveonline.com/alliances/1799076555/",
6703
+ "id": 1799076555, "name": "A.P.I"}}, {"href": {"id_str": "1803104011", "shortName":
6704
+ "UDEAD", "href": "https://public-crest.eveonline.com/alliances/1803104011/",
6705
+ "id": 1803104011, "name": "Deadly Unknown"}}], "next": {"href": "https://public-crest.eveonline.com/alliances/?page=13"},
6706
+ "totalCount": 3078, "pageCount_str": "13", "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=11"}}'
6707
6707
  http_version:
6708
- recorded_at: Sat, 12 Sep 2015 08:52:39 GMT
6708
+ recorded_at: Sun, 13 Sep 2015 20:35:45 GMT
6709
6709
  - request:
6710
6710
  method: get
6711
6711
  uri: https://public-crest.eveonline.com/alliances/?page=13
@@ -6723,7 +6723,7 @@ http_interactions:
6723
6723
  Server:
6724
6724
  - nginx
6725
6725
  Date:
6726
- - Sat, 12 Sep 2015 08:55:26 GMT
6726
+ - Sun, 13 Sep 2015 20:38:38 GMT
6727
6727
  Content-Type:
6728
6728
  - application/vnd.ccp.eve.AllianceCollection-v1+json; charset=utf-8
6729
6729
  Connection:
@@ -6739,7 +6739,7 @@ http_interactions:
6739
6739
  Access-Control-Allow-Origin:
6740
6740
  - "*"
6741
6741
  Content-Length:
6742
- - '14640'
6742
+ - '13635'
6743
6743
  Access-Control-Allow-Methods:
6744
6744
  - GET, PUT, POST, DELETE, HEAD, OPTIONS
6745
6745
  Access-Control:
@@ -6750,20 +6750,8 @@ http_interactions:
6750
6750
  - Accept, Accept-Encoding, Accept-Language, User-Agent
6751
6751
  body:
6752
6752
  encoding: UTF-8
6753
- string: '{"totalCount_str": "3084", "pageCount": 13, "items": [{"href": {"id_str":
6754
- "1794112889", "shortName": "-PH", "href": "https://public-crest.eveonline.com/alliances/1794112889/",
6755
- "id": 1794112889, "name": "Acid."}}, {"href": {"id_str": "1796387588", "shortName":
6756
- "LUPUS", "href": "https://public-crest.eveonline.com/alliances/1796387588/",
6757
- "id": 1796387588, "name": "Caveo Lupus"}}, {"href": {"id_str": "1796417614",
6758
- "shortName": "GLBL", "href": "https://public-crest.eveonline.com/alliances/1796417614/",
6759
- "id": 1796417614, "name": "Universal Domination Inc"}}, {"href": {"id_str":
6760
- "1798720604", "shortName": "GT", "href": "https://public-crest.eveonline.com/alliances/1798720604/",
6761
- "id": 1798720604, "name": "A Gentle Tyranny"}}, {"href": {"id_str": "1799076555",
6762
- "shortName": "A.P.I", "href": "https://public-crest.eveonline.com/alliances/1799076555/",
6763
- "id": 1799076555, "name": "A.P.I"}}, {"href": {"id_str": "1803104011", "shortName":
6764
- "UDEAD", "href": "https://public-crest.eveonline.com/alliances/1803104011/",
6765
- "id": 1803104011, "name": "Deadly Unknown"}}, {"href": {"id_str": "1803519277",
6766
- "shortName": "TUF", "href": "https://public-crest.eveonline.com/alliances/1803519277/",
6753
+ string: '{"totalCount_str": "3078", "pageCount": 13, "items": [{"href": {"id_str":
6754
+ "1803519277", "shortName": "TUF", "href": "https://public-crest.eveonline.com/alliances/1803519277/",
6767
6755
  "id": 1803519277, "name": "TalCorp United Federation"}}, {"href": {"id_str":
6768
6756
  "1817109235", "shortName": "DEATH", "href": "https://public-crest.eveonline.com/alliances/1817109235/",
6769
6757
  "id": 1817109235, "name": "Vindication Mob"}}, {"href": {"id_str": "1819478397",
@@ -6919,9 +6907,9 @@ http_interactions:
6919
6907
  "id": 2070019003, "name": "TRE GAFFEL"}}, {"href": {"id_str": "2077084692",
6920
6908
  "shortName": "OORT", "href": "https://public-crest.eveonline.com/alliances/2077084692/",
6921
6909
  "id": 2077084692, "name": "The OORT Cloud"}}], "pageCount_str": "13", "totalCount":
6922
- 3084, "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=12"}}'
6910
+ 3078, "previous": {"href": "https://public-crest.eveonline.com/alliances/?page=12"}}'
6923
6911
  http_version:
6924
- recorded_at: Sat, 12 Sep 2015 08:52:39 GMT
6912
+ recorded_at: Sun, 13 Sep 2015 20:35:45 GMT
6925
6913
  - request:
6926
6914
  method: get
6927
6915
  uri: https://public-crest.eveonline.com/alliances/99000006/
@@ -6939,13 +6927,13 @@ http_interactions:
6939
6927
  Server:
6940
6928
  - nginx
6941
6929
  Date:
6942
- - Sat, 12 Sep 2015 08:55:27 GMT
6930
+ - Sun, 13 Sep 2015 20:38:38 GMT
6943
6931
  Content-Type:
6944
6932
  - application/vnd.ccp.eve.Alliance-v1+json; charset=utf-8
6945
6933
  Connection:
6946
6934
  - keep-alive
6947
6935
  X-Cache-Status:
6948
- - EXPIRED
6936
+ - HIT
6949
6937
  Access-Control-Max-Age:
6950
6938
  - '1728000'
6951
6939
  Access-Control-Expose-Header:
@@ -7013,5 +7001,5 @@ http_interactions:
7013
7001
  "id": 1983708877}], "shortName": "666", "id": 99000006, "name": "Everto Rex
7014
7002
  Regis"}'
7015
7003
  http_version:
7016
- recorded_at: Sat, 12 Sep 2015 08:52:40 GMT
7004
+ recorded_at: Sun, 13 Sep 2015 20:35:46 GMT
7017
7005
  recorded_with: VCR 2.9.3