eve-4 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (182) hide show
  1. checksums.yaml +4 -4
  2. data/.DS_Store +0 -0
  3. data/.gitignore +0 -0
  4. data/.idea/.name +1 -0
  5. data/.idea/.rakeTasks +7 -0
  6. data/.idea/dictionaries/tylercollins.xml +3 -0
  7. data/.idea/encodings.xml +5 -0
  8. data/.idea/eve-updated.iml +58 -0
  9. data/.idea/misc.xml +5 -0
  10. data/.idea/modules.xml +9 -0
  11. data/.idea/scopes/scope_settings.xml +5 -0
  12. data/.idea/vcs.xml +7 -0
  13. data/.idea/workspace.xml +554 -0
  14. data/Gemfile +2 -0
  15. data/Gemfile.lock +108 -0
  16. data/History.txt +7 -0
  17. data/Rakefile +37 -0
  18. data/eve.gemspec +36 -0
  19. data/lib/eve.rb +26 -0
  20. data/lib/eve/api.rb +249 -0
  21. data/lib/eve/api/connectivity.rb +39 -0
  22. data/lib/eve/api/request.rb +80 -0
  23. data/lib/eve/api/response.rb +34 -0
  24. data/lib/eve/api/response/result.rb +87 -0
  25. data/lib/eve/api/response/row.rb +42 -0
  26. data/lib/eve/api/response/rowset.rb +18 -0
  27. data/lib/eve/api/services.rb +20 -0
  28. data/lib/eve/api/services/account.rb +12 -0
  29. data/lib/eve/api/services/character.rb +96 -0
  30. data/lib/eve/api/services/corporation.rb +150 -0
  31. data/lib/eve/api/services/eve.rb +76 -0
  32. data/lib/eve/api/services/map.rb +45 -0
  33. data/lib/eve/api/services/misc.rb +24 -0
  34. data/lib/eve/api/services/server.rb +20 -0
  35. data/lib/eve/dependencies.rb +48 -0
  36. data/lib/eve/deprecation.rb +3 -0
  37. data/lib/eve/errors.rb +129 -0
  38. data/lib/eve/errors/authentication_errors.rb +33 -0
  39. data/lib/eve/errors/internal_errors.rb +64 -0
  40. data/lib/eve/errors/miscellaneous_errors.rb +19 -0
  41. data/lib/eve/errors/user_input_errors.rb +62 -0
  42. data/lib/eve/javascript_helper.rb +196 -0
  43. data/lib/eve/trust.rb +87 -0
  44. data/lib/eve/trust/controller_helpers.rb +86 -0
  45. data/lib/eve/trust/igb_interface.rb +92 -0
  46. data/lib/eve/trust/mime_types.rb +4 -0
  47. data/lib/eve/version.rb +8 -0
  48. data/log/development.log +30 -0
  49. data/spec/controllers/controller_helpers_spec.rb +91 -0
  50. data/spec/helpers/javascript_helper_spec.rb +80 -0
  51. data/spec/helpers/view_helper_spec.rb +7 -0
  52. data/spec/lib/eve/api/calls/account/characters_spec.rb +22 -0
  53. data/spec/lib/eve/api/calls/character/account_balance_spec.rb +21 -0
  54. data/spec/lib/eve/api/calls/character/asset_list_spec.rb +23 -0
  55. data/spec/lib/eve/api/calls/character/character_sheet_spec.rb +51 -0
  56. data/spec/lib/eve/api/calls/character/fac_war_stats_spec.rb +31 -0
  57. data/spec/lib/eve/api/calls/character/industry_jobs_spec.rb +27 -0
  58. data/spec/lib/eve/api/calls/character/kill_log_spec.rb +27 -0
  59. data/spec/lib/eve/api/calls/character/mail_messages_spec.rb +21 -0
  60. data/spec/lib/eve/api/calls/character/mailing_lists_spec.rb +21 -0
  61. data/spec/lib/eve/api/calls/character/market_orders_spec.rb +21 -0
  62. data/spec/lib/eve/api/calls/character/medals_spec.rb +24 -0
  63. data/spec/lib/eve/api/calls/character/research_spec.rb +21 -0
  64. data/spec/lib/eve/api/calls/character/skill_in_training_spec.rb +44 -0
  65. data/spec/lib/eve/api/calls/character/skill_queue_spec.rb +21 -0
  66. data/spec/lib/eve/api/calls/character/standings_spec.rb +26 -0
  67. data/spec/lib/eve/api/calls/character/wallet_journal_spec.rb +21 -0
  68. data/spec/lib/eve/api/calls/character/wallet_transactions_spec.rb +21 -0
  69. data/spec/lib/eve/api/calls/character_portrait_spec.rb +17 -0
  70. data/spec/lib/eve/api/calls/corporation/account_balances_spec.rb +21 -0
  71. data/spec/lib/eve/api/calls/corporation/asset_list_spec.rb +25 -0
  72. data/spec/lib/eve/api/calls/corporation/container_log_spec.rb +23 -0
  73. data/spec/lib/eve/api/calls/corporation/corporation_sheet_spec.rb +36 -0
  74. data/spec/lib/eve/api/calls/corporation/fac_war_stats_spec.rb +23 -0
  75. data/spec/lib/eve/api/calls/corporation/industry_jobs_spec.rb +30 -0
  76. data/spec/lib/eve/api/calls/corporation/kill_log_spec.rb +27 -0
  77. data/spec/lib/eve/api/calls/corporation/market_orders_spec.rb +22 -0
  78. data/spec/lib/eve/api/calls/corporation/medals_spec.rb +21 -0
  79. data/spec/lib/eve/api/calls/corporation/member_medals_spec.rb +21 -0
  80. data/spec/lib/eve/api/calls/corporation/member_security_log_spec.rb +24 -0
  81. data/spec/lib/eve/api/calls/corporation/member_security_spec.rb +25 -0
  82. data/spec/lib/eve/api/calls/corporation/member_tracking_spec.rb +22 -0
  83. data/spec/lib/eve/api/calls/corporation/shareholders_spec.rb +23 -0
  84. data/spec/lib/eve/api/calls/corporation/standings_spec.rb +30 -0
  85. data/spec/lib/eve/api/calls/corporation/starbase_detail_spec.rb +32 -0
  86. data/spec/lib/eve/api/calls/corporation/starbase_list_spec.rb +22 -0
  87. data/spec/lib/eve/api/calls/corporation/titles_spec.rb +26 -0
  88. data/spec/lib/eve/api/calls/corporation/wallet_journal_spec.rb +22 -0
  89. data/spec/lib/eve/api/calls/corporation/wallet_transactions_spec.rb +22 -0
  90. data/spec/lib/eve/api/calls/empty_call_spec.rb +29 -0
  91. data/spec/lib/eve/api/calls/eve/alliance_list_spec.rb +26 -0
  92. data/spec/lib/eve/api/calls/eve/certificate_tree_spec.rb +18 -0
  93. data/spec/lib/eve/api/calls/eve/character_id_spec.rb +27 -0
  94. data/spec/lib/eve/api/calls/eve/conquerable_station_list_spec.rb +11 -0
  95. data/spec/lib/eve/api/calls/eve/error_list_spec.rb +21 -0
  96. data/spec/lib/eve/api/calls/eve/fac_war_stats_spec.rb +25 -0
  97. data/spec/lib/eve/api/calls/eve/fac_war_top_stats_spec.rb +54 -0
  98. data/spec/lib/eve/api/calls/eve/ref_types_spec.rb +11 -0
  99. data/spec/lib/eve/api/calls/eve/skill_tree_spec.rb +17 -0
  100. data/spec/lib/eve/api/calls/map/fac_war_systems_spec.rb +11 -0
  101. data/spec/lib/eve/api/calls/map/jumps_spec.rb +11 -0
  102. data/spec/lib/eve/api/calls/map/kills_spec.rb +11 -0
  103. data/spec/lib/eve/api/calls/map/sovereignty_spec.rb +11 -0
  104. data/spec/lib/eve/api/calls/server_status_spec.rb +28 -0
  105. data/spec/lib/eve/api/request_spec.rb +18 -0
  106. data/spec/lib/eve/api/response/error_spec.rb +13 -0
  107. data/spec/lib/eve/api/response_spec.rb +79 -0
  108. data/spec/lib/eve/api_spec.rb +13 -0
  109. data/spec/lib/eve/core_extensions/hash_spec.rb +23 -0
  110. data/spec/lib/eve/core_extensions/string_spec.rb +8 -0
  111. data/spec/lib/eve/trust/igb_interface_spec.rb +112 -0
  112. data/spec/log/development.log +0 -0
  113. data/spec/rcov.opts +2 -0
  114. data/spec/readme_spec.rb +36 -0
  115. data/spec/sample_api_key.yml +20 -0
  116. data/spec/spec.opts +4 -0
  117. data/spec/spec_helper.rb +63 -0
  118. data/spec/support/behaves_like_rowset.rb +50 -0
  119. data/spec/support/controllers/trust_controller.rb +24 -0
  120. data/spec/support/jpg/mock_portrait.jpg +0 -0
  121. data/spec/support/mock_api_helpers.rb +46 -0
  122. data/spec/support/views/trust/html_and_igb.html.erb +1 -0
  123. data/spec/support/views/trust/html_and_igb.igb.erb +1 -0
  124. data/spec/support/views/trust/html_only.html.erb +1 -0
  125. data/spec/support/views/trust/igb_only.igb.erb +1 -0
  126. data/spec/support/xml/account/characters.xml +15 -0
  127. data/spec/support/xml/character/account_balance.xml +10 -0
  128. data/spec/support/xml/character/asset_list.xml +50 -0
  129. data/spec/support/xml/character/character_sheet.xml +65 -0
  130. data/spec/support/xml/character/fac_war_stats.xml +20 -0
  131. data/spec/support/xml/character/industry_jobs.xml +70 -0
  132. data/spec/support/xml/character/kill_log.xml +51 -0
  133. data/spec/support/xml/character/mail_messages.xml +12 -0
  134. data/spec/support/xml/character/mailing_lists.xml +12 -0
  135. data/spec/support/xml/character/market_orders.xml +11 -0
  136. data/spec/support/xml/character/medals.xml +13 -0
  137. data/spec/support/xml/character/research.xml +13 -0
  138. data/spec/support/xml/character/skill_in_training.xml +14 -0
  139. data/spec/support/xml/character/skill_not_in_training.xml +7 -0
  140. data/spec/support/xml/character/skill_queue.xml +11 -0
  141. data/spec/support/xml/character/standings.xml +32 -0
  142. data/spec/support/xml/character/wallet_journal.xml +39 -0
  143. data/spec/support/xml/character/wallet_transactions.xml +44 -0
  144. data/spec/support/xml/corporation/account_balance.xml +15 -0
  145. data/spec/support/xml/corporation/asset_list.xml +50 -0
  146. data/spec/support/xml/corporation/container_log.xml +32 -0
  147. data/spec/support/xml/corporation/fac_war_stats.xml +19 -0
  148. data/spec/support/xml/corporation/industry_jobs.xml +70 -0
  149. data/spec/support/xml/corporation/kill_log.xml +51 -0
  150. data/spec/support/xml/corporation/market_orders.xml +37 -0
  151. data/spec/support/xml/corporation/medals.xml +8 -0
  152. data/spec/support/xml/corporation/member_corporation_sheet.xml +51 -0
  153. data/spec/support/xml/corporation/member_medals.xml +10 -0
  154. data/spec/support/xml/corporation/member_security.xml +21 -0
  155. data/spec/support/xml/corporation/member_security_log.xml +55 -0
  156. data/spec/support/xml/corporation/member_tracking.xml +18 -0
  157. data/spec/support/xml/corporation/non_member_corporation_sheet.xml +30 -0
  158. data/spec/support/xml/corporation/shareholders.xml +11 -0
  159. data/spec/support/xml/corporation/standings.xml +33 -0
  160. data/spec/support/xml/corporation/starbase_detail.xml +33 -0
  161. data/spec/support/xml/corporation/starbase_list.xml +17 -0
  162. data/spec/support/xml/corporation/titles.xml +34 -0
  163. data/spec/support/xml/corporation/wallet_journal.xml +40 -0
  164. data/spec/support/xml/corporation/wallet_transactions.xml +12 -0
  165. data/spec/support/xml/errors/106.xml +5 -0
  166. data/spec/support/xml/errors/516.xml +5 -0
  167. data/spec/support/xml/eve/alliance_list.xml +22 -0
  168. data/spec/support/xml/eve/certificate_tree.xml +49 -0
  169. data/spec/support/xml/eve/character_id.xml +15 -0
  170. data/spec/support/xml/eve/conquerable_station_list.xml +24 -0
  171. data/spec/support/xml/eve/error_list.xml +78 -0
  172. data/spec/support/xml/eve/fac_war_stats.xml +31 -0
  173. data/spec/support/xml/eve/fac_war_top_stats.xml +238 -0
  174. data/spec/support/xml/eve/ref_types.xml +105 -0
  175. data/spec/support/xml/eve/skill_tree.xml +52 -0
  176. data/spec/support/xml/map/fac_war_systems.xml +180 -0
  177. data/spec/support/xml/map/jumps.xml +166 -0
  178. data/spec/support/xml/map/kills.xml +191 -0
  179. data/spec/support/xml/map/sovereignty.xml +20 -0
  180. data/spec/support/xml/rowset_with_mismatched_attributes.xml +6 -0
  181. data/spec/support/xml/server/server_status.xml +9 -0
  182. metadata +310 -2
