Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
kitakamiooi committed Dec 12, 2015
1 parent ffc62e0 commit 94ab6c9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions handlers/frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ async def login(self, request):
return aiohttp_jinja2.render_template('form.html', request, context)

async def normal(self, request):
"""适配浏览器中进行游戏的页面,该页面会检查会话中是否有api_token、api_starttime和world_ip三个参数,缺少其中任意一个都不能
进行游戏,跳转回登录页面。
"""适配浏览器中进行游戏的页面,该页面会检查会话中是否有api_token、api_starttime和world_ip三个参数,缺少其中任意一个都不能进行
游戏,跳转回登录页面。
:param request: aiohttp.web.Request
:return: aiohttp.web.Response or aiohttp.web.HTTPFound
Expand All @@ -91,8 +91,8 @@ async def normal(self, request):
return aiohttp.web.HTTPFound('/')

async def kcv(self, request):
"""适配KanColleViewer或者74EO中进行游戏的页面,提供一个iframe,在iframe中载入游戏FLASH。该页面会检查会话中是否有api_token、api_starttime和world_ip三个参数,缺少其中任意一个都不能
进行游戏,跳转回登录页面。
"""适配KanColleViewer或者74EO中进行游戏的页面,提供一个iframe,在iframe中载入游戏FLASH。该页面会检查会话中是否有api_token、
api_starttime和world_ip三个参数,缺少其中任意一个都不能进行游戏,跳转回登录页面。
:param request: aiohttp.web.Request
:return: aiohttp.web.Response or aiohttp.web.HTTPFound
Expand All @@ -110,8 +110,8 @@ async def kcv(self, request):
return aiohttp.web.HTTPFound('/')

async def flash(self, request):
"""适配KanColleViewer或者74EO中进行游戏的页面,展示,该页面会检查会话中是否有api_token、api_starttime和world_ip三个参数,缺少其中任意一个都不能
进行游戏,跳转回登录页面。
"""适配KanColleViewer或者74EO中进行游戏的页面,展示,该页面会检查会话中是否有api_token、api_starttime和world_ip三个参数,
缺少其中任意一个都不能进行游戏,跳转回登录页面。
:param request: aiohttp.web.Request
:return: aiohttp.web.Response or aiohttp.web.HTTPFound
Expand All @@ -134,8 +134,8 @@ async def flash(self, request):
return aiohttp.web.HTTPFound('/')

async def poi(self, request):
"""适配poi中进行游戏的页面,显示FLASH。该页面会检查会话中是否有api_token、api_starttime和world_ip三个参数,缺少其中任意一个都不能
进行游戏,跳转回登录页面。
"""适配poi中进行游戏的页面,显示FLASH。该页面会检查会话中是否有api_token、api_starttime和world_ip三个参数,缺少其中任意一个
都不能进行游戏,跳转回登录页面。
:param request: aiohttp.web.Request
:return: aiohttp.web.Response or aiohttp.web.HTTPFound
Expand Down

0 comments on commit 94ab6c9

Please sign in to comment.