├── .gitignore ├── LICENSE.md ├── README-API-1.x.md ├── README.md ├── munin ├── README.md ├── example.png └── wot_ ├── mysql-dumps ├── 0.8.4 │ └── cat_achiev_details.sql ├── 0.8.6 │ ├── .placeholder │ └── tanks_all_ru.sql ├── 0.8.8 │ ├── .keep_git │ ├── wot_tanks_all_api1.sql │ └── wot_tanks_all_api2.sql ├── 0.9.2 │ └── wot_tanks_all_api2.sql ├── README.md └── globalmap │ ├── wot-cw-info.10-03-2013.sql │ └── wot-cw-info.12-08-2014.sql └── php ├── example.php ├── wot-defaults.class.php └── wot.class.php /.gitignore: -------------------------------------------------------------------------------- 1 | nbproject -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README-API-1.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/README-API-1.x.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/README.md -------------------------------------------------------------------------------- /munin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/munin/README.md -------------------------------------------------------------------------------- /munin/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/munin/example.png -------------------------------------------------------------------------------- /munin/wot_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/munin/wot_ -------------------------------------------------------------------------------- /mysql-dumps/0.8.4/cat_achiev_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/mysql-dumps/0.8.4/cat_achiev_details.sql -------------------------------------------------------------------------------- /mysql-dumps/0.8.6/.placeholder: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /mysql-dumps/0.8.6/tanks_all_ru.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/mysql-dumps/0.8.6/tanks_all_ru.sql -------------------------------------------------------------------------------- /mysql-dumps/0.8.8/.keep_git: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-dumps/0.8.8/wot_tanks_all_api1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/mysql-dumps/0.8.8/wot_tanks_all_api1.sql -------------------------------------------------------------------------------- /mysql-dumps/0.8.8/wot_tanks_all_api2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/mysql-dumps/0.8.8/wot_tanks_all_api2.sql -------------------------------------------------------------------------------- /mysql-dumps/0.9.2/wot_tanks_all_api2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/mysql-dumps/0.9.2/wot_tanks_all_api2.sql -------------------------------------------------------------------------------- /mysql-dumps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/mysql-dumps/README.md -------------------------------------------------------------------------------- /mysql-dumps/globalmap/wot-cw-info.10-03-2013.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/mysql-dumps/globalmap/wot-cw-info.10-03-2013.sql -------------------------------------------------------------------------------- /mysql-dumps/globalmap/wot-cw-info.12-08-2014.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/mysql-dumps/globalmap/wot-cw-info.12-08-2014.sql -------------------------------------------------------------------------------- /php/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/php/example.php -------------------------------------------------------------------------------- /php/wot-defaults.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/php/wot-defaults.class.php -------------------------------------------------------------------------------- /php/wot.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-spb/wot-api-description/HEAD/php/wot.class.php --------------------------------------------------------------------------------