├── LICENSE ├── README.md ├── dump └── universe_dump.php ├── images ├── map_classic.png ├── map_classic_no_sec.png ├── map_classic_options.png ├── map_in_game.png ├── map_jita.png ├── map_jita_radial.png ├── map_on_ipad.png ├── map_on_s4.png ├── map_overview.png ├── tracker_in_map.png └── tracker_option.png ├── sql └── eve_live_intel.sql └── website ├── .htaccess ├── .ovhconfig ├── d3.js ├── d3.min.js ├── data ├── factions.json └── region_KS.json ├── include ├── common.php ├── config.php ├── db_handler.php ├── eve_header.php └── security.php ├── index.php ├── intelMap.js ├── intel_map.min.js ├── login.php ├── logout.php ├── mapData.js ├── mapData.min.js └── services ├── intel.php └── send_intel.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/README.md -------------------------------------------------------------------------------- /dump/universe_dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/dump/universe_dump.php -------------------------------------------------------------------------------- /images/map_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/map_classic.png -------------------------------------------------------------------------------- /images/map_classic_no_sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/map_classic_no_sec.png -------------------------------------------------------------------------------- /images/map_classic_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/map_classic_options.png -------------------------------------------------------------------------------- /images/map_in_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/map_in_game.png -------------------------------------------------------------------------------- /images/map_jita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/map_jita.png -------------------------------------------------------------------------------- /images/map_jita_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/map_jita_radial.png -------------------------------------------------------------------------------- /images/map_on_ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/map_on_ipad.png -------------------------------------------------------------------------------- /images/map_on_s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/map_on_s4.png -------------------------------------------------------------------------------- /images/map_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/map_overview.png -------------------------------------------------------------------------------- /images/tracker_in_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/tracker_in_map.png -------------------------------------------------------------------------------- /images/tracker_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/images/tracker_option.png -------------------------------------------------------------------------------- /sql/eve_live_intel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/sql/eve_live_intel.sql -------------------------------------------------------------------------------- /website/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/.htaccess -------------------------------------------------------------------------------- /website/.ovhconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/.ovhconfig -------------------------------------------------------------------------------- /website/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/d3.js -------------------------------------------------------------------------------- /website/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/d3.min.js -------------------------------------------------------------------------------- /website/data/factions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/data/factions.json -------------------------------------------------------------------------------- /website/data/region_KS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/data/region_KS.json -------------------------------------------------------------------------------- /website/include/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/include/common.php -------------------------------------------------------------------------------- /website/include/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/include/config.php -------------------------------------------------------------------------------- /website/include/db_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/include/db_handler.php -------------------------------------------------------------------------------- /website/include/eve_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/include/eve_header.php -------------------------------------------------------------------------------- /website/include/security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/include/security.php -------------------------------------------------------------------------------- /website/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/index.php -------------------------------------------------------------------------------- /website/intelMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/intelMap.js -------------------------------------------------------------------------------- /website/intel_map.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/intel_map.min.js -------------------------------------------------------------------------------- /website/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/login.php -------------------------------------------------------------------------------- /website/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/logout.php -------------------------------------------------------------------------------- /website/mapData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/mapData.js -------------------------------------------------------------------------------- /website/mapData.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/mapData.min.js -------------------------------------------------------------------------------- /website/services/intel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/services/intel.php -------------------------------------------------------------------------------- /website/services/send_intel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremieroy/EVELiveIntel/HEAD/website/services/send_intel.php --------------------------------------------------------------------------------