mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-05 09:36:20 +00:00
bbf6d9b026
Bugfix for feeds - removed categories related and up - load new books now working - category random now working login page is free of non accessible elements boolean custom column is vivible in UI books with only with certain languages can be shown book shelfs can be deleted from UI Anonymous user view is more resticted Added browse of series in sidebar Dependencys in vendor folder are updated to newer versions (licencs files are now present) Bugfix editing Authors names Made upload on windows working
50 lines
1.6 KiB
Python
50 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
flask
|
|
~~~~~
|
|
|
|
A microframework based on Werkzeug. It's extensively documented
|
|
and follows best practice patterns.
|
|
|
|
:copyright: (c) 2015 by Armin Ronacher.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
|
|
__version__ = '0.11'
|
|
|
|
# utilities we import from Werkzeug and Jinja2 that are unused
|
|
# in the module but are exported as public interface.
|
|
from werkzeug.exceptions import abort
|
|
from werkzeug.utils import redirect
|
|
from jinja2 import Markup, escape
|
|
|
|
from .app import Flask, Request, Response
|
|
from .config import Config
|
|
from .helpers import url_for, flash, send_file, send_from_directory, \
|
|
get_flashed_messages, get_template_attribute, make_response, safe_join, \
|
|
stream_with_context
|
|
from .globals import current_app, g, request, session, _request_ctx_stack, \
|
|
_app_ctx_stack
|
|
from .ctx import has_request_context, has_app_context, \
|
|
after_this_request, copy_current_request_context
|
|
from .blueprints import Blueprint
|
|
from .templating import render_template, render_template_string
|
|
|
|
# the signals
|
|
from .signals import signals_available, template_rendered, request_started, \
|
|
request_finished, got_request_exception, request_tearing_down, \
|
|
appcontext_tearing_down, appcontext_pushed, \
|
|
appcontext_popped, message_flashed, before_render_template
|
|
|
|
# We're not exposing the actual json module but a convenient wrapper around
|
|
# it.
|
|
from . import json
|
|
|
|
# This was the only thing that flask used to export at one point and it had
|
|
# a more generic name.
|
|
jsonify = json.jsonify
|
|
|
|
# backwards compat, goes away in 1.0
|
|
from .sessions import SecureCookieSession as Session
|
|
json_available = True
|