X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=xonstat%2Fviews%2F__init__.py;h=830eabd47f59842c5941d03cc39b0edf28a88f56;hb=ccc6418a1dea2ac63e99cb9c3d57e87b943644fa;hp=9d89e605a32836bed457733a76af9700eecd2faf;hpb=fcca5fa22d77adc8c75a2be9e517ff222e99a06f;p=xonotic%2Fxonstat.git diff --git a/xonstat/views/__init__.py b/xonstat/views/__init__.py old mode 100755 new mode 100644 index 9d89e60..830eabd --- a/xonstat/views/__init__.py +++ b/xonstat/views/__init__.py @@ -1,7 +1,33 @@ -from xonstat.views.submission import stats_submit -from xonstat.views.player import player_index, player_info, player_game_index -from xonstat.views.game import game_index, game_info -from xonstat.views.map import map_info, map_index -from xonstat.views.server import server_info, server_game_index, server_index -from xonstat.views.search import * -from xonstat.views.main import main_index +from xonstat.views.submission import submit_stats +from xonstat.views.player import player_index, player_info, player_game_index +from xonstat.views.player import player_accuracy +from xonstat.views.player import player_index_json, player_info_json +from xonstat.views.player import player_game_index_json, player_accuracy_json +from xonstat.views.player import player_damage_json +from xonstat.views.player import player_elo_info_text, player_elo_info_json +from xonstat.views.player import player_hashkey_info_text, player_hashkey_info_json +from xonstat.views.player import player_captimes, player_captimes_json +from xonstat.views.player import player_weaponstats_data_json, player_versus + +from xonstat.views.game import game_info, rank_index +from xonstat.views.game import game_info_json, rank_index_json +from xonstat.views.game import game_finder, game_finder_json + +from xonstat.views.map import MapIndex, MapTopScorers, MapTopPlayers, MapTopServers +from xonstat.views.map import map_info, map_info_json +from xonstat.views.map import map_captimes, map_captimes_json + +from xonstat.views.server import ServerIndex, ServerTopMaps, ServerTopScorers, ServerTopPlayers +from xonstat.views.server import ServerInfo + +from xonstat.views.search import search_q, search +from xonstat.views.search import search_json + +from xonstat.views.exceptions import notfound + +from xonstat.views.main import main_index, top_players_index, top_servers_index +from xonstat.views.main import top_maps_index + +from xonstat.views.admin import forbidden, login, merge + +from xonstat.views.static import robots