dsander-reve 0.0.117 → 0.0.118
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -15
- data/init.rb +0 -1
- data/lib/reve/classes.rb +0 -57
- data/lib/reve/extensions.rb +5 -4
- data/lib/reve.rb +3 -42
- data/test/test_reve.rb +3 -61
- metadata +99 -103
- data/test/xml/mail_messages.xml +0 -15
- data/test/xml/mailing_lists.xml +0 -12
- data/test/xml/notifications.xml +0 -11
data/Rakefile
CHANGED
@@ -58,11 +58,11 @@ elsif File.exists?('.git')
|
|
58
58
|
begin
|
59
59
|
require 'jeweler'
|
60
60
|
Jeweler::Tasks.new do |s|
|
61
|
-
s.name = "
|
61
|
+
s.name = "reve"
|
62
62
|
s.rubyforge_project = "reve"
|
63
63
|
s.author = "Lisa Seelye"
|
64
64
|
s.email = "lisa@thedoh.com"
|
65
|
-
s.homepage = "http://
|
65
|
+
s.homepage = "http://revetrac.crudvision.com"
|
66
66
|
s.platform = Gem::Platform::RUBY
|
67
67
|
s.summary = "Reve is a Ruby library to interface with the Eve Online API"
|
68
68
|
s.files = FileList["Rakefile","LICENSE", "lib/**/*.rb","reve.rb","tester.rb","init.rb"].to_a
|
@@ -72,21 +72,8 @@ elsif File.exists?('.git')
|
|
72
72
|
s.extra_rdoc_files = ["ChangeLog"]
|
73
73
|
s.add_dependency("hpricot",">= 0.6")
|
74
74
|
end
|
75
|
-
Jeweler::GemcutterTasks.new
|
76
75
|
rescue LoadError
|
77
76
|
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
78
77
|
end
|
79
78
|
end
|
80
79
|
|
81
|
-
begin
|
82
|
-
require 'rcov/rcovtask'
|
83
|
-
Rcov::RcovTask.new do |test|
|
84
|
-
test.libs << 'test'
|
85
|
-
test.pattern = 'test/**/test_*.rb'
|
86
|
-
test.verbose = true
|
87
|
-
end
|
88
|
-
rescue LoadError
|
89
|
-
task :rcov do
|
90
|
-
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
91
|
-
end
|
92
|
-
end
|
data/init.rb
CHANGED
data/lib/reve/classes.rb
CHANGED
@@ -1383,62 +1383,5 @@ module Reve #:nodoc:
|
|
1383
1383
|
# See WalletTransaction
|
1384
1384
|
class PersonalWalletTransaction < WalletTransaction
|
1385
1385
|
end
|
1386
|
-
|
1387
|
-
# Represents a MailingList for
|
1388
|
-
# Reve::API#personal_mailing_lists
|
1389
|
-
# Attributes
|
1390
|
-
# * id ( Fixnum ) - ID of the MailingList (use this in the Reve::API#mail_messages call)
|
1391
|
-
# * name ( String ) - Name of the MailingList
|
1392
|
-
class MailingList
|
1393
|
-
attr_reader :id, :name
|
1394
|
-
def initialize(elem) #:nodoc:
|
1395
|
-
@id = elem['listID'].to_i
|
1396
|
-
@name = elem['displayName']
|
1397
|
-
end
|
1398
|
-
end
|
1399
|
-
|
1400
|
-
# Represents a MailMessage for
|
1401
|
-
# Reve::API#personal_mail_messages
|
1402
|
-
# Attributes
|
1403
|
-
# * id ( Fixnum ) - The unique message ID number.
|
1404
|
-
# * sender_id ( Fixnum ) - The character ID of the message originator. (use Reve::API#character_name to get their names)
|
1405
|
-
# * send_date ( Time ) - The date the message was sent.
|
1406
|
-
# * title ( String ) - The title of the message
|
1407
|
-
# * to_corp_or_alliance_id ( Fixnum ) - The ID of a corporation/alliance that the message was sent to.
|
1408
|
-
# * to_character_ids ( [Fixnum] ) - Array of character IDs of the characters that received the message.
|
1409
|
-
# * to_list_ids ( [Fixnum] ) - Array of mailing lists that the mail was sent to. (use Reve::API#personal_mailing_lists to get their names)
|
1410
|
-
# * read ( Boolean ) - Whether the mail/notification has been read in the EVE client. This does not change when you get it through the API.
|
1411
|
-
class MailMessage
|
1412
|
-
attr_reader :id, :name, :sender_id, :send_date, :title, :to_corp_or_alliance_id, :to_character_ids, :to_list_ids, :read
|
1413
|
-
def initialize(elem) #:nodoc:
|
1414
|
-
@id = elem['messageID'].to_i
|
1415
|
-
@sender_id = elem['senderID'].to_i
|
1416
|
-
@send_date = elem['sentDate'].to_time
|
1417
|
-
@title = elem['title']
|
1418
|
-
@to_corp_or_alliance_id = elem['toCorpOrAllianceID'] == '' ? nil : elem['toCorpOrAllianceID'].to_i
|
1419
|
-
@to_character_ids = elem['toCharacterIDs'] == '' ? nil : elem['toCharacterIDs'].split(',').collect {|id| id.to_i }
|
1420
|
-
@to_list_ids = elem['toListIDs'] == '' ? nil : elem['toListIDs'].split(',').collect {|id| id.to_i }
|
1421
|
-
@read = elem['read'] == '1'
|
1422
|
-
end
|
1423
|
-
end
|
1424
|
-
|
1425
|
-
# Represents a Notification for
|
1426
|
-
# Reve::API#personal_notifications
|
1427
|
-
# Attributes
|
1428
|
-
# * id ( Fixnum ) - The unique notification ID number.
|
1429
|
-
# * notification_type_id ( Fixnum ) - The notification type indicates what has happened but not who performed the action in question nor upon whom the action was performed. See http://wiki.eve-id.net/APIv2_Char_Notifications_XML for a list of ids
|
1430
|
-
# * sender_id ( Fixnum ) - TThe ID of the entity that sent the notification.
|
1431
|
-
# * send_date ( Time ) - The ID of the entity that sent the notification.
|
1432
|
-
# * read ( Boolean ) - Whether the notification has been read in the EVE client. This does not change when you get it through the API.
|
1433
|
-
class Notification
|
1434
|
-
attr_reader :id, :name, :notification_type_id, :sender_id, :send_date, :read
|
1435
|
-
def initialize(elem) #:nodoc:
|
1436
|
-
@id = elem['notificationID'].to_i
|
1437
|
-
@notification_type_id = elem['typeID'].to_i
|
1438
|
-
@sender_id = elem['senderID'].to_i
|
1439
|
-
@send_date = elem['sentDate'].to_time
|
1440
|
-
@read = elem['read'] == '1'
|
1441
|
-
end
|
1442
|
-
end
|
1443
1386
|
end
|
1444
1387
|
end
|
data/lib/reve/extensions.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
require '
|
1
|
+
require 'parsedate'
|
2
2
|
|
3
3
|
module Reve #:nodoc:
|
4
4
|
# All of these are shamelessly nicked from Ruby on Rails.
|
@@ -78,11 +78,12 @@ module Reve #:nodoc:
|
|
78
78
|
cattr_writer(*syms)
|
79
79
|
end
|
80
80
|
end
|
81
|
+
|
81
82
|
module String
|
82
83
|
def to_time(form = :utc)
|
83
84
|
begin
|
84
|
-
|
85
|
-
rescue Exception
|
85
|
+
::Time.send(form, *ParseDate.parsedate(self))
|
86
|
+
rescue Exception
|
86
87
|
self
|
87
88
|
end
|
88
89
|
end
|
@@ -116,4 +117,4 @@ class Object
|
|
116
117
|
obj
|
117
118
|
end
|
118
119
|
alias_method :__rsend__, :rsend
|
119
|
-
end
|
120
|
+
end
|
data/lib/reve.rb
CHANGED
@@ -87,10 +87,7 @@ module Reve
|
|
87
87
|
@@corporate_medals_url = 'http://api.eve-online.com/corp/Medals.xml.aspx'
|
88
88
|
@@corp_member_medals_url = 'http://api.eve-online.com/corp/MemberMedals.xml.aspx'
|
89
89
|
@@server_status_url = 'http://api.eve-online.com/Server/ServerStatus.xml.aspx'
|
90
|
-
|
91
|
-
@@personal_mailing_lists_url = 'http://api.eve-online.com/char/mailinglists.xml.aspx'
|
92
|
-
@@personal_mail_messages_url = 'http://api.eve-online.com/char/MailMessages.xml.aspx'
|
93
|
-
|
90
|
+
|
94
91
|
cattr_accessor :character_sheet_url, :training_skill_url, :characters_url, :personal_wallet_journal_url,
|
95
92
|
:corporate_wallet_journal_url, :personal_wallet_trans_url, :corporate_wallet_trans_url,
|
96
93
|
:personal_wallet_balance_url, :corporate_wallet_balance_url, :member_tracking_url,
|
@@ -102,8 +99,7 @@ module Reve
|
|
102
99
|
:personal_faction_war_stats_url, :corporate_faction_war_stats_url,
|
103
100
|
:general_faction_war_stats_url, :top_faction_war_stats_url, :faction_war_occupancy_url,
|
104
101
|
:certificate_tree_url, :character_medals_url, :corporate_medals_url,
|
105
|
-
:corp_member_medals_url, :server_status_url, :skill_queue_url, :corporation_member_security_url
|
106
|
-
:personal_notification_url, :personal_mailing_lists_url, :personal_mail_messages_url
|
102
|
+
:corp_member_medals_url, :server_status_url, :skill_queue_url, :corporation_member_security_url
|
107
103
|
|
108
104
|
|
109
105
|
attr_accessor :key, :userid, :charid
|
@@ -859,42 +855,7 @@ module Reve
|
|
859
855
|
|
860
856
|
cs
|
861
857
|
end
|
862
|
-
|
863
|
-
# Gets the characters notifications. Returns a list of
|
864
|
-
# Reve::Classes::Notification
|
865
|
-
# Expects:
|
866
|
-
# * characterid ( Integer | String ) - Get the Notifications for this Character
|
867
|
-
# See also: Reve::Classes::Notification
|
868
|
-
def personal_notifications(opts = { :characterid => nil })
|
869
|
-
args = postfields(opts)
|
870
|
-
h = compute_hash(args.merge(:url => @@personal_notification_url))
|
871
|
-
return h if h
|
872
|
-
process_query(Reve::Classes::Notification, opts[:url] || @@personal_notification_url,false,args)
|
873
|
-
end
|
874
|
-
|
875
|
-
# Gets the characters notifications. Returns a list of
|
876
|
-
# Reve::Classes::MailingList
|
877
|
-
# Expects:
|
878
|
-
# * characterid ( Integer | String ) - Get the MailingLists for this Character
|
879
|
-
# See also: Reve::Classes::MailingList
|
880
|
-
def personal_mailing_lists(opts = { :characterid => nil })
|
881
|
-
args = postfields(opts)
|
882
|
-
h = compute_hash(args.merge(:url => @@personal_mailing_lists_url))
|
883
|
-
return h if h
|
884
|
-
process_query(Reve::Classes::MailingList, opts[:url] || @@personal_mailing_lists_url,false,args)
|
885
|
-
end
|
886
|
-
|
887
|
-
# Gets the characters notifications. Returns a list of
|
888
|
-
# Reve::Classes::MailMessage
|
889
|
-
# Expects:
|
890
|
-
# * characterid ( Integer | String ) - Get the MailMessages for this Character
|
891
|
-
# See also: Reve::Classes::MailMessage
|
892
|
-
def personal_mail_messages(opts = { :characterid => nil })
|
893
|
-
args = postfields(opts)
|
894
|
-
h = compute_hash(args.merge(:url => @@personal_mail_messages_url))
|
895
|
-
return h if h
|
896
|
-
process_query(Reve::Classes::MailMessage, opts[:url] || @@personal_mail_messages_url,false,args)
|
897
|
-
end
|
858
|
+
|
898
859
|
|
899
860
|
protected
|
900
861
|
# Sets up the post fields for Net::HTTP::Get hash for process_query method.
|
data/test/test_reve.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
|
-
# Tests designed to run with autotest.
|
2
1
|
require 'test/unit'
|
3
|
-
require 'reve'
|
2
|
+
require '../lib/reve'
|
4
3
|
require 'fileutils' # for saving downloaded XML
|
5
4
|
|
6
5
|
XML_BASE = File.join(File.dirname(__FILE__),'xml/')
|
@@ -1071,63 +1070,6 @@ class TestReve < Test::Unit::TestCase
|
|
1071
1070
|
|
1072
1071
|
|
1073
1072
|
|
1074
|
-
end
|
1075
|
-
|
1076
|
-
def test_personal_notifications
|
1077
|
-
Reve::API.personal_notification_url = XML_BASE + 'notifications.xml'
|
1078
|
-
notifications = nil
|
1079
|
-
assert_nothing_raised do
|
1080
|
-
notifications = @api.personal_notifications(:characterid => 1)
|
1081
|
-
end
|
1082
|
-
assert_equal 2, notifications.length
|
1083
|
-
assert_equal Reve::Classes::Notification, notifications.first.class
|
1084
|
-
assert_equal 200076684, notifications.first.sender_id
|
1085
|
-
assert_equal 16, notifications.first.notification_type_id
|
1086
|
-
assert_equal Time.parse('2009-12-02 10:54:00 UTC'), notifications.first.send_date
|
1087
|
-
end
|
1088
|
-
|
1089
|
-
def test_personal_mailing_lists
|
1090
|
-
Reve::API.personal_mailing_lists_url = XML_BASE + 'mailing_lists.xml'
|
1091
|
-
lists = nil
|
1092
|
-
assert_nothing_raised do
|
1093
|
-
lists = @api.personal_mailing_lists(:characterid => 1)
|
1094
|
-
end
|
1095
|
-
assert_equal 3, lists.length
|
1096
|
-
assert_equal Reve::Classes::MailingList, lists.first.class
|
1097
|
-
assert_equal 128250439, lists.first.id
|
1098
|
-
assert_equal 'EVETycoonMail', lists.first.name
|
1099
|
-
assert_equal 141157801, lists.last.id
|
1100
|
-
end
|
1101
|
-
|
1102
|
-
def test_personal_mail_messages
|
1103
|
-
Reve::API.personal_mail_messages_url = XML_BASE + 'mail_messages.xml'
|
1104
|
-
mails = nil
|
1105
|
-
assert_nothing_raised do
|
1106
|
-
mails = @api.personal_mail_messages(:characterid => 1)
|
1107
|
-
end
|
1108
|
-
assert_equal 5, mails.length
|
1109
|
-
assert_equal Reve::Classes::MailMessage, mails.first.class
|
1110
|
-
# Corp Mail
|
1111
|
-
assert_equal 1, mails.first.sender_id
|
1112
|
-
assert_equal Time.parse('2009-12-01 01:04:00 UTC'), mails.first.send_date
|
1113
|
-
assert_equal "Corp mail", mails.first.title
|
1114
|
-
assert_equal 4, mails.first.to_corp_or_alliance_id
|
1115
|
-
assert_equal nil, mails.first.to_character_ids
|
1116
|
-
assert_equal nil, mails.first.to_list_ids
|
1117
|
-
assert_equal true, mails.first.read
|
1118
|
-
# Personal Mail
|
1119
|
-
assert_equal nil, mails[1].to_corp_or_alliance_id
|
1120
|
-
assert_equal [5], mails[1].to_character_ids
|
1121
|
-
assert_equal nil, mails[1].to_list_ids
|
1122
|
-
# list Mail
|
1123
|
-
assert_equal nil, mails[2].to_corp_or_alliance_id
|
1124
|
-
assert_equal nil, mails[2].to_character_ids
|
1125
|
-
assert_equal [128250439], mails[2].to_list_ids
|
1126
|
-
assert_equal false, mails[2].read
|
1127
|
-
# multi personal
|
1128
|
-
assert_equal [5,6,7], mails[3].to_character_ids
|
1129
|
-
# multi list
|
1130
|
-
assert_equal [128250439,141157801], mails[4].to_list_ids
|
1131
1073
|
end
|
1132
1074
|
|
1133
1075
|
# Can we reassign a URL?
|
@@ -1221,7 +1163,7 @@ class TestReve < Test::Unit::TestCase
|
|
1221
1163
|
kills = @api.send(meth,{:url =>url})
|
1222
1164
|
end
|
1223
1165
|
assert_equal 25, kills.size
|
1224
|
-
assert_equal 25, kills.collect { |k| k.victim.name }.
|
1166
|
+
assert_equal 25, kills.collect { |k| k.victim.name }.nitems # i should have 10 good victim names to match with 10 kills
|
1225
1167
|
|
1226
1168
|
# Process the Kills here to get the number of "Contained Losses" - KillLoss that are contained within another
|
1227
1169
|
# KillLoss (like a Giant Secure Container); there should only be one contained loss and should be
|
@@ -1234,7 +1176,7 @@ class TestReve < Test::Unit::TestCase
|
|
1234
1176
|
attacker_names = kills.collect { |k| k.attackers.collect { |a| a.name } }.flatten
|
1235
1177
|
assert_equal 98, attacker_names.size # total of 25 attackers (24 players + 1 NPC)
|
1236
1178
|
assert_equal 2, attacker_names.grep(nil).size # npc exists once
|
1237
|
-
assert_equal 96, attacker_names.
|
1179
|
+
assert_equal 96, attacker_names.nitems # 24 player attackers
|
1238
1180
|
|
1239
1181
|
assert_kind_of Integer, kills.first.victim.faction_id
|
1240
1182
|
assert_kind_of String, kills.first.victim.faction_name
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dsander-reve
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.118
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lisa Seelye
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-06-11 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -41,10 +41,9 @@ files:
|
|
41
41
|
- reve.rb
|
42
42
|
- tester.rb
|
43
43
|
- ChangeLog
|
44
|
-
has_rdoc:
|
45
|
-
homepage: http://
|
46
|
-
licenses:
|
47
|
-
|
44
|
+
has_rdoc: false
|
45
|
+
homepage: http://revetrac.crudvision.com
|
46
|
+
licenses:
|
48
47
|
post_install_message:
|
49
48
|
rdoc_options:
|
50
49
|
- --charset=UTF-8
|
@@ -71,122 +70,119 @@ specification_version: 3
|
|
71
70
|
summary: Reve is a Ruby library to interface with the Eve Online API
|
72
71
|
test_files:
|
73
72
|
- test/test_reve.rb
|
74
|
-
- test/xml/
|
75
|
-
- test/xml/
|
76
|
-
- test/xml/
|
77
|
-
- test/xml/
|
78
|
-
- test/xml/
|
79
|
-
- test/xml/
|
80
|
-
- test/xml/
|
81
|
-
- test/xml/
|
82
|
-
- test/xml/
|
73
|
+
- test/xml/corp_membersecurity.xml
|
74
|
+
- test/xml/corporate_wallet_transactions.xml
|
75
|
+
- test/xml/starbase_fuel.xml
|
76
|
+
- test/xml/corporate_assets_list.xml
|
77
|
+
- test/xml/characters.xml
|
78
|
+
- test/xml/mapjumps.xml
|
79
|
+
- test/xml/wallet_balance.xml
|
80
|
+
- test/xml/mapkills.xml
|
81
|
+
- test/xml/server_status.xml
|
82
|
+
- test/xml/skill_in_training-none.xml
|
83
|
+
- test/xml/character_sheet.xml
|
84
|
+
- test/xml/characterid.xml
|
85
|
+
- test/xml/sovereignty.xml
|
86
|
+
- test/xml/charactername.xml
|
87
|
+
- test/xml/corporate_wallet_journal.xml
|
88
|
+
- test/xml/assets.xml
|
89
|
+
- test/xml/corp_member_medals.xml
|
90
|
+
- test/xml/market_transactions.xml
|
91
|
+
- test/xml/eve_facwartopstats.xml
|
92
|
+
- test/xml/corporate_market_orders.xml
|
83
93
|
- test/xml/errors/error_100.xml
|
84
|
-
- test/xml/errors/
|
85
|
-
- test/xml/errors/
|
86
|
-
- test/xml/errors/
|
87
|
-
- test/xml/errors/error_520.xml
|
94
|
+
- test/xml/errors/error_101.xml
|
95
|
+
- test/xml/errors/error_102.xml
|
96
|
+
- test/xml/errors/error_103.xml
|
88
97
|
- test/xml/errors/error_104.xml
|
89
|
-
- test/xml/errors/
|
90
|
-
- test/xml/errors/
|
91
|
-
- test/xml/errors/
|
98
|
+
- test/xml/errors/error_105.xml
|
99
|
+
- test/xml/errors/error_106.xml
|
100
|
+
- test/xml/errors/error_107.xml
|
101
|
+
- test/xml/errors/error_108.xml
|
102
|
+
- test/xml/errors/error_109.xml
|
103
|
+
- test/xml/errors/error_110.xml
|
104
|
+
- test/xml/errors/error_111.xml
|
105
|
+
- test/xml/errors/error_112.xml
|
106
|
+
- test/xml/errors/error_113.xml
|
107
|
+
- test/xml/errors/error_114.xml
|
108
|
+
- test/xml/errors/error_115.xml
|
109
|
+
- test/xml/errors/error_116.xml
|
92
110
|
- test/xml/errors/error_117.xml
|
93
|
-
- test/xml/errors/
|
94
|
-
- test/xml/errors/
|
95
|
-
- test/xml/errors/
|
96
|
-
- test/xml/errors/error_523.xml
|
111
|
+
- test/xml/errors/error_118.xml
|
112
|
+
- test/xml/errors/error_119.xml
|
113
|
+
- test/xml/errors/error_120.xml
|
97
114
|
- test/xml/errors/error_121.xml
|
98
|
-
- test/xml/errors/error_515.xml
|
99
|
-
- test/xml/errors/error_510.xml
|
100
|
-
- test/xml/errors/error_999.xml
|
101
|
-
- test/xml/errors/error_103.xml
|
102
|
-
- test/xml/errors/error_525.xml
|
103
|
-
- test/xml/errors/error_106.xml
|
104
|
-
- test/xml/errors/error_205.xml
|
105
|
-
- test/xml/errors/error_212.xml
|
106
|
-
- test/xml/errors/error_124.xml
|
107
|
-
- test/xml/errors/error_512.xml
|
108
115
|
- test/xml/errors/error_122.xml
|
109
|
-
- test/xml/errors/
|
116
|
+
- test/xml/errors/error_123.xml
|
117
|
+
- test/xml/errors/error_124.xml
|
110
118
|
- test/xml/errors/error_125.xml
|
111
|
-
- test/xml/errors/error_500.xml
|
112
|
-
- test/xml/errors/error_902.xml
|
113
119
|
- test/xml/errors/error_200.xml
|
120
|
+
- test/xml/errors/error_201.xml
|
121
|
+
- test/xml/errors/error_202.xml
|
122
|
+
- test/xml/errors/error_203.xml
|
123
|
+
- test/xml/errors/error_204.xml
|
124
|
+
- test/xml/errors/error_205.xml
|
125
|
+
- test/xml/errors/error_206.xml
|
114
126
|
- test/xml/errors/error_207.xml
|
115
|
-
- test/xml/errors/
|
116
|
-
- test/xml/errors/
|
127
|
+
- test/xml/errors/error_208.xml
|
128
|
+
- test/xml/errors/error_209.xml
|
129
|
+
- test/xml/errors/error_210.xml
|
130
|
+
- test/xml/errors/error_211.xml
|
131
|
+
- test/xml/errors/error_212.xml
|
132
|
+
- test/xml/errors/error_900.xml
|
133
|
+
- test/xml/errors/error_213.xml
|
134
|
+
- test/xml/errors/error_901.xml
|
117
135
|
- test/xml/errors/error_214.xml
|
118
|
-
- test/xml/errors/
|
136
|
+
- test/xml/errors/error_902.xml
|
119
137
|
- test/xml/errors/error_903.xml
|
120
|
-
- test/xml/errors/
|
121
|
-
- test/xml/errors/
|
122
|
-
- test/xml/errors/error_505.xml
|
123
|
-
- test/xml/errors/error_508.xml
|
124
|
-
- test/xml/errors/error_506.xml
|
125
|
-
- test/xml/errors/error_114.xml
|
126
|
-
- test/xml/errors/error_108.xml
|
127
|
-
- test/xml/errors/error_208.xml
|
128
|
-
- test/xml/errors/error_513.xml
|
129
|
-
- test/xml/errors/error_123.xml
|
138
|
+
- test/xml/errors/error_999.xml
|
139
|
+
- test/xml/errors/error_500.xml
|
130
140
|
- test/xml/errors/error_501.xml
|
131
|
-
- test/xml/errors/error_524.xml
|
132
141
|
- test/xml/errors/error_502.xml
|
133
142
|
- test/xml/errors/error_503.xml
|
134
|
-
- test/xml/errors/error_900.xml
|
135
|
-
- test/xml/errors/error_110.xml
|
136
|
-
- test/xml/errors/error_109.xml
|
137
|
-
- test/xml/errors/error_113.xml
|
138
|
-
- test/xml/errors/error_211.xml
|
139
|
-
- test/xml/errors/error_522.xml
|
140
|
-
- test/xml/errors/error_201.xml
|
141
|
-
- test/xml/errors/error_206.xml
|
142
|
-
- test/xml/errors/error_115.xml
|
143
|
-
- test/xml/errors/error_519.xml
|
144
|
-
- test/xml/errors/error_107.xml
|
145
|
-
- test/xml/errors/error_116.xml
|
146
143
|
- test/xml/errors/error_504.xml
|
147
|
-
- test/xml/errors/
|
148
|
-
- test/xml/
|
149
|
-
- test/xml/
|
150
|
-
- test/xml/
|
151
|
-
- test/xml/
|
152
|
-
- test/xml/
|
153
|
-
- test/xml/
|
154
|
-
- test/xml/
|
144
|
+
- test/xml/errors/error_505.xml
|
145
|
+
- test/xml/errors/error_506.xml
|
146
|
+
- test/xml/errors/error_507.xml
|
147
|
+
- test/xml/errors/error_508.xml
|
148
|
+
- test/xml/errors/error_509.xml
|
149
|
+
- test/xml/errors/error_510.xml
|
150
|
+
- test/xml/errors/error_511.xml
|
151
|
+
- test/xml/errors/error_512.xml
|
152
|
+
- test/xml/errors/error_513.xml
|
153
|
+
- test/xml/errors/error_514.xml
|
154
|
+
- test/xml/errors/error_515.xml
|
155
|
+
- test/xml/errors/error_516.xml
|
156
|
+
- test/xml/errors/error_517.xml
|
157
|
+
- test/xml/errors/error_518.xml
|
158
|
+
- test/xml/errors/error_519.xml
|
159
|
+
- test/xml/errors/error_520.xml
|
160
|
+
- test/xml/errors/error_521.xml
|
161
|
+
- test/xml/errors/error_522.xml
|
162
|
+
- test/xml/errors/error_523.xml
|
163
|
+
- test/xml/errors/error_524.xml
|
164
|
+
- test/xml/errors/error_525.xml
|
155
165
|
- test/xml/corporate_wallet_balance.xml
|
156
|
-
- test/xml/
|
157
|
-
- test/xml/
|
158
|
-
- test/xml/
|
159
|
-
- test/xml/corp_facwarstats.xml
|
160
|
-
- test/xml/starbases.xml
|
161
|
-
- test/xml/errors.xml
|
166
|
+
- test/xml/industryjobs.xml
|
167
|
+
- test/xml/member_tracking.xml
|
168
|
+
- test/xml/certificate_tree.xml
|
162
169
|
- test/xml/marketorders.xml
|
163
|
-
- test/xml/
|
164
|
-
- test/xml/characters.xml
|
170
|
+
- test/xml/eve_facwarstats.xml
|
165
171
|
- test/xml/nonmember_corpsheet.xml
|
166
|
-
- test/xml/
|
167
|
-
- test/xml/char_medals.xml
|
168
|
-
- test/xml/sovereignty.xml
|
169
|
-
- test/xml/skill_in_training-amarr-titan.xml
|
170
|
-
- test/xml/mapkills.xml
|
171
|
-
- test/xml/corp_member_medals.xml
|
172
|
+
- test/xml/errors.xml
|
172
173
|
- test/xml/skilltree.xml
|
173
|
-
- test/xml/
|
174
|
-
- test/xml/server_status.xml
|
175
|
-
- test/xml/char_facwarstats.xml
|
176
|
-
- test/xml/charactername.xml
|
177
|
-
- test/xml/notifications.xml
|
178
|
-
- test/xml/kills.xml
|
179
|
-
- test/xml/market_transactions.xml
|
180
|
-
- test/xml/eve_facwarstats.xml
|
181
|
-
- test/xml/corporate_wallet_journal.xml
|
182
|
-
- test/xml/assets.xml
|
174
|
+
- test/xml/map_facwarsystems.xml
|
183
175
|
- test/xml/corporation_sheet.xml
|
184
|
-
- test/xml/
|
176
|
+
- test/xml/alliances.xml
|
177
|
+
- test/xml/char_facwarstats.xml
|
178
|
+
- test/xml/char_medals.xml
|
179
|
+
- test/xml/starbases.xml
|
180
|
+
- test/xml/corp_facwarstats.xml
|
181
|
+
- test/xml/skill_in_training-amarr-titan.xml
|
185
182
|
- test/xml/reftypes.xml
|
186
|
-
- test/xml/
|
187
|
-
- test/xml/character_sheet.xml
|
183
|
+
- test/xml/corp_medals.xml
|
188
184
|
- test/xml/badxml.xml
|
189
|
-
- test/xml/
|
190
|
-
- test/xml/
|
185
|
+
- test/xml/skill_queue.xml
|
186
|
+
- test/xml/wallet_journal.xml
|
187
|
+
- test/xml/kills.xml
|
191
188
|
- test/xml/conqurable_stations.xml
|
192
|
-
- test/xml/corporate_market_orders.xml
|
data/test/xml/mail_messages.xml
DELETED
@@ -1,15 +0,0 @@
|
|
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="1" sentDate="2009-12-01 01:04:00" title="Corp mail" toCorpOrAllianceID="4" toCharacterIDs="" toListIDs="" read="1" />
|
7
|
-
<row messageID="290285275" senderID="2" sentDate="2009-12-01 01:04:00" title="Personal mail" toCorpOrAllianceID="" toCharacterIDs="5" toListIDs="" read="1" />
|
8
|
-
<row messageID="290285274" senderID="2" sentDate="2009-12-01 01:04:00" title="Message to mailing list" toCorpOrAllianceID="" toCharacterIDs="" toListIDs="128250439" read="0" />
|
9
|
-
<row messageID="290285278" senderID="2" sentDate="2009-12-01 01:04:00" title="Multi Personal mail" toCorpOrAllianceID="" toCharacterIDs="5,6,7" toListIDs="" read="1" />
|
10
|
-
<row messageID="290285279" senderID="2" sentDate="2009-12-01 01:04:00" title="Multi Message to mailing list" toCorpOrAllianceID="" toCharacterIDs="" toListIDs="128250439,141157801" read="0" />
|
11
|
-
</rowset>
|
12
|
-
</result>
|
13
|
-
<cachedUntil>2009-12-02 01:16:10</cachedUntil>
|
14
|
-
</eveapi>
|
15
|
-
|
data/test/xml/mailing_lists.xml
DELETED
@@ -1,12 +0,0 @@
|
|
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>
|
data/test/xml/notifications.xml
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<eveapi version="2">
|
3
|
-
<currentTime>2009-12-03 20:34:09</currentTime>
|
4
|
-
<result>
|
5
|
-
<rowset name="notifications" key="notificationID" columns="notificationID,typeID,senderID,sentDate,read">
|
6
|
-
<row notificationID="290369614" typeID="16" senderID="200076684" sentDate="2009-12-02 10:54:00" read="1"/>
|
7
|
-
<row notificationID="289645395" typeID="1" senderID="1000064" sentDate="2009-11-26 01:34:00" read="0"/>
|
8
|
-
</rowset>
|
9
|
-
</result>
|
10
|
-
<cachedUntil>2009-12-03 21:04:09</cachedUntil>
|
11
|
-
</eveapi>
|