Browse Source

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
pull/1631/head
José Carlos García 9 years ago committed by Markus Unterwaditzer
parent
commit
567fff9d0d
  1. 2
      CHANGES
  2. 2
      CONTRIBUTING.rst
  3. 4
      docs/_templates/sidebarintro.html
  4. 2
      docs/extensions.rst
  5. 2
      docs/installation.rst
  6. 2
      docs/patterns/jquery.rst
  7. 2
      docs/security.rst
  8. 4
      docs/testing.rst
  9. 2
      docs/tutorial/dbcon.rst
  10. 2
      docs/tutorial/index.rst
  11. 2
      docs/upgrading.rst
  12. 4
      setup.py
  13. 6
      tox.ini

2
CHANGES

@ -60,7 +60,7 @@ Version 1.0
- 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
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
- The automatically provided ``OPTIONS`` method is now correctly disabled if
the user registered an overriding rule with the lowercase-version

2
CONTRIBUTING.rst

@ -45,7 +45,7 @@ install it with::
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::

4
docs/_templates/sidebarintro.html vendored

@ -17,6 +17,6 @@
<ul>
<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://github.com/mitsuhiko/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">Flask @ GitHub</a></li>
<li><a href="http://github.com/pallets/flask/issues">Issue Tracker</a></li>
</ul>

2
docs/extensions.rst

@ -46,4 +46,4 @@ exist and you can start importing from there.
.. _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

2
docs/installation.rst

@ -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::
$ git clone http://github.com/mitsuhiko/flask.git
$ git clone http://github.com/pallets/flask.git
Initialized empty Git repository in ~/dev/flask/.git/
$ cd flask
$ virtualenv venv

2
docs/patterns/jquery.rst

@ -164,5 +164,5 @@ explanation of the little bit of code above:
If you don't get the whole picture, download the `sourcecode
for this example
<https://github.com/mitsuhiko/flask/tree/master/examples/jqueryexample>`_
<https://github.com/pallets/flask/tree/master/examples/jqueryexample>`_
from GitHub.

2
docs/security.rst

@ -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
still vulnerable. All of these browsers have `other more serious
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
arrays.

4
docs/testing.rst

@ -24,7 +24,7 @@ the :ref:`tutorial`. If you don't have that application yet, get the
sources from `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
--------------------
@ -194,7 +194,7 @@ suite.
.. _MiniTwit Example:
https://github.com/mitsuhiko/flask/tree/master/examples/minitwit/
https://github.com/pallets/flask/tree/master/examples/minitwit/
Other Testing Tricks

2
docs/tutorial/dbcon.rst

@ -75,4 +75,4 @@ Continue to :ref:`tutorial-dbinit`.
larger <larger-applications>`, it's a good idea not to.
.. _example source:
https://github.com/mitsuhiko/flask/tree/master/examples/flaskr/
https://github.com/pallets/flask/tree/master/examples/flaskr/

2
docs/tutorial/index.rst

@ -15,7 +15,7 @@ If you want the full source code in advance or for comparison, check out
the `example source`_.
.. _example source:
https://github.com/mitsuhiko/flask/tree/master/examples/flaskr/
https://github.com/pallets/flask/tree/master/examples/flaskr/
.. toctree::
:maxdepth: 2

2
docs/upgrading.rst

@ -167,7 +167,7 @@ good.
To apply the upgrade script do the following:
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::
python flask-07-upgrade.py > patchfile.diff

4
setup.py

@ -39,7 +39,7 @@ Links
* `website <http://flask.pocoo.org/>`_
* `documentation <http://flask.pocoo.org/docs/>`_
* `development version
<http://github.com/mitsuhiko/flask/zipball/master#egg=Flask-dev>`_
<http://github.com/pallets/flask/zipball/master#egg=Flask-dev>`_
"""
import re
@ -57,7 +57,7 @@ with open('flask/__init__.py', 'rb') as f:
setup(
name='Flask',
version=version,
url='http://github.com/mitsuhiko/flask/',
url='http://github.com/pallets/flask/',
license='BSD',
author='Armin Ronacher',
author_email='armin.ronacher@active-4.com',

6
tox.ini

@ -15,9 +15,9 @@ deps=
lowest: itsdangerous==0.21
lowest: blinker==1.0
release: blinker
devel: git+https://github.com/mitsuhiko/werkzeug.git
devel: git+https://github.com/mitsuhiko/jinja2.git
devel: git+https://github.com/mitsuhiko/itsdangerous.git
devel: git+https://github.com/pallets/werkzeug.git
devel: git+https://github.com/pallets/jinja.git
devel: git+https://github.com/pallets/itsdangerous.git
devel: git+https://github.com/jek/blinker.git
[testenv:docs]

Loading…
Cancel
Save