@@ -0,0 +1,65 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2009-08-26 12:00:09</currentTime>
4
+ <result>
5
+ <characterID>150337897</characterID>
6
+ <name>corpslave</name>
7
+ <race>Minmatar</race>
8
+ <bloodLine>Brutor</bloodLine>
9
+ <gender>Female</gender>
10
+ <corporationName>corpexport Corp</corporationName>
11
+ <corporationID>150337746</corporationID>
12
+ <cloneName>Clone Grade Pi</cloneName>
13
+ <cloneSkillPoints>54600000</cloneSkillPoints>
14
+ <balance>190210393.87</balance>
15
+ <attributeEnhancers>
16
+ <intelligenceBonus>
17
+ <augmentatorName>Snake Delta</augmentatorName>
18
+ <augmentatorValue>3</augmentatorValue>
19
+ </intelligenceBonus>
20
+ <memoryBonus>
21
+ <augmentatorName>Memory Augmentation - Basic</augmentatorName>
22
+ <augmentatorValue>3</augmentatorValue>
23
+ </memoryBonus>
24
+ </attributeEnhancers>
25
+ <attributes>
26
+ <intelligence>6</intelligence>
27
+ <memory>4</memory>
28
+ <charisma>7</charisma>
29
+ <perception>12</perception>
30
+ <willpower>10</willpower>
31
+ </attributes>
32
+ <rowset name="skills" key="typeID" columns="typeID,skillpoints,level,unpublished">
33
+ <row typeID="3431" skillpoints="8000" level="3"/>
34
+ <row typeID="3413" skillpoints="8000" level="3"/>
35
+ <row typeID="21059" skillpoints="500" level="1"/>
36
+ <row typeID="3416" skillpoints="8000" level="3"/>
37
+ <row typeID="3445" skillpoints="277578" unpublished="1"/>
38
+ </rowset>
39
+ <rowset name="certificates" key="certificateID" columns="certificateID">
40
+ <row certificateID="1"/>
41
+ <row certificateID="5"/>
42
+ <row certificateID="19"/>
43
+ <row certificateID="239"/>
44
+ <row certificateID="282"/>
45
+ <row certificateID="32"/>
46
+ <row certificateID="258"/>
47
+ </rowset>
48
+ <rowset name="corporationRoles" key="roleID" columns="roleID,roleName">
49
+ <row roleID="1" roleName="roleDirector" />
50
+ </rowset>
51
+ <rowset name="corporationRolesAtHQ" key="roleID" columns="roleID,roleName">
52
+ <row roleID="1" roleName="roleDirector" />
53
+ </rowset>
54
+ <rowset name="corporationRolesAtBase" key="roleID" columns="roleID,roleName">
55
+ <row roleID="1" roleName="roleDirector" />
56
+ </rowset>
57
+ <rowset name="corporationRolesAtOther" key="roleID" columns="roleID,roleName">
58
+ <row roleID="1" roleName="roleDirector" />
59
+ </rowset>
60
+ <rowset name="corporationTitles" key="titleID" columns="titleID,titleName">
61
+ <row titleID="1" titleName="Member" />
62
+ </rowset>
63
+ </result>
64
+ <cachedUntil>2009-08-26 13:00:09</cachedUntil>
65
+ </eveapi>
@@ -0,0 +1,20 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2008-07-10 13:12:49</currentTime>
4
+ <result>
5
+ <factionID>500001</factionID>
6
+ <factionName>Caldari State</factionName>
7
+ <enlisted>2008-06-10 22:10:00</enlisted>
8
+ <currentRank>4</currentRank>
9
+
10
+ <highestRank>4</highestRank>
11
+ <killsYesterday>0</killsYesterday>
12
+ <killsLastWeek>0</killsLastWeek>
13
+ <killsTotal>0</killsTotal>
14
+ <victoryPointsYesterday>0</victoryPointsYesterday>
15
+ <victoryPointsLastWeek>1044</victoryPointsLastWeek>
16
+
17
+ <victoryPointsTotal>0</victoryPointsTotal>
18
+ </result>
19
+ <cachedUntil>2008-07-10 14:12:49</cachedUntil>
20
+ </eveapi>
@@ -0,0 +1,70 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2008-05-25 20:23:34</currentTime>
4
+ <result>
5
+ <rowset name="jobs" key="jobID" columns="jobID,assemblyLineID,containerID,
6
+ installedItemID,installedItemLocationID,installedItemQuantity,
7
+ installedItemProductivityLevel,installedItemMaterialLevel,
8
+ installedItemLicensedProductionRunsRemaining,outputLocationID,
9
+ installerID,runs,licensedProductionRuns,installedInSolarSystemID,
10
+ containerLocationID,materialMultiplier,charMaterialMultiplier,
11
+ timeMultiplier,charTimeMultiplier,installedItemTypeID,outputTypeID,
12
+ containerTypeID,installedItemCopy,completed,completedSuccessfully,
13
+ installedItemFlag,outputFlag,activityID,completedStatus,installTime,
14
+ beginProductionTime,endProductionTime,pauseProductionTime">
15
+ <row jobID="23264063" assemblyLineID="100518790" containerID="1386493620"
16
+ installedItemID="1002502594" installedItemLocationID="199583646"
17
+ installedItemQuantity="1" installedItemProductivityLevel="12"
18
+ installedItemMaterialLevel="40" installedItemLicensedProductionRunsRemaining="-1"
19
+ outputLocationID="1386493620" installerID="674831735" runs="6"
20
+ licensedProductionRuns="15" installedInSolarSystemID="30005005"
21
+ containerLocationID="30005005" materialMultiplier="1" charMaterialMultiplier="1"
22
+ timeMultiplier="0.65" charTimeMultiplier="1.5" installedItemTypeID="971"
23
+ outputTypeID="971" containerTypeID="28351" installedItemCopy="0" completed="0"
24
+ completedSuccessfully="0" installedItemFlag="121" outputFlag="120" activityID="5"
25
+ completedStatus="0" installTime="2008-05-23 00:38:00"
26
+ beginProductionTime="2008-05-23 00:38:00" endProductionTime="2008-06-08 16:47:00"
27
+ pauseProductionTime="0001-01-01 00:00:00" />
28
+ <row jobID="23174942" assemblyLineID="100185892" containerID="1080588655"
29
+ installedItemID="495277991" installedItemLocationID="199583646"
30
+ installedItemQuantity="1" installedItemProductivityLevel="0"
31
+ installedItemMaterialLevel="40" installedItemLicensedProductionRunsRemaining="-1"
32
+ outputLocationID="1080588655" installerID="674831735" runs="18"
33
+ licensedProductionRuns="0" installedInSolarSystemID="30005005"
34
+ containerLocationID="30005005" materialMultiplier="1" charMaterialMultiplier="1"
35
+ timeMultiplier="0.75" charTimeMultiplier="0.75" installedItemTypeID="979"
36
+ outputTypeID="979" containerTypeID="16216" installedItemCopy="0" completed="0"
37
+ completedSuccessfully="0" installedItemFlag="118" outputFlag="0" activityID="3"
38
+ completedStatus="0" installTime="2008-05-21 00:26:00"
39
+ beginProductionTime="2008-05-21 00:26:00" endProductionTime="2008-06-18 03:26:00"
40
+ pauseProductionTime="2008-05-25 10:04:00" />
41
+ <row jobID="22081247" assemblyLineID="100185897" containerID="1080588655"
42
+ installedItemID="365564655" installedItemLocationID="199583646"
43
+ installedItemQuantity="1" installedItemProductivityLevel="25"
44
+ installedItemMaterialLevel="100" installedItemLicensedProductionRunsRemaining="1500"
45
+ outputLocationID="1080588655" installerID="834605870" runs="1"
46
+ licensedProductionRuns="10" installedInSolarSystemID="30005005"
47
+ containerLocationID="30005005" materialMultiplier="-4" charMaterialMultiplier="1"
48
+ timeMultiplier="-4" charTimeMultiplier="1" installedItemTypeID="2455"
49
+ outputTypeID="2457" containerTypeID="16216" installedItemCopy="1" completed="1"
50
+ completedSuccessfully="0" installedItemFlag="116" outputFlag="4" activityID="8"
51
+ completedStatus="1" installTime="2008-04-27 08:55:00"
52
+ beginProductionTime="2008-04-27 09:54:00" endProductionTime="2008-04-27 10:54:00"
53
+ pauseProductionTime="0001-01-01 00:00:00" />
54
+ <row jobID="14229974" assemblyLineID="105036" containerID="60013150"
55
+ installedItemID="934765261" installedItemLocationID="983232683"
56
+ installedItemQuantity="1" installedItemProductivityLevel="0"
57
+ installedItemMaterialLevel="0" installedItemLicensedProductionRunsRemaining="1"
58
+ outputLocationID="60013150" installerID="834605870" runs="1"
59
+ licensedProductionRuns="0" installedInSolarSystemID="30000190"
60
+ containerLocationID="30000190" materialMultiplier="1" charMaterialMultiplier="1"
61
+ timeMultiplier="1" charTimeMultiplier="0.8" installedItemTypeID="17721"
62
+ outputTypeID="17720" containerTypeID="3865" installedItemCopy="1" completed="1"
63
+ completedSuccessfully="0" installedItemFlag="4" outputFlag="4" activityID="1"
64
+ completedStatus="1" installTime="2007-11-06 05:18:00"
65
+ beginProductionTime="2007-11-06 05:18:00" endProductionTime="2007-11-06 07:58:00"
66
+ pauseProductionTime="0001-01-01 00:00:00" />
67
+ </rowset>
68
+ </result>
69
+ <cachedUntil>2008-05-25 20:38:34</cachedUntil>
70
+ </eveapi>
@@ -0,0 +1,51 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="1">
3
+ <currentTime>2007-12-10 18:26:58</currentTime>
4
+ <result>
5
+ <rowset name="kills" key="killID" columns="killID,solarSystemID,killTime,moonID">
6
+ <row killID="63" solarSystemID="30000848" killTime="2007-11-15 15:36:00" moonID="0">
7
+ <victim characterID="150340823" characterName="Dieinafire" corporationID="1000169"
8
+ corporationName="Center for Advanced Studies" allianceID="0"
9
+ damageTaken="6378" shipTypeID="12003" />
10
+ <rowset name="attackers" columns="characterID,characterName,corporationID,corporationName,allianceID,allianceName,securityStatus,damageDone,finalBlow,weaponTypeID,shipTypeID">
11
+ <row characterID="0" characterName="" corporationID="1000127" corporationName="Guristas"
12
+ allianceID="0" allianceName="" securityStatus="0" damageDone="6313" finalBlow="1"
13
+ weaponTypeID="0" shipTypeID="203" />
14
+ <row characterID="0" characterName="" corporationID="150279367" corporationName="Starbase Anchoring Corp"
15
+ allianceID="0" allianceName="" securityStatus="0" damageDone="65" finalBlow="0"
16
+ weaponTypeID="0" shipTypeID="16632" />
17
+ </rowset>
18
+ <rowset name="items" columns="typeID,flag,qtyDropped,qtyDestroyed" />
19
+ </row>
20
+ <row killID="62" solarSystemID="30000848" killTime="2007-11-15 14:48:00" moonID="0">
21
+ <victim characterID="150340823" characterName="Dieinafire" corporationID="1000169"
22
+ corporationName="Center for Advanced Studies" allianceID="0" damageTaken="455"
23
+ shipTypeID="606" />
24
+ <rowset name="attackers" columns="characterID,characterName,corporationID,corporationName,allianceID,allianceName,securityStatus,damageDone,finalBlow,weaponTypeID,shipTypeID">
25
+ <row characterID="0" characterName="" corporationID="1000127" corporationName="Guristas"
26
+ allianceID="0" allianceName="" securityStatus="0" damageDone="394" finalBlow="1"
27
+ weaponTypeID="0" shipTypeID="23328" />
28
+ <row characterID="150131146" characterName="Mark Player" corporationID="150147571"
29
+ corporationName="Peanut Butter Jelly Time" allianceID="150148475"
30
+ allianceName="Margaritaville" securityStatus="0.3" damageDone="0"
31
+ finalBlow="0" weaponTypeID="25715" shipTypeID="24698" />
32
+ </rowset>
33
+ <rowset name="items" columns="typeID,flag,qtyDropped,qtyDestroyed">
34
+ <row typeID="3520" flag="0" qtyDropped="3" qtyDestroyed="1" />
35
+ <row typeID="12076" flag="0" qtyDropped="0" qtyDestroyed="1">
36
+ <rowset name="items" columns="typeID,flag,qtyDropped,qtyDestroyed">
37
+ <row typeID="12259" flag="0" qtyDropped="0" qtyDestroyed="1" />
38
+ <row typeID="1236" flag="0" qtyDropped="2" qtyDestroyed="1" />
39
+ <row typeID="2032" flag="0" qtyDropped="1" qtyDestroyed="1" />
40
+ </rowset>
41
+ </row>
42
+ <row typeID="12814" flag="0" qtyDropped="1" qtyDestroyed="3" />
43
+ <row typeID="2364" flag="0" qtyDropped="0" qtyDestroyed="3" />
44
+ <row typeID="26070" flag="0" qtyDropped="0" qtyDestroyed="2" />
45
+ <row typeID="2605" flag="0" qtyDropped="1" qtyDestroyed="0" />
46
+ </rowset>
47
+ </row>
48
+ </rowset>
49
+ </result>
50
+ <cachedUntil>2007-12-10 18:26:58</cachedUntil>
51
+ </eveapi>
@@ -0,0 +1,12 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2009-12-02 00:46:10</currentTime>
4
+ <result>
5
+ <rowset name="mailMessages" key="messageID" columns="messageID,senderID,sentDate,title,toCorpOrAllianceID,toCharacterIDs,toListIDs,read">
6
+ <row messageID="290285276" senderID="999999999" sentDate="2009-12-01 01:04:00" title="Corp mail" toCorpOrAllianceID="999999999" toCharacterIDs="" toListIDs="" read="1" />
7
+ <row messageID="290285275" senderID="999999999" sentDate="2009-12-01 01:04:00" title="Personal mail" toCorpOrAllianceID="" toCharacterIDs="999999999" toListIDs="" read="1" />
8
+ <row messageID="290285274" senderID="999999999" sentDate="2009-12-01 01:04:00" title="Message to mailing list" toCorpOrAllianceID="" toCharacterIDs="" toListIDs="999999999" read="0" />
9
+ </rowset>
10
+ </result>
11
+ <cachedUntil>2009-12-02 01:16:10</cachedUntil>
12
+ </eveapi>
@@ -0,0 +1,12 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2009-12-02 06:29:32</currentTime>
4
+ <result>
5
+ <rowset name="mailingLists" key="listID" columns="listID,displayName">
6
+ <row listID="128250439" displayName="EVETycoonMail" />
7
+ <row listID="128783669" displayName="EveMarketScanner" />
8
+ <row listID="141157801" displayName="Exploration Wormholes" />
9
+ </rowset>
10
+ </result>
11
+ <cachedUntil>2009-12-02 12:29:32</cachedUntil>
12
+ </eveapi>
@@ -0,0 +1,11 @@
1
+ <eveapi version="2">
2
+ <currentTime>2008-02-04 13:28:18</currentTime>
3
+ <result>
4
+ <rowset name="orders" key="orderID" columns="orderID,charID,stationID,volEntered,volRemaining,minVolume,orderState,typeID,range,accountKey,duration,escrow,price,bid,issued">
5
+ <row orderID="639356913" charID="118406849" stationID="60008494" volEntered="25" volRemaining="18" minVolume="1" orderState="0" typeID="26082" range="32767" accountKey="1000" duration="3" escrow="0.00" price="3398000.00" bid="0" issued="2008-02-03 13:54:11"/>
6
+ <row orderID="639477821" charID="118406849" stationID="60004357" volEntered="25" volRemaining="24" minVolume="1" orderState="0" typeID="26082" range="32767" accountKey="1000" duration="3" escrow="0.00" price="3200000.00" bid="0" issued="2008-02-02 16:39:25"/>
7
+ <row orderID="639587440" charID="118406849" stationID="60003760" volEntered="25" volRemaining="4" minVolume="1" orderState="0" typeID="26082" range="32767" accountKey="1000" duration="1" escrow="0.00" price="3399999.98" bid="0" issued="2008-02-03 22:35:54"/>
8
+ </rowset>
9
+ </result>
10
+ <cachedUntil>2008-02-04 14:28:18</cachedUntil>
11
+ </eveapi>
@@ -0,0 +1,13 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2008-12-06 23:18:18</currentTime>
4
+ <result>
5
+ <rowset name="currentCorporation" key="medalID" columns="medalID,reason,status,issuerID,issued" />
6
+ <rowset name="otherCorporations" key="medalID" columns="medalID,reason,status,issuerID,issued,corporationID,title,description">
7
+ <row medalID="4106" reason="For continued support, loyalty and dedication towards the Centre for Advanced Studies"
8
+ status="private" issuerID="132533870" issued="2008-11-25 10:36:01" corporationID="1711141370" title="Medal of Service"
9
+ description="For taking initiative and making an extraordinary contribution towards the corporation"/>
10
+ </rowset>
11
+ </result>
12
+ <cachedUntil>2008-12-07 22:18:18</cachedUntil>
13
+ </eveapi>
@@ -0,0 +1,13 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2010-01-22 22:02:46</currentTime>
4
+ <result>
5
+ <rowset name="research" key="agentID" columns="agentID,skillTypeID,researchStartDate,pointsPerDay,remainderPoints">
6
+ <row agentID="3011113" skillTypeID="11452" researchStartDate="2009-09-08 06:19:29" pointsPerDay="66.64" remainderPoints="6.293213773155" />
7
+ <row agentID="3011154" skillTypeID="11452" researchStartDate="2009-09-02 06:49:35" pointsPerDay="65.66" remainderPoints="33.0962187499972" />
8
+ <row agentID="3011165" skillTypeID="11452" researchStartDate="2007-10-19 22:18:37" pointsPerDay="68.48" remainderPoints="-29285.7593840278" />
9
+ <row agentID="3011534" skillTypeID="11453" researchStartDate="2009-09-08 06:36:20" pointsPerDay="85.76" remainderPoints="31.7952812500007" />
10
+ </rowset>
11
+ </result>
12
+ <cachedUntil>2010-01-22 22:17:46</cachedUntil>
13
+ </eveapi>
@@ -0,0 +1,14 @@
1
+ <eveapi version="2">
2
+ <currentTime>2008-08-17 06:43:00</currentTime>
3
+ <result>
4
+ <currentTQTime offset="0">2008-08-17 06:43:00</currentTQTime>
5
+ <trainingEndTime>2008-08-17 15:29:44</trainingEndTime>
6
+ <trainingStartTime>2008-08-15 04:01:16</trainingStartTime>
7
+ <trainingTypeID>3305</trainingTypeID>
8
+ <trainingStartSP>24000</trainingStartSP>
9
+ <trainingDestinationSP>135765</trainingDestinationSP>
10
+ <trainingToLevel>4</trainingToLevel>
11
+ <skillInTraining>1</skillInTraining>
12
+ </result>
13
+ <cachedUntil>2008-08-17 06:58:00</cachedUntil>
14
+ </eveapi>
@@ -0,0 +1,7 @@
1
+ <eveapi version="1">
2
+ <currentTime>2007-06-21 10:57:10</currentTime>
3
+ <result>
4
+ <skillInTraining>0</skillInTraining>
5
+ </result>
6
+ <cachedUntil>2007-06-21 10:57:20</cachedUntil>
7
+ </eveapi>
@@ -0,0 +1,11 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2009-03-18 13:19:43</currentTime>
4
+ <result>
5
+ <rowset name="skillqueue" key="queuePosition" columns="queuePosition,typeID,level,startSP,endSP,startTime,endTime">
6
+ <row queuePosition="1" typeID="11441" level="3" startSP="7072" endSP="40000" startTime="2009-03-18 02:01:06" endTime="2009-03-18 15:19:21" />
7
+ <row queuePosition="2" typeID="20533" level="4" startSP="112000" endSP="633542" startTime="2009-03-18 15:19:21" endTime="2009-03-30 03:16:14" />
8
+ </rowset>
9
+ </result>
10
+ <cachedUntil>2009-03-18 13:34:43</cachedUntil>
11
+ </eveapi>
@@ -0,0 +1,32 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2008-09-03 12:20:19</currentTime>
4
+ <result>
5
+ <standingsTo>
6
+ <rowset name="characters" key="toID" columns="toID,toName,standing">
7
+ <row toID="123456" toName="Test Ally" standing="1" />
8
+ <row toID="234567" toName="Test Friend" standing="0.5" />
9
+ <row toID="345678" toName="Test Enemy" standing="-0.8" />
10
+ </rowset>
11
+ <rowset name="corporations" key="toID" columns="toID,toName,standing">
12
+ <row toID="456789" toName="Test Bad Guy Corp" standing="-1" />
13
+ </rowset>
14
+ </standingsTo>
15
+ <standingsFrom>
16
+ <rowset name="agents" key="fromID" columns="fromID,fromName,standing">
17
+ <row fromID="3009841" fromName="Pausent Ansin" standing="0.1" />
18
+ <row fromID="3009846" fromName="Charie Octienne" standing="0.19" />
19
+ </rowset>
20
+ <rowset name="NPCCorporations" key="fromID" columns="fromID,fromName,standing">
21
+ <row fromID="1000061" fromName="Freedom Extension" standing="0" />
22
+ <row fromID="1000064" fromName="Carthum Conglomerate" standing="0.34" />
23
+ <row fromID="1000094" fromName="TransStellar Shipping" standing="0.02" />
24
+ </rowset>
25
+ <rowset name="factions" key="fromID" columns="fromID,fromName,standing">
26
+ <row fromID="500003" fromName="Amarr Empire" standing="-0.1" />
27
+ <row fromID="500020" fromName="Serpentis" standing="-1" />
28
+ </rowset>
29
+ </standingsFrom>
30
+ </result>
31
+ <cachedUntil>2008-09-03 15:20:19</cachedUntil>
32
+ </eveapi>
@@ -0,0 +1,39 @@
1
+ <eveapi version="2">
2
+ <currentTime>2008-08-22 12:00:16</currentTime>
3
+ <result>
4
+ <rowset name="entries" key="refID"
5
+ columns="date,refID,refTypeID,ownerName1,ownerID1,ownerName2,ownerID2,argName1,argID1,amount,balance,reason, taxRecieverID, taxAmount">
6
+ <row date="2008-08-22 03:36:00" refID="1578932679" refTypeID="54" ownerName1="corpslave"
7
+ ownerID1="150337897" ownerName2="Secure Commerce Commission" ownerID2="1000132"
8
+ argName1="" argID1="0" amount="-8396.99" balance="576336941.61" reason="" taxRecieverID="" taxAmount="" />
9
+ <row date="2008-08-22 03:36:00" refID="1578932678" refTypeID="2" ownerName1="anonymous"
10
+ ownerID1="30497503" ownerName2="corpslave" ownerID2="150337897"
11
+ argName1="725524391" argID1="0" amount="1399498.50" balance="576345338.60" reason="" taxRecieverID="" taxAmount="" />
12
+ <row date="2008-08-21 22:18:00" refID="1578164958" refTypeID="42" ownerName1="corpslave"
13
+ ownerID1="150337897" ownerName2="" ownerID2="0"
14
+ argName1="" argID1="0" amount="-152939.40" balance="574647640.10" reason="" taxRecieverID="" taxAmount="" />
15
+ <row date="2008-08-21 21:42:00" refID="1578064292" refTypeID="46" ownerName1="corpslave"
16
+ ownerID1="150337897" ownerName2="Secure Commerce Commission" ownerID2="1000132"
17
+ argName1="" argID1="1" amount="-100.00" balance="576279220.79" reason="" taxRecieverID="" taxAmount="" />
18
+ <row date="2008-08-21 08:35:00" refID="1576226363" refTypeID="63" ownerName1="corpslave"
19
+ ownerID1="150337897" ownerName2="Secure Commerce Commission" ownerID2="1000132"
20
+ argName1="9956913" argID1="0" amount="-20200000.00" balance="573681668.81" reason="" taxRecieverID="" taxAmount="" />
21
+ <row date="2008-08-21 00:12:00" refID="1575178039" refTypeID="64" ownerName1="Secure Commerce Commission"
22
+ ownerID1="1000132" ownerName2="corpslave" ownerID2="150337897"
23
+ argName1="9956913" argID1="0" amount="5300000.00" balance="612310142.18" reason="" taxRecieverID="" taxAmount="" />
24
+ <row date="2008-08-20 13:10:00" refID="1575178032" refTypeID="85" ownerName1="CONCORD"
25
+ ownerID1="1000125" ownerName2="anonymous" ownerID2="173993711" argName1="Jita"
26
+ argID1="30001660" amount="135000.00" balance="609292267.52" reason="29200:15," taxReceiverID="1734917694" taxAmount="15000.00" />
27
+ <row date="2008-08-20 05:19:00" refID="1572531631" refTypeID="34" ownerName1="anonymous"
28
+ ownerID1="30497503" ownerName2="corpslave" ownerID2="150337897"
29
+ argName1="" argID1="30497503" amount="911000.00" balance="611148267.52" reason="" taxRecieverID="" taxAmount="" />
30
+ <row date="2008-08-20 05:19:00" refID="1572531630" refTypeID="33" ownerName1="anonymous"
31
+ ownerID1="30497503" ownerName2="corpslave" ownerID2="150337897"
32
+ argName1="" argID1="30497503" amount="945000.00" balance="610237267.52" reason="" taxReceiverID="" taxAmount="" />
33
+ <row date="2008-08-20 04:15:00" refID="1572401485" refTypeID="15" ownerName1="corpslave"
34
+ ownerID1="150337897" ownerName2="Federal Intelligence Office" ownerID2="1000121"
35
+ argName1="" argID1="1" amount="-504.00" balance="597984259.02" reason="" taxRecieverID="" taxAmount="" />
36
+ </rowset>
37
+ </result>
38
+ <cachedUntil>2008-08-22 12:15:16</cachedUntil>
39
+ </eveapi>
@@ -0,0 +1,44 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <eveapi version="2">
3
+ <currentTime>2010-01-08 20:31:52</currentTime>
4
+ <result>
5
+ <rowset name="transactions" key="transactionID" columns="transactionDateTime,transactionID,quantity,typeName,typeID,price,clientID,clientName,stationID,stationName,transactionType,transactionFor">
6
+ <row transactionDateTime="2010-02-07 03:34:00" transactionID="1309776438" quantity="1"
7
+ typeName="Information Warfare" typeID="20495" price="34101.06"
8
+ clientID="1034922339" clientName="Elthana" stationID="60003760"
9
+ stationName="Jita IV - Moon 4 - Caldari Navy Assembly Plant"
10
+ transactionType="buy" transactionFor="personal" />
11
+ <row transactionDateTime="2010-02-05 17:47:00" transactionID="1307711508" quantity="1"
12
+ typeName="Wing Command" typeID="11574" price="1169939.97"
13
+ clientID="1979235241" clientName="Daeja synn" stationID="60015027"
14
+ stationName="Uitra VI - Moon 4 - State War Academy School"
15
+ transactionType="buy" transactionFor="personal" />
16
+ <row transactionDateTime="2010-02-02 18:28:00" transactionID="1304203159" quantity="2"
17
+ typeName="Skirmish Warfare" typeID="3349" price="13012.01"
18
+ clientID="275581519" clientName="SPAIDERKA" stationID="60003760"
19
+ stationName="Jita IV - Moon 4 - Caldari Navy Assembly Plant"
20
+ transactionType="buy" transactionFor="personal" />
21
+ <row transactionDateTime="2010-02-02 06:56:00" transactionID="1303713416" quantity="1"
22
+ typeName="Skirmish Warfare" typeID="3349" price="13012.01"
23
+ clientID="686507146" clientName="Jin Sutai" stationID="60003760"
24
+ stationName="Jita IV - Moon 4 - Caldari Navy Assembly Plant"
25
+ transactionType="buy" transactionFor="personal" />
26
+ <row transactionDateTime="2010-02-02 01:03:00" transactionID="1303450901" quantity="2"
27
+ typeName="Skirmish Warfare" typeID="3349" price="13012.01"
28
+ clientID="1043005854" clientName="Flash EF" stationID="60003760"
29
+ stationName="Jita IV - Moon 4 - Caldari Navy Assembly Plant"
30
+ transactionType="buy" transactionFor="personal" />
31
+ <row transactionDateTime="2010-01-29 21:27:00" transactionID="1299019978" quantity="6"
32
+ typeName="Heavy Missile Launcher II" typeID="2410" price="556001.01"
33
+ clientID="838771896" clientName="Sax Man" stationID="60002362"
34
+ stationName="Airaken IV - Moon 1 - Lai Dai Corporation Warehouse"
35
+ transactionType="buy" transactionFor="personal" />
36
+ <row transactionDateTime="2010-01-29 15:45:00" transactionID="1298649939" quantity="1"
37
+ typeName="Heavy Missile Launcher II" typeID="2410" price="556001.01"
38
+ clientID="1703231064" clientName="Der Suchende" stationID="60004369"
39
+ stationName="Ohmahailen V - Moon 7 - Corporate Police Force Assembly Plant"
40
+ transactionType="buy" transactionFor="personal" />
41
+ </rowset>
42
+ </result>
43
+ <cachedUntil>2010-01-08 20:46:47</cachedUntil>
44
+ </eveapi>
@@ -0,0 +1,15 @@
1
+ <eveapi version="2">
2
+ <currentTime>2007-06-18 22:40:16</currentTime>
3
+ <result>
4
+ <rowset name="accounts" key="accountID" columns="accountID,accountKey,balance">
5
+ <row accountID="4759" accountKey="1000" balance="74171957.08"/>
6
+ <row accountID="5687" accountKey="1001" balance="6.05"/>
7
+ <row accountID="5688" accountKey="1002" balance="0.00"/>
8
+ <row accountID="5689" accountKey="1003" balance="17349111.00"/>
9
+ <row accountID="5690" accountKey="1004" balance="0.00"/>
10
+ <row accountID="5691" accountKey="1005" balance="0.00"/>
11
+ <row accountID="5692" accountKey="1006" balance="0.00"/>
12
+ </rowset>
13
+ </result>
14
+ <cachedUntil>2007-06-18 22:40:26</cachedUntil>
15
+ </eveapi>