mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
0b3d20ffbe
add translation API, add fi_FI and en_EN translations, add C and .properties file support, check if file is binary before sending and clean up ajax handler
24 lines
588 B
Python
24 lines
588 B
Python
import logging
|
|
|
|
from app.classes.web.base_handler import BaseHandler
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class DefaultHandler(BaseHandler):
|
|
|
|
# Override prepare() instead of get() to cover all possible HTTP methods.
|
|
def prepare(self, page=None):
|
|
if page is not None:
|
|
self.set_status(404)
|
|
self.render(
|
|
"public/404.html",
|
|
translate=self.translator.translate,
|
|
)
|
|
else:
|
|
self.redirect(
|
|
"/public/login",
|
|
translate=self.translator.translate,
|
|
)
|
|
|