Skip to content

Commit 25366e5

Browse files
committed
updating flask examples to remove broken flask-wtf link
1 parent a8ad4f4 commit 25366e5

16 files changed

+27
-27
lines changed

content/pages/examples/flask/flask-app-badrequest.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def rison(schema=None):
149149

150150
## Example 2 from Flask-WTF
151151
[Flask-WTF](https://github.com/lepture/flask-wtf)
152-
([project documentation](https://flask-wtf.readthedocs.io/en/stable/)
152+
([project documentation](https://flask-wtf.readthedocs.io/)
153153
and
154154
[PyPI page](https://pypi.org/project/Flask-WTF/))
155155
provides a bridge between [Flask](/flask.html) and the the

content/pages/examples/flask/flask-app-flask.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ application's functionality, including URL rounting,
1919
and <a href="/flask-app-immutabledict-examples.html">ImmutableDict</a>
2020
are several other callables with code examples from the same `flask.app` package.
2121

22-
These subjects go along with the `Flask` code examples:
22+
These topics are also useful while reading the `Flask` examples:
2323

2424
* [web development](/web-development.html) and [web design](/web-design.html)
2525
* [Flask](/flask.html) and [web framework](/web-frameworks.html) concepts
@@ -380,7 +380,7 @@ libraries that are commonly used in Flask projects, such as
380380
[SendGrid](https://www.twilio.com/sendgrid) for transactional email,
381381
[SQLAlchemy](/sqlalchemy.html) for persistent data storage through a
382382
[relational database](/databases.html) backend,
383-
[Flask-WTF](https://flask-wtf.readthedocs.io/en/stable/) for form
383+
[Flask-WTF](https://flask-wtf.readthedocs.io/) for form
384384
handling and many others.
385385

386386
flask-base is provided as open source under the
@@ -677,7 +677,7 @@ class HTTPAuthTestCase(unittest.TestCase):
677677
is an example application that ties together the
678678
[intTellInput.js](https://github.com/jackocnr/intl-tel-input)
679679
JavaScript plugin with the
680-
[Flask-WTF](https://flask-wtf.readthedocs.io/en/stable/) form-handling
680+
[Flask-WTF](https://flask-wtf.readthedocs.io/) form-handling
681681
library. flask-phone-input is provided as open source under the
682682
[MIT license](https://github.com/miguelgrinberg/flask-phone-input/blob/1a1c227c044474ce0fe133493d7f8b0fb8312409/LICENSE).
683683

@@ -729,7 +729,7 @@ def index():
729729
starter project to build a software-as-a-service (SaaS) web application
730730
in [Flask](/flask.html), with [Stripe](/stripe.html) for billing. The
731731
boilerplate relies on many common Flask extensions such as
732-
[Flask-WTF](https://flask-wtf.readthedocs.io/en/latest/),
732+
[Flask-WTF](https://flask-wtf.readthedocs.io/),
733733
[Flask-Login](https://flask-login.readthedocs.io/en/latest/),
734734
[Flask-Admin](https://flask-admin.readthedocs.io/en/latest/), and
735735
many others. The project is provided as open source under the

content/pages/examples/flask/flask-app-headers.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Flask web applications.
2222
and <a href="/flask-app-immutabledict-examples.html">ImmutableDict</a>
2323
are several other callables with code examples from the same `flask.app` package.
2424

25-
These topics are also useful while reading the `Headers` examples:
25+
These subjects go along with the `Headers` code examples:
2626

2727
* [web development](/web-development.html) and [web design](/web-design.html)
2828
* [Flask](/flask.html) and [web framework](/web-frameworks.html) concepts

content/pages/examples/flask/flask-blueprints-blueprint.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ libraries that are commonly used in Flask projects, such as
309309
[SendGrid](https://www.twilio.com/sendgrid) for transactional email,
310310
[SQLAlchemy](/sqlalchemy.html) for persistent data storage through a
311311
[relational database](/databases.html) backend,
312-
[Flask-WTF](https://flask-wtf.readthedocs.io/en/stable/) for form
312+
[Flask-WTF](https://flask-wtf.readthedocs.io/) for form
313313
handling and many others.
314314

315315
flask-base is provided as open source under the
@@ -649,7 +649,7 @@ def swagger_static(filename):
649649

650650
## Example 10 from Flask-WTF
651651
[Flask-WTF](https://github.com/lepture/flask-wtf)
652-
([project documentation](https://flask-wtf.readthedocs.io/en/stable/)
652+
([project documentation](https://flask-wtf.readthedocs.io/)
653653
and
654654
[PyPI page](https://pypi.org/project/Flask-WTF/))
655655
provides a bridge between [Flask](/flask.html) and the the

content/pages/examples/flask/flask-extensions-plug-ins.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ building on, and the source code is open source under the
219219

220220
### Flask-WTF
221221
[Flask-WTF](https://github.com/lepture/flask-wtf)
222-
([project documentation](https://flask-wtf.readthedocs.io/en/stable/)
222+
([project documentation](https://flask-wtf.readthedocs.io/)
223223
and
224224
[PyPI page](https://pypi.org/project/Flask-WTF/))
225225
provides a bridge between [Flask](/flask.html) and the the

content/pages/examples/flask/flask-globals-current-app.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ libraries that are commonly used in Flask projects, such as
630630
[SendGrid](https://www.twilio.com/sendgrid) for transactional email,
631631
[SQLAlchemy](/sqlalchemy.html) for persistent data storage through a
632632
[relational database](/databases.html) backend,
633-
[Flask-WTF](https://flask-wtf.readthedocs.io/en/stable/) for form
633+
[Flask-WTF](https://flask-wtf.readthedocs.io/) for form
634634
handling and many others.
635635

636636
flask-base is provided as open source under the
@@ -1894,7 +1894,7 @@ except ImportError:
18941894

18951895
## Example 14 from Flask-WTF
18961896
[Flask-WTF](https://github.com/lepture/flask-wtf)
1897-
([project documentation](https://flask-wtf.readthedocs.io/en/stable/)
1897+
([project documentation](https://flask-wtf.readthedocs.io/)
18981898
and
18991899
[PyPI page](https://pypi.org/project/Flask-WTF/))
19001900
provides a bridge between [Flask](/flask.html) and the the

content/pages/examples/flask/flask-globals-g.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ class HTTPBasicAuth(HTTPAuth):
679679

680680
## Example 6 from Flask-WTF
681681
[Flask-WTF](https://github.com/lepture/flask-wtf)
682-
([project documentation](https://flask-wtf.readthedocs.io/en/stable/)
682+
([project documentation](https://flask-wtf.readthedocs.io/)
683683
and
684684
[PyPI page](https://pypi.org/project/Flask-WTF/))
685685
provides a bridge between [Flask](/flask.html) and the the

content/pages/examples/flask/flask-globals-request.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1997,7 +1997,7 @@ class marshal_with_field(object):
19971997

19981998
## Example 12 from Flask-WTF
19991999
[Flask-WTF](https://github.com/lepture/flask-wtf)
2000-
([project documentation](https://flask-wtf.readthedocs.io/en/stable/)
2000+
([project documentation](https://flask-wtf.readthedocs.io/)
20012001
and
20022002
[PyPI page](https://pypi.org/project/Flask-WTF/))
20032003
provides a bridge between [Flask](/flask.html) and the the
@@ -2159,7 +2159,7 @@ def generate_csrf(secret_key=None, token_key=None):
21592159
starter project to build a software-as-a-service (SaaS) web application
21602160
in [Flask](/flask.html), with [Stripe](/stripe.html) for billing. The
21612161
boilerplate relies on many common Flask extensions such as
2162-
[Flask-WTF](https://flask-wtf.readthedocs.io/en/latest/),
2162+
[Flask-WTF](https://flask-wtf.readthedocs.io/),
21632163
[Flask-Login](https://flask-login.readthedocs.io/en/latest/),
21642164
[Flask-Admin](https://flask-admin.readthedocs.io/en/latest/), and
21652165
many others. The project is provided as open source under the

content/pages/examples/flask/flask-globals-session.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def login_required(func):
730730

731731
## Example 7 from Flask-WTF
732732
[Flask-WTF](https://github.com/lepture/flask-wtf)
733-
([project documentation](https://flask-wtf.readthedocs.io/en/stable/)
733+
([project documentation](https://flask-wtf.readthedocs.io/)
734734
and
735735
[PyPI page](https://pypi.org/project/Flask-WTF/))
736736
provides a bridge between [Flask](/flask.html) and the the
@@ -845,7 +845,7 @@ def _get_config(
845845
starter project to build a software-as-a-service (SaaS) web application
846846
in [Flask](/flask.html), with [Stripe](/stripe.html) for billing. The
847847
boilerplate relies on many common Flask extensions such as
848-
[Flask-WTF](https://flask-wtf.readthedocs.io/en/latest/),
848+
[Flask-WTF](https://flask-wtf.readthedocs.io/),
849849
[Flask-Login](https://flask-login.readthedocs.io/en/latest/),
850850
[Flask-Admin](https://flask-admin.readthedocs.io/en/latest/), and
851851
many others. The project is provided as open source under the

content/pages/examples/flask/flask-helpers-url-for.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ libraries that are commonly used in Flask projects, such as
350350
[SendGrid](https://www.twilio.com/sendgrid) for transactional email,
351351
[SQLAlchemy](/sqlalchemy.html) for persistent data storage through a
352352
[relational database](/databases.html) backend,
353-
[Flask-WTF](https://flask-wtf.readthedocs.io/en/stable/) for form
353+
[Flask-WTF](https://flask-wtf.readthedocs.io/) for form
354354
handling and many others.
355355

356356
flask-base is provided as open source under the
@@ -759,7 +759,7 @@ def ui_for(api):
759759
starter project to build a software-as-a-service (SaaS) web application
760760
in [Flask](/flask.html), with [Stripe](/stripe.html) for billing. The
761761
boilerplate relies on many common Flask extensions such as
762-
[Flask-WTF](https://flask-wtf.readthedocs.io/en/latest/),
762+
[Flask-WTF](https://flask-wtf.readthedocs.io/),
763763
[Flask-Login](https://flask-login.readthedocs.io/en/latest/),
764764
[Flask-Admin](https://flask-admin.readthedocs.io/en/latest/), and
765765
many others. The project is provided as open source under the

0 commit comments

Comments
 (0)