Change to Pallets project
* Update CHANGES * Update CONTRIBUTING.rst * Update setup.py * Update tox.ini * Update extensions.rst * Update security.rst * Update installation.rst * Update testing.rst * Update upgrading.rst * Update sidebarintro.html * Update jquery.rst * Update dbcon.rst * Update index.rst
This commit is contained in:
parent
bd667109c6
commit
567fff9d0d
13 changed files with 18 additions and 18 deletions
2
CHANGES
2
CHANGES
|
|
@ -60,7 +60,7 @@ Version 1.0
|
||||||
- JSON responses are now terminated with a newline character, because it is a
|
- JSON responses are now terminated with a newline character, because it is a
|
||||||
convention that UNIX text files end with a newline and some clients don't
|
convention that UNIX text files end with a newline and some clients don't
|
||||||
deal well when this newline is missing. See
|
deal well when this newline is missing. See
|
||||||
https://github.com/mitsuhiko/flask/pull/1262 -- this came up originally as a
|
https://github.com/pallets/flask/pull/1262 -- this came up originally as a
|
||||||
part of https://github.com/kennethreitz/httpbin/issues/168
|
part of https://github.com/kennethreitz/httpbin/issues/168
|
||||||
- The automatically provided ``OPTIONS`` method is now correctly disabled if
|
- The automatically provided ``OPTIONS`` method is now correctly disabled if
|
||||||
the user registered an overriding rule with the lowercase-version
|
the user registered an overriding rule with the lowercase-version
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ install it with::
|
||||||
|
|
||||||
Clone this repository::
|
Clone this repository::
|
||||||
|
|
||||||
git clone https://github.com/mitsuhiko/flask.git
|
git clone https://github.com/pallets/flask.git
|
||||||
|
|
||||||
Install Flask as an editable package using the current source::
|
Install Flask as an editable package using the current source::
|
||||||
|
|
||||||
|
|
|
||||||
4
docs/_templates/sidebarintro.html
vendored
4
docs/_templates/sidebarintro.html
vendored
|
|
@ -17,6 +17,6 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="http://flask.pocoo.org/">The Flask Website</a></li>
|
<li><a href="http://flask.pocoo.org/">The Flask Website</a></li>
|
||||||
<li><a href="http://pypi.python.org/pypi/Flask">Flask @ PyPI</a></li>
|
<li><a href="http://pypi.python.org/pypi/Flask">Flask @ PyPI</a></li>
|
||||||
<li><a href="http://github.com/mitsuhiko/flask">Flask @ GitHub</a></li>
|
<li><a href="http://github.com/pallets/flask">Flask @ GitHub</a></li>
|
||||||
<li><a href="http://github.com/mitsuhiko/flask/issues">Issue Tracker</a></li>
|
<li><a href="http://github.com/pallets/flask/issues">Issue Tracker</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
|
|
@ -46,4 +46,4 @@ exist and you can start importing from there.
|
||||||
|
|
||||||
|
|
||||||
.. _Flask Extension Registry: http://flask.pocoo.org/extensions/
|
.. _Flask Extension Registry: http://flask.pocoo.org/extensions/
|
||||||
.. _flaskext_compat.py: https://raw.githubusercontent.com/mitsuhiko/flask/master/scripts/flaskext_compat.py
|
.. _flaskext_compat.py: https://raw.githubusercontent.com/pallets/flask/master/scripts/flaskext_compat.py
|
||||||
|
|
|
||||||
|
|
@ -116,7 +116,7 @@ it to operate on a git checkout. Either way, virtualenv is recommended.
|
||||||
|
|
||||||
Get the git checkout in a new virtualenv and run in development mode::
|
Get the git checkout in a new virtualenv and run in development mode::
|
||||||
|
|
||||||
$ git clone http://github.com/mitsuhiko/flask.git
|
$ git clone http://github.com/pallets/flask.git
|
||||||
Initialized empty Git repository in ~/dev/flask/.git/
|
Initialized empty Git repository in ~/dev/flask/.git/
|
||||||
$ cd flask
|
$ cd flask
|
||||||
$ virtualenv venv
|
$ virtualenv venv
|
||||||
|
|
|
||||||
|
|
@ -164,5 +164,5 @@ explanation of the little bit of code above:
|
||||||
|
|
||||||
If you don't get the whole picture, download the `sourcecode
|
If you don't get the whole picture, download the `sourcecode
|
||||||
for this example
|
for this example
|
||||||
<https://github.com/mitsuhiko/flask/tree/master/examples/jqueryexample>`_
|
<https://github.com/pallets/flask/tree/master/examples/jqueryexample>`_
|
||||||
from GitHub.
|
from GitHub.
|
||||||
|
|
|
||||||
|
|
@ -101,6 +101,6 @@ arrays to JSON. This was because of a security vulnerability in ECMAScript 4.
|
||||||
ECMAScript 5 closed this vulnerability, so only extremely old browsers are
|
ECMAScript 5 closed this vulnerability, so only extremely old browsers are
|
||||||
still vulnerable. All of these browsers have `other more serious
|
still vulnerable. All of these browsers have `other more serious
|
||||||
vulnerabilities
|
vulnerabilities
|
||||||
<https://github.com/mitsuhiko/flask/issues/248#issuecomment-59934857>`_, so
|
<https://github.com/pallets/flask/issues/248#issuecomment-59934857>`_, so
|
||||||
this behavior was changed and :func:`~flask.jsonify` now supports serializing
|
this behavior was changed and :func:`~flask.jsonify` now supports serializing
|
||||||
arrays.
|
arrays.
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ the :ref:`tutorial`. If you don't have that application yet, get the
|
||||||
sources from `the examples`_.
|
sources from `the examples`_.
|
||||||
|
|
||||||
.. _the examples:
|
.. _the examples:
|
||||||
https://github.com/mitsuhiko/flask/tree/master/examples/flaskr/
|
https://github.com/pallets/flask/tree/master/examples/flaskr/
|
||||||
|
|
||||||
The Testing Skeleton
|
The Testing Skeleton
|
||||||
--------------------
|
--------------------
|
||||||
|
|
@ -194,7 +194,7 @@ suite.
|
||||||
|
|
||||||
|
|
||||||
.. _MiniTwit Example:
|
.. _MiniTwit Example:
|
||||||
https://github.com/mitsuhiko/flask/tree/master/examples/minitwit/
|
https://github.com/pallets/flask/tree/master/examples/minitwit/
|
||||||
|
|
||||||
|
|
||||||
Other Testing Tricks
|
Other Testing Tricks
|
||||||
|
|
|
||||||
|
|
@ -75,4 +75,4 @@ Continue to :ref:`tutorial-dbinit`.
|
||||||
larger <larger-applications>`, it's a good idea not to.
|
larger <larger-applications>`, it's a good idea not to.
|
||||||
|
|
||||||
.. _example source:
|
.. _example source:
|
||||||
https://github.com/mitsuhiko/flask/tree/master/examples/flaskr/
|
https://github.com/pallets/flask/tree/master/examples/flaskr/
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ If you want the full source code in advance or for comparison, check out
|
||||||
the `example source`_.
|
the `example source`_.
|
||||||
|
|
||||||
.. _example source:
|
.. _example source:
|
||||||
https://github.com/mitsuhiko/flask/tree/master/examples/flaskr/
|
https://github.com/pallets/flask/tree/master/examples/flaskr/
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
|
||||||
|
|
@ -167,7 +167,7 @@ good.
|
||||||
To apply the upgrade script do the following:
|
To apply the upgrade script do the following:
|
||||||
|
|
||||||
1. Download the script: `flask-07-upgrade.py
|
1. Download the script: `flask-07-upgrade.py
|
||||||
<https://raw.githubusercontent.com/mitsuhiko/flask/master/scripts/flask-07-upgrade.py>`_
|
<https://raw.githubusercontent.com/pallets/flask/master/scripts/flask-07-upgrade.py>`_
|
||||||
2. Run it in the directory of your application::
|
2. Run it in the directory of your application::
|
||||||
|
|
||||||
python flask-07-upgrade.py > patchfile.diff
|
python flask-07-upgrade.py > patchfile.diff
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -39,7 +39,7 @@ Links
|
||||||
* `website <http://flask.pocoo.org/>`_
|
* `website <http://flask.pocoo.org/>`_
|
||||||
* `documentation <http://flask.pocoo.org/docs/>`_
|
* `documentation <http://flask.pocoo.org/docs/>`_
|
||||||
* `development version
|
* `development version
|
||||||
<http://github.com/mitsuhiko/flask/zipball/master#egg=Flask-dev>`_
|
<http://github.com/pallets/flask/zipball/master#egg=Flask-dev>`_
|
||||||
|
|
||||||
"""
|
"""
|
||||||
import re
|
import re
|
||||||
|
|
@ -57,7 +57,7 @@ with open('flask/__init__.py', 'rb') as f:
|
||||||
setup(
|
setup(
|
||||||
name='Flask',
|
name='Flask',
|
||||||
version=version,
|
version=version,
|
||||||
url='http://github.com/mitsuhiko/flask/',
|
url='http://github.com/pallets/flask/',
|
||||||
license='BSD',
|
license='BSD',
|
||||||
author='Armin Ronacher',
|
author='Armin Ronacher',
|
||||||
author_email='armin.ronacher@active-4.com',
|
author_email='armin.ronacher@active-4.com',
|
||||||
|
|
|
||||||
6
tox.ini
6
tox.ini
|
|
@ -15,9 +15,9 @@ deps=
|
||||||
lowest: itsdangerous==0.21
|
lowest: itsdangerous==0.21
|
||||||
lowest: blinker==1.0
|
lowest: blinker==1.0
|
||||||
release: blinker
|
release: blinker
|
||||||
devel: git+https://github.com/mitsuhiko/werkzeug.git
|
devel: git+https://github.com/pallets/werkzeug.git
|
||||||
devel: git+https://github.com/mitsuhiko/jinja2.git
|
devel: git+https://github.com/pallets/jinja.git
|
||||||
devel: git+https://github.com/mitsuhiko/itsdangerous.git
|
devel: git+https://github.com/pallets/itsdangerous.git
|
||||||
devel: git+https://github.com/jek/blinker.git
|
devel: git+https://github.com/jek/blinker.git
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue