List of the most important things we need for API checks.
a quick view on wallet balance and skillpoints.
was allready done, see at profile
links to sites:
[url]ttp://eve-search.com/search/charactername[/url] (searching for posts with the charactername in them)
done, see at profile
http://eve-search.com/search/author/CHA ... 734105-277 (these are posts made by the character in character sale forum)
done, see at profile
http://eve-kill.net/?a=search&searchtyp ... RACTERNAME (killboard)
done, see at profile
also did a link to battleclinic
Then wallet and transactions logs, would be very nice if you could code a way to summarize big transactions 250m+, and if many transactions between two characters.
partially done, see at profile: below Skill Summary, External Links there is now "API Check".
Working allready: Wallet Transactions, Wallet Journal, Contracts (just the list, not details)
contract view.
As u can see above, I have been working now for allmost 7 hours on this. Creating this stuff is really a mess, because the xmls from CCP very often only give me an ID ... e.g. a StationID ... so in this case I updated the eve-static-dump (mysql-database with the eve online static data like stations) and then connected this (which means the xml gives me a StationID and I put this into a function that returns me the station-name.
Same has to be done with items, charactersnames, systemnames etc etc ...
Please test functionality so far, will go on with this later (when I have time)
Greetz
Orthan
PS: Don't forget to do a REFETCH if you want to see actual data!!!
PS2: If it takes a bit longer to build up data-output on your screen, keep in mind what all runs in the background:
1) check if the folder for the xml-files of this char exists and if the xml-files where allready fetched
2) check if the xml-files are valid (so not 0KB empty files or shit like that)
3) parse the xml
4) fetch additional data like names either from local database (killboard, eve-static-dump) or fetch it via API from CCP.
5) Do shit like number-formatting, error-handling etc