eve_online 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +6 -2
- data/LICENSE.txt +1 -1
- data/README.md +197 -132
- data/eve_online.gemspec +3 -5
- data/lib/eve_online.rb +11 -3
- data/lib/eve_online/account/api_key_info.rb +4 -5
- data/lib/eve_online/account/characters.rb +3 -3
- data/lib/eve_online/account/status.rb +5 -7
- data/lib/eve_online/base.rb +6 -31
- data/lib/eve_online/base_crest.rb +11 -0
- data/lib/eve_online/base_xml.rb +32 -0
- data/lib/eve_online/blueprint.rb +1 -1
- data/lib/eve_online/bookmark.rb +69 -0
- data/lib/eve_online/bookmark_folder.rb +24 -0
- data/lib/eve_online/characters/account_balance.rb +3 -3
- data/lib/eve_online/characters/asset_list.rb +30 -6
- data/lib/eve_online/characters/blueprints.rb +3 -3
- data/lib/eve_online/characters/bookmarks.rb +29 -4
- data/lib/eve_online/characters/calendar_event_attendees.rb +3 -3
- data/lib/eve_online/characters/character_sheet.rb +3 -3
- data/lib/eve_online/characters/contact_list.rb +3 -3
- data/lib/eve_online/characters/contact_notifications.rb +3 -3
- data/lib/eve_online/characters/skill_in_training.rb +14 -17
- data/lib/eve_online/characters/upcoming_calendar_events.rb +3 -3
- data/lib/eve_online/eve/character_id.rb +41 -0
- data/lib/eve_online/event.rb +1 -2
- data/lib/eve_online/event_response_object.rb +4 -4
- data/lib/eve_online/item.rb +49 -0
- data/lib/eve_online/server/status.rb +3 -3
- data/lib/eve_online/sovereignty/campaigns.rb +28 -0
- data/lib/eve_online/version.rb +1 -1
- metadata +18 -14
- data/lib/eve_online/eve/skill_tree.rb +0 -12
- data/lib/eve_online/skill.rb +0 -5
- data/lib/eve_online/skill_group.rb +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 550ff8b06139247f11d5f8df7052b5632ca84bdb
|
4
|
+
data.tar.gz: 12005d14ef440171b41d0641a5aea4df9018613a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc2b79f8ed31a9c6160f40054197005ef141597812f3f9d0a284526d5b71208e60f52baa4cdd16d9ec29628682adaa9d43d2564ce4473cf1a35f31459f8ae653
|
7
|
+
data.tar.gz: e3ac3fff5c946bab6c082d30d46eb14ee8a247075c9c68ee4905be6c8244a91744f514cc1d20307550034e696c59c097d0af21820c48b03cb0329362d0d9d8b6
|
data/.travis.yml
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -9,6 +9,8 @@
|
|
9
9
|
|
10
10
|
This gem implement Ruby API for EveOnline MMORPG. Both, XML and CREST API.
|
11
11
|
|
12
|
+
You will need to add xml parser to your Gemfile to use this gem. E.g. nokogiri. Or any other xml parser which are supported by nori.
|
13
|
+
|
12
14
|
## Installation
|
13
15
|
|
14
16
|
Add this line to your application's Gemfile:
|
@@ -37,21 +39,6 @@ Or install it yourself as:
|
|
37
39
|
|
38
40
|
## Usage
|
39
41
|
|
40
|
-
Server status:
|
41
|
-
|
42
|
-
```ruby
|
43
|
-
status = EveOnline::Server::Status.new
|
44
|
-
|
45
|
-
status.as_json
|
46
|
-
# => {:current_time=>Mon, 23 Nov 2015 18:18:29 UTC +00:00, :cached_until=>Mon, 23 Nov 2015 18:19:44 UTC +00:00, :server_open=>true, :online_players=>25611}
|
47
|
-
|
48
|
-
status.current_time # => Mon, 23 Nov 2015 18:18:29 UTC +00:00
|
49
|
-
status.cached_until # => Mon, 23 Nov 2015 18:19:44 UTC +00:00
|
50
|
-
status.server_open? # => true
|
51
|
-
status.online_players # => 25611
|
52
|
-
status.version # => 2
|
53
|
-
```
|
54
|
-
|
55
42
|
Account status:
|
56
43
|
|
57
44
|
```ruby
|
@@ -108,6 +95,9 @@ api_key_info = EveOnline::Account::ApiKeyInfo.new(key_id, v_code)
|
|
108
95
|
|
109
96
|
api_key_info.expires # => Fri, 02 Dec 2016 18:13:59 UTC +00:00
|
110
97
|
api_key_info.type # => "Account"
|
98
|
+
# TODO: check this
|
99
|
+
# irb(main):029:0> api_key_info.type
|
100
|
+
# => "Character"
|
111
101
|
api_key_info.access_mask # => 1073741823
|
112
102
|
api_key_info.version # => 2
|
113
103
|
api_key_info.current_time # => Mon, 30 Nov 2015 23:00:38 UTC +00:00
|
@@ -151,7 +141,30 @@ account_balance.version # => 2
|
|
151
141
|
|
152
142
|
Asset List:
|
153
143
|
```ruby
|
154
|
-
|
144
|
+
key_id = 1234567
|
145
|
+
v_code = '9ce9970b18d07586ead3d052e5b83bc8db303171a28a6f754cf35d9e6b66af17'
|
146
|
+
character_id = 90729314
|
147
|
+
|
148
|
+
asset_list = EveOnline::Characters::AssetList.new(key_id, v_code, character_id)
|
149
|
+
|
150
|
+
asset_list.current_time # => Mon, 29 Feb 2016 21:51:38 UTC +00:00
|
151
|
+
asset_list.cached_until # => Tue, 01 Mar 2016 03:48:38 UTC +00:00
|
152
|
+
asset_list.version # => 2
|
153
|
+
|
154
|
+
asset_list.assets.size # => 642
|
155
|
+
|
156
|
+
asset = asset_list.assets.first
|
157
|
+
|
158
|
+
asset.as_json
|
159
|
+
# => {:item_id=>408887580, :location_id=>60000634, :type_id=>588, :quantity=>1, :flag=>4, :singleton=>1, :raw_quantity=>-1}
|
160
|
+
|
161
|
+
asset.item_id # => 408887580
|
162
|
+
asset.location_id # => 60000634
|
163
|
+
asset.type_id # => 588
|
164
|
+
asset.quantity # => 1
|
165
|
+
asset.flag # => 4
|
166
|
+
asset.singleton # => 1
|
167
|
+
asset.raw_quantity # => -1
|
155
168
|
```
|
156
169
|
|
157
170
|
Blueprints:
|
@@ -274,18 +287,57 @@ event.event_text # => "<b>Minmatar Control Tower</b> will run out of fuel and go
|
|
274
287
|
event.owner_type_id # => 2
|
275
288
|
```
|
276
289
|
|
277
|
-
|
290
|
+
Character Names ot IDs:
|
278
291
|
```ruby
|
279
|
-
|
292
|
+
input = ['Johnn Dillinger'] # => ["Johnn Dillinger"]
|
280
293
|
|
281
|
-
|
282
|
-
skill_tree.cached_until # => Tue, 22 Dec 2015 22:24:48 UTC +00:00
|
283
|
-
skill_tree.version # => 2
|
294
|
+
characters_ids = EveOnline::Eve::CharacterID.new(input)
|
284
295
|
|
285
|
-
#
|
296
|
+
characters_ids.current_time # => Mon, 11 Apr 2016 18:51:01 UTC +00:00
|
297
|
+
characters_ids.cached_until # => Wed, 11 May 2016 18:51:01 UTC +00:00
|
298
|
+
characters_ids.version # => 2
|
299
|
+
|
300
|
+
characters_ids.response # => {"eveapi"=>{"currentTime"=>"2016-04-11 18:51:01", "result"=>{"rowset"=>{"row"=>{"@name"=>"Johnn Dillinger", "@characterID"=>"1337512245"}, "@name"=>"characters", "@key"=>"characterID", "@columns"=>"name,characterID"}}, "cachedUntil"=>"2016-05-11 18:51:01", "@version"=>"2"}}
|
301
|
+
```
|
302
|
+
|
303
|
+
Server status:
|
286
304
|
|
305
|
+
```ruby
|
306
|
+
status = EveOnline::Server::Status.new
|
307
|
+
|
308
|
+
status.as_json
|
309
|
+
# => {:current_time=>Mon, 23 Nov 2015 18:18:29 UTC +00:00, :cached_until=>Mon, 23 Nov 2015 18:19:44 UTC +00:00, :server_open=>true, :online_players=>25611}
|
310
|
+
|
311
|
+
status.current_time # => Mon, 23 Nov 2015 18:18:29 UTC +00:00
|
312
|
+
status.cached_until # => Mon, 23 Nov 2015 18:19:44 UTC +00:00
|
313
|
+
status.server_open? # => true
|
314
|
+
status.online_players # => 25611
|
315
|
+
status.version # => 2
|
287
316
|
```
|
288
317
|
|
318
|
+
## CREST Examples
|
319
|
+
|
320
|
+
Sovereignty campaigns:
|
321
|
+
|
322
|
+
```ruby
|
323
|
+
campaigns = EveOnline::Sovereignty::Campaigns.new
|
324
|
+
|
325
|
+
campaigns.total_count # => 205
|
326
|
+
campaigns.page_count # => 1
|
327
|
+
|
328
|
+
campaigns.items.class # => Array
|
329
|
+
|
330
|
+
campaigns.items.size # => 205
|
331
|
+
|
332
|
+
campaigns.items.first
|
333
|
+
# => {"eventType_str"=>"1", "campaignID"=>21773, "eventType"=>1, "sourceSolarsystem"=>{"id_str"=>"30003629", "href"=>"https://crest-tq.eveonline.com/solarsystems/30003629/", "id"=>30003629, "name"=>"S-KSWL"}, "attackers"=>{"score"=>0.8}, "campaignID_str"=>"21773", "sourceItemID"=>1020806305659, "startTime"=>"2016-05-04T15:43:16", "sourceItemID_str"=>"1020806305659", "defender"=>{"defender"=>{"id_str"=>"99006297", "href"=>"https://crest-tq.eveonline.com/alliances/99006297/", "id"=>99006297, "name"=>"DRONE WALKERS"}, "score"=>0.2}, "constellation"=>{"id_str"=>"20000529", "href"=>"https://crest-tq.eveonline.com/constellations/20000529/", "id"=>20000529, "name"=>"TJ10-O"}}
|
334
|
+
```
|
335
|
+
|
336
|
+
## Useful links
|
337
|
+
|
338
|
+
* [TECHNICAL NOTE: INTEGER SIZES AND THE XML API](https://developers.eveonline.com/blog/article/technical-note-integer-sizes-and-the-xml-api)
|
339
|
+
* [THE END OF PUBLIC CREST AS WE KNOW IT](https://developers.eveonline.com/blog/article/the-end-of-public-crest-as-we-know-it)
|
340
|
+
|
289
341
|
## Development
|
290
342
|
|
291
343
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
@@ -298,21 +350,39 @@ Issue reports and pull requests are welcome on GitHub at https://github.com/biow
|
|
298
350
|
|
299
351
|
## Changelog
|
300
352
|
|
353
|
+
**v0.7.0**
|
354
|
+
|
355
|
+
* Drop `nokogiri` gem from gem dependency
|
356
|
+
* Add `json` gem for CREST API
|
357
|
+
* Add `EveOnline::Item` for handle items in AssetList
|
358
|
+
* [Asset List](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_assetlist.html)
|
359
|
+
* Remove unused `EveOneline::Skill` and `EveOnline::SkillGroup` classes
|
360
|
+
* Add `EveOnline::BookmarkFolder` class for handling bookmarks folders
|
361
|
+
* Add `EveOnline::Bookmark` class for handling EveOnline Bookmarks
|
362
|
+
* Remove unused `EveOnline::Eve::SkillTree` class
|
363
|
+
* Relax activesupport version requirement (now requires 3.0.0 or later)
|
364
|
+
* Respect EveOnline API guidelines. Set correct user agent.
|
365
|
+
* Add basic `EveOnline::Sovereignty::Campaigns` class
|
366
|
+
* Add basic `EveOnline::Eve::CharacterID` to handle character name to character id requests
|
367
|
+
* Add `EveOnline::BaseXML` as base for XML API
|
368
|
+
* Add `EveOnline::BaseCREST` as base for CREST API
|
369
|
+
* Citadel 1.0 updates
|
370
|
+
|
301
371
|
**v0.6.0**
|
302
372
|
|
303
373
|
* Add `EveOnline::EventResponseObject` class for handling EveOnline Event response values
|
304
374
|
* `EveOnline::Event#response` now returns symbols. e.g. `:undecided`
|
305
|
-
* [Character Blueprints](https://eveonline-third-party-documentation.readthedocs.
|
375
|
+
* [Character Blueprints](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_blueprints.html)
|
306
376
|
* Add `EveOnline::Blueprint` class for handling EveOnline Blueprints
|
307
|
-
* Add basic [Character Bookmarks](https://eveonline-third-party-documentation.readthedocs.
|
308
|
-
* [Characters SkillInTraining](https://eveonline-third-party-documentation.readthedocs.
|
377
|
+
* Add basic [Character Bookmarks](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_bookmarks.html)
|
378
|
+
* [Characters SkillInTraining](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_skillintraining.html)
|
309
379
|
|
310
380
|
**v0.5.0**
|
311
381
|
|
312
382
|
* Add `EveOnline::Event` class for handling EveOnline Events
|
313
383
|
* `EveOnline::Account::ApiKeyInfo#expires` now returns time with timezone
|
314
|
-
* [Upcoming Calendar Events](https://eveonline-third-party-documentation.readthedocs.
|
315
|
-
* Basic [Calendar Event Attendees](https://eveonline-third-party-documentation.readthedocs.
|
384
|
+
* [Upcoming Calendar Events](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_upcomingcalendarevents.html)
|
385
|
+
* Basic [Calendar Event Attendees](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_calendareventattendees.html)
|
316
386
|
|
317
387
|
**v0.4.0**:
|
318
388
|
|
@@ -321,155 +391,143 @@ Issue reports and pull requests are welcome on GitHub at https://github.com/biow
|
|
321
391
|
* `EveOnline::Account::Characters` and `EveOnline::Account::ApiKeyInfo` now supports multiple characters
|
322
392
|
* Fix `EveOnline::Characters::AccountBalance` class
|
323
393
|
* Fix `EveOnline::Characters::AccountBalance#account_key`
|
324
|
-
* Add
|
394
|
+
* Add `#as_json` methods
|
325
395
|
|
326
396
|
**v0.3.0**:
|
327
397
|
|
328
|
-
* [Characters](https://eveonline-third-party-documentation.readthedocs.org/en/latest/xmlapi/account_characters
|
398
|
+
* [Characters](https://eveonline-third-party-documentation.readthedocs.org/en/latest/xmlapi/account/account_characters.html)
|
329
399
|
* Refactoring and bug fixes
|
330
400
|
|
331
401
|
**v0.2.0**:
|
332
402
|
|
333
|
-
* [Account Balance](https://eveonline-third-party-documentation.readthedocs.
|
334
|
-
* [API Key Info](https://eveonline-third-party-documentation.readthedocs.
|
335
|
-
* [Account Status](https://eveonline-third-party-documentation.readthedocs.
|
403
|
+
* [Account Balance](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_accountbalance.html)
|
404
|
+
* [API Key Info](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/account/account_apikeyinfo.html)
|
405
|
+
* [Account Status](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/account/account_accountstatus.html)
|
336
406
|
|
337
407
|
**v0.1.0**:
|
338
408
|
|
339
|
-
* [Server Status](https://eveonline-third-party-documentation.readthedocs.
|
409
|
+
* [Server Status](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/server/serv_serverstatus.html)
|
340
410
|
|
341
411
|
## Implementation check list:
|
342
412
|
|
343
413
|
### Account
|
344
414
|
|
345
|
-
- [x] [Account Status](https://eveonline-third-party-documentation.readthedocs.
|
346
|
-
- [x] [API Key Info](https://eveonline-third-party-documentation.readthedocs.
|
347
|
-
- [x] [Characters](https://eveonline-third-party-documentation.readthedocs.
|
415
|
+
- [x] [Account Status](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/account/account_accountstatus.html)
|
416
|
+
- [x] [API Key Info](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/account/account_apikeyinfo.html)
|
417
|
+
- [x] [Characters](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/account/account_characters.html)
|
348
418
|
|
349
419
|
----
|
350
420
|
|
351
421
|
### Api
|
352
422
|
|
353
|
-
- [ ] [Call List (Access Mask reference)](https://eveonline-third-party-documentation.readthedocs.
|
423
|
+
- [ ] [Call List (Access Mask reference)](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/api/api_calllist.html)
|
354
424
|
|
355
425
|
----
|
356
426
|
|
357
427
|
### Character
|
358
428
|
|
359
|
-
- [x] [Account Balance](https://eveonline-third-party-documentation.readthedocs.
|
360
|
-
- [
|
361
|
-
- [x] [Blueprints](https://eveonline-third-party-documentation.readthedocs.
|
362
|
-
- [ ] [Bookmarks](https://eveonline-third-party-documentation.readthedocs.
|
363
|
-
- [ ] [Calendar Event Attendees](https://eveonline-third-party-documentation.readthedocs.
|
364
|
-
- [ ] [Character Sheet](https://eveonline-third-party-documentation.readthedocs.
|
365
|
-
- [ ] [Chat Channels](https://eveonline-third-party-documentation.readthedocs.
|
366
|
-
- [ ] [Contact List](https://eveonline-third-party-documentation.readthedocs.
|
367
|
-
- [ ] [Contact Notifications](https://eveonline-third-party-documentation.readthedocs.
|
368
|
-
- [ ] [Contract Bids](https://eveonline-third-party-documentation.readthedocs.
|
369
|
-
- [ ] [Contract Items](https://eveonline-third-party-documentation.readthedocs.
|
370
|
-
- [ ] [Contracts](https://eveonline-third-party-documentation.readthedocs.
|
371
|
-
- [ ] [Factional Warfare Stats](https://eveonline-third-party-documentation.readthedocs.
|
372
|
-
- [ ] [Industry Jobs](https://eveonline-third-party-documentation.readthedocs.
|
373
|
-
- [ ] [Industry Jobs History](https://eveonline-third-party-documentation.readthedocs.
|
374
|
-
- [ ] [Kill Log](https://eveonline-third-party-documentation.readthedocs.
|
375
|
-
- [ ] [Kill Mails](https://eveonline-third-party-documentation.readthedocs.
|
376
|
-
- [ ] [Locations](https://eveonline-third-party-documentation.readthedocs.
|
377
|
-
- [ ] [Mail Bodies](https://eveonline-third-party-documentation.readthedocs.
|
378
|
-
- [ ] [Mailing Lists](https://eveonline-third-party-documentation.readthedocs.
|
379
|
-
- [ ] [Mail Messages](https://eveonline-third-party-documentation.readthedocs.
|
380
|
-
- [ ] [Market Orders](https://eveonline-third-party-documentation.readthedocs.
|
381
|
-
- [ ] [Medals](https://eveonline-third-party-documentation.readthedocs.
|
382
|
-
- [ ] [Notifications](https://eveonline-third-party-documentation.readthedocs.
|
383
|
-
- [ ] [Notification Texts](https://eveonline-third-party-documentation.readthedocs.
|
384
|
-
- [ ] [Planetary Colonies](https://eveonline-third-party-documentation.readthedocs.
|
385
|
-
- [ ] [Planetary Links](https://eveonline-third-party-documentation.readthedocs.
|
386
|
-
- [ ] [Planetary Pins](https://eveonline-third-party-documentation.readthedocs.
|
387
|
-
- [ ] [Planetary Routes](https://eveonline-third-party-documentation.readthedocs.
|
388
|
-
- [ ] [Research](https://eveonline-third-party-documentation.readthedocs.
|
389
|
-
- [x] [Skill in Training](https://eveonline-third-party-documentation.readthedocs.
|
390
|
-
- [ ] [Skill Queue](https://eveonline-third-party-documentation.readthedocs.
|
391
|
-
- [ ] [Standings
|
392
|
-
- [x] [Upcoming Calendar Events](https://eveonline-third-party-documentation.readthedocs.
|
393
|
-
- [ ] [Wallet Journal](https://eveonline-third-party-documentation.readthedocs.
|
394
|
-
- [ ] [Wallet Transactions](https://eveonline-third-party-documentation.readthedocs.
|
429
|
+
- [x] [Account Balance](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_accountbalance.html)
|
430
|
+
- [x] [Asset List](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_assetlist.html)
|
431
|
+
- [x] [Blueprints](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_blueprints.html)
|
432
|
+
- [ ] [Bookmarks](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_bookmarks.html)
|
433
|
+
- [ ] [Calendar Event Attendees](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_calendareventattendees.html)
|
434
|
+
- [ ] [Character Sheet](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_charactersheet.html)
|
435
|
+
- [ ] [Chat Channels](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_chatchannels.html)
|
436
|
+
- [ ] [Contact List](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_contactlist.html)
|
437
|
+
- [ ] [Contact Notifications](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_contactnotifications.html)
|
438
|
+
- [ ] [Contract Bids](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_contractbids.html)
|
439
|
+
- [ ] [Contract Items](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_contractitems.html)
|
440
|
+
- [ ] [Contracts](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_contracts.html)
|
441
|
+
- [ ] [Factional Warfare Stats](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_facwarstats.html)
|
442
|
+
- [ ] [Industry Jobs](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_industryjobs.html)
|
443
|
+
- [ ] [Industry Jobs History](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_industryjobshistory.html)
|
444
|
+
- [ ] [Kill Log](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_killlog.html)
|
445
|
+
- [ ] [Kill Mails](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_killmails.html)
|
446
|
+
- [ ] [Locations](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_locations.html)
|
447
|
+
- [ ] [Mail Bodies](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_mailbodies.html)
|
448
|
+
- [ ] [Mailing Lists](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_mailinglists.html)
|
449
|
+
- [ ] [Mail Messages](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_mailmessages.html)
|
450
|
+
- [ ] [Market Orders](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_marketorders.html)
|
451
|
+
- [ ] [Medals](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_medals.html)
|
452
|
+
- [ ] [Notifications](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_notifications.html)
|
453
|
+
- [ ] [Notification Texts](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_notificationtexts.html)
|
454
|
+
- [ ] [Planetary Colonies](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_planetarycolonies.html)
|
455
|
+
- [ ] [Planetary Links](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_planetarylinks.html)
|
456
|
+
- [ ] [Planetary Pins](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_planetarypins.html)
|
457
|
+
- [ ] [Planetary Routes](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_planetaryroutes.html)
|
458
|
+
- [ ] [Research](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_research.html)
|
459
|
+
- [x] [Skill in Training](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_skillintraining.html)
|
460
|
+
- [ ] [Skill Queue](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_skillqueue.html)
|
461
|
+
- [ ] [Standings](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_standings.html)
|
462
|
+
- [x] [Upcoming Calendar Events](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_upcomingcalendarevents.html)
|
463
|
+
- [ ] [Wallet Journal](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_walletjournal.html)
|
464
|
+
- [ ] [Wallet Transactions](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_wallettransactions.html)
|
395
465
|
|
396
466
|
----
|
397
467
|
|
398
468
|
### Corporation
|
399
469
|
|
400
|
-
- [ ] [Account Balance](https://eveonline-third-party-documentation.readthedocs.
|
401
|
-
- [ ] [Asset List](https://eveonline-third-party-documentation.readthedocs.
|
402
|
-
- [ ] [Blueprints](https://eveonline-third-party-documentation.readthedocs.
|
403
|
-
- [ ] [Bookmarks](https://eveonline-third-party-documentation.readthedocs.
|
404
|
-
- [ ] [Contact List](https://eveonline-third-party-documentation.readthedocs.
|
405
|
-
- [ ] [Container Log](https://eveonline-third-party-documentation.readthedocs.
|
406
|
-
- [ ] [
|
407
|
-
- [ ] [Contract Items](https://eveonline-third-party-documentation.readthedocs.
|
408
|
-
- [ ] [Contracts](https://eveonline-third-party-documentation.readthedocs.
|
409
|
-
- [ ] [Corporation Sheet](https://eveonline-third-party-documentation.readthedocs.
|
410
|
-
- [ ] [Customs Offices](https://eveonline-third-party-documentation.readthedocs.
|
411
|
-
- [ ] [Facilities](https://eveonline-third-party-documentation.readthedocs.
|
412
|
-
- [ ] [Factional Warfare Stats](https://eveonline-third-party-documentation.readthedocs.
|
413
|
-
- [ ] [Industry Jobs](https://eveonline-third-party-documentation.readthedocs.
|
414
|
-
- [ ] [Industry Jobs History](https://eveonline-third-party-documentation.readthedocs.
|
415
|
-
- [ ] [Kill Mails](https://eveonline-third-party-documentation.readthedocs.
|
416
|
-
- [ ] [Locations](https://eveonline-third-party-documentation.readthedocs.
|
417
|
-
- [ ] [Market Orders](https://eveonline-third-party-documentation.readthedocs.
|
418
|
-
- [ ] [Medals](https://eveonline-third-party-documentation.readthedocs.
|
419
|
-
- [ ] [Member Medals](https://eveonline-third-party-documentation.readthedocs.
|
420
|
-
- [ ] [Member Security](https://eveonline-third-party-documentation.readthedocs.
|
421
|
-
- [ ] [Member Security Log](https://eveonline-third-party-documentation.readthedocs.
|
422
|
-
- [ ] [Member Tracking](https://eveonline-third-party-documentation.readthedocs.
|
423
|
-
- [ ] [Outpost List](https://eveonline-third-party-documentation.readthedocs.
|
424
|
-
- [ ] [Outpost Service Detail](https://eveonline-third-party-documentation.readthedocs.
|
425
|
-
- [ ] [Shareholders](https://eveonline-third-party-documentation.readthedocs.
|
426
|
-
- [ ] [Standings
|
427
|
-
- [ ] [Starbase Detail
|
428
|
-
- [ ] [Starbase List
|
429
|
-
- [ ] [Titles](https://eveonline-third-party-documentation.readthedocs.
|
430
|
-
- [ ] [Wallet Journal](https://eveonline-third-party-documentation.readthedocs.
|
431
|
-
- [ ] [Wallet Transactions](https://eveonline-third-party-documentation.readthedocs.
|
470
|
+
- [ ] [Account Balance](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_accountbalance.html)
|
471
|
+
- [ ] [Asset List](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_assetlist.html)
|
472
|
+
- [ ] [Blueprints](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_blueprints.html)
|
473
|
+
- [ ] [Bookmarks](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_bookmarks.html)
|
474
|
+
- [ ] [Contact List](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_contactlist.html)
|
475
|
+
- [ ] [Container Log](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_containerlog.html)
|
476
|
+
- [ ] [Contract Bids](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_contractbids.html)
|
477
|
+
- [ ] [Contract Items](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_contractitems.html)
|
478
|
+
- [ ] [Contracts](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_contracts.html)
|
479
|
+
- [ ] [Corporation Sheet](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_corporationsheet.html)
|
480
|
+
- [ ] [Customs Offices](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_customsoffices.html)
|
481
|
+
- [ ] [Facilities](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_facilities.html)
|
482
|
+
- [ ] [Factional Warfare Stats](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_facwarstats.html)
|
483
|
+
- [ ] [Industry Jobs](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_industryjobs.html)
|
484
|
+
- [ ] [Industry Jobs History](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_industryjobshistory.html)
|
485
|
+
- [ ] [Kill Mails](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_killmails.html)
|
486
|
+
- [ ] [Locations](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_locations.html)
|
487
|
+
- [ ] [Market Orders](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_marketorders.html)
|
488
|
+
- [ ] [Medals](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_medals.html)
|
489
|
+
- [ ] [Member Medals](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_membermedals.html)
|
490
|
+
- [ ] [Member Security](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_membersecurity.html)
|
491
|
+
- [ ] [Member Security Log](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_membersecuritylog.html)
|
492
|
+
- [ ] [Member Tracking](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_membertracking.html)
|
493
|
+
- [ ] [Outpost List](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_outpostlist.html)
|
494
|
+
- [ ] [Outpost Service Detail](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_outpostservicedetail.html)
|
495
|
+
- [ ] [Shareholders](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_shareholders.html)
|
496
|
+
- [ ] [Standings](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_standings.html)
|
497
|
+
- [ ] [Starbase Detail](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_starbasedetail.html)
|
498
|
+
- [ ] [Starbase List](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_starbaselist.html)
|
499
|
+
- [ ] [Titles](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_titles.html)
|
500
|
+
- [ ] [Wallet Journal](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_walletjournal.html)
|
501
|
+
- [ ] [Wallet Transactions](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_wallettransactions.html)
|
432
502
|
|
433
503
|
----
|
434
504
|
|
435
505
|
### Eve
|
436
506
|
|
437
|
-
- [ ] [Alliance List](https://eveonline-third-party-documentation.readthedocs.
|
438
|
-
- [ ] [
|
439
|
-
- [ ] [Character
|
440
|
-
- [ ] [Character
|
441
|
-
- [ ] [Character
|
442
|
-
- [ ] [
|
443
|
-
- [ ] [
|
444
|
-
- [ ] [
|
445
|
-
- [ ] [
|
446
|
-
- [ ] [Factional Warfare Top100 Stats XML (TODO: recheck this)](http://wiki.eve-id.net/APIv2_Factional_Warfare_Top100_Stats_XML)
|
447
|
-
- [ ] [Ref Types](https://eveonline-third-party-documentation.readthedocs.org/en/latest/xmlapi/eve_reftypes/)
|
448
|
-
- [ ] [Skill Tree XML (TODO: recheck this)](http://wiki.eve-id.net/APIv2_Eve_SkillTree_XML)
|
449
|
-
- [ ] [Type Name](https://eveonline-third-party-documentation.readthedocs.org/en/latest/xmlapi/eve_typename/)
|
507
|
+
- [ ] [Alliance List](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/eve/eve_alliancelist.html)
|
508
|
+
- [ ] [Character Affiliation](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/eve/eve_characteraffiliation.html)
|
509
|
+
- [ ] [Character ID](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/eve/eve_characterid.html)
|
510
|
+
- [ ] [Character Info](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/eve/eve_characterinfo.html)
|
511
|
+
- [ ] [Character Name](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/eve/eve_charactername.html)
|
512
|
+
- [ ] [Conquerable Station List](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/eve/eve_conquerablestationlist.html)
|
513
|
+
- [ ] [Error List](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/eve/eve_errorlist.html)
|
514
|
+
- [ ] [Ref Types](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/eve/eve_reftypes.html)
|
515
|
+
- [ ] [Type Name](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/eve/eve_typename.html)
|
450
516
|
|
451
517
|
----
|
452
518
|
|
453
519
|
### Map
|
454
520
|
|
455
|
-
- [ ] [Factional Warfare Systems
|
456
|
-
- [ ] [Jumps](https://eveonline-third-party-documentation.readthedocs.
|
457
|
-
- [ ] [Kills](https://eveonline-third-party-documentation.readthedocs.
|
458
|
-
- [ ] [Sovereignty](https://eveonline-third-party-documentation.readthedocs.
|
459
|
-
- [ ] [Sovereignty Status (API disabled) XML (TODO: recheck this)](http://wiki.eve-id.net/APIv2_Map_Sovereignty_Status_XML)
|
460
|
-
|
461
|
-
----
|
462
|
-
|
463
|
-
### Misc
|
464
|
-
|
465
|
-
- [ ] [Image (ID to Character Portrait and Corporation/Alliance Logo) (TODO: recheck this)](http://wiki.eve-id.net/APIv2_Eve_Image_Service)
|
466
|
-
- [ ] [Old Portraits (TODO: recheck this)](http://wiki.eve-id.net/APIv2_Old_Portraits)
|
521
|
+
- [ ] [Factional Warfare Systems](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/map/map_facwarsystems.html)
|
522
|
+
- [ ] [Jumps](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/map/map_jumps.html)
|
523
|
+
- [ ] [Kills](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/map/map_kills.html)
|
524
|
+
- [ ] [Sovereignty](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/map/map_sovereignty.html)
|
467
525
|
|
468
526
|
----
|
469
527
|
|
470
528
|
### Server
|
471
529
|
|
472
|
-
- [x] [Server Status](https://eveonline-third-party-documentation.readthedocs.
|
530
|
+
- [x] [Server Status](https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/server/serv_serverstatus.html)
|
473
531
|
|
474
532
|
----
|
475
533
|
|
@@ -479,7 +537,14 @@ Issue reports and pull requests are welcome on GitHub at https://github.com/biow
|
|
479
537
|
- [ ] Access Mask
|
480
538
|
- [ ] Caching
|
481
539
|
- [ ] Test EVE server
|
482
|
-
|
540
|
+
|
541
|
+
## Author
|
542
|
+
|
543
|
+
* Igor Zubkov (@biow0lf)
|
544
|
+
|
545
|
+
## Contributors. Thank you everyone!
|
546
|
+
|
547
|
+
* Ian Flynn (@monban)
|
483
548
|
|
484
549
|
## License
|
485
550
|
|