We should now have the same public API as before

This commit is contained in:
Armin Ronacher 2010-07-04 11:37:39 +02:00
parent 4f8ee8f129
commit 88d9315d19
2 changed files with 3 additions and 1 deletions

View file

@ -15,6 +15,8 @@ Codename to be decided, release date to be announced.
is only active for ``.html``, ``.htm``, ``.xml`` and ``.xhtml``. is only active for ``.html``, ``.htm``, ``.xml`` and ``.xhtml``.
Inside templates this behaviour can be changed with the Inside templates this behaviour can be changed with the
``autoescape`` tag. ``autoescape`` tag.
- refactored Flask internally. It now consists of more than a
single file.
Version 0.4 Version 0.4
----------- -----------

View file

@ -15,7 +15,7 @@
from werkzeug import abort, redirect from werkzeug import abort, redirect
from jinja2 import Markup, escape from jinja2 import Markup, escape
from flask.app import Flask from flask.app import Flask, Request, Response
from flask.config import Config from flask.config import Config
from flask.helpers import url_for, jsonify, json_available, flash, send_file, \ from flask.helpers import url_for, jsonify, json_available, flash, send_file, \
get_flashed_messages, render_template, render_template, render_template_string, \ get_flashed_messages, render_template, render_template, render_template_string, \