Source code for invenio_theme.views

# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2015 CERN.
#
# Invenio is free software; you can redistribute it
# and/or modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# Invenio is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Invenio; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307, USA.
#
# In applying this license, CERN does not
# waive the privileges and immunities granted to it by virtue of its status
# as an Intergovernmental Organization or submit itself to any jurisdiction.

"""Invenio error handlers."""

from __future__ import absolute_import, print_function

from flask import Blueprint, current_app, render_template

blueprint = Blueprint(
    'invenio_theme_frontpage',
    __name__
)


@blueprint.route('/')
[docs]def index(): """Simplistic front page view.""" return render_template( current_app.config['THEME_FRONTPAGE_TEMPLATE'], )
[docs]def unauthorized(e): """Error handler to show a 401.html page in case of a 401 error.""" return render_template(current_app.config['THEME_401_TEMPLATE']), 401
[docs]def insufficient_permissions(e): """Error handler to show a 403.html page in case of a 403 error.""" return render_template(current_app.config['THEME_403_TEMPLATE']), 403
[docs]def page_not_found(e): """Error handler to show a 404.html page in case of a 404 error.""" return render_template(current_app.config['THEME_404_TEMPLATE']), 404
[docs]def internal_error(e): """Error handler to show a 500.html page in case of a 500 error.""" return render_template(current_app.config['THEME_500_TEMPLATE']), 500