├── .devcontainer ├── devcontainer.json └── on-create-command.sh ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── -------------------.md │ ├── ------------------.md │ └── config.yml ├── auto-merge.yml ├── pull_request_template.md └── workflows │ ├── lock.yaml │ ├── publish.yaml │ └── tests.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGES.rst ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE.rst ├── README.md ├── README.rst ├── docs ├── .gitignore ├── Makefile ├── _static │ ├── css │ │ └── custom.css │ ├── debugger.png │ ├── flask-horizontal.png │ ├── flask-vertical.png │ ├── pycharm-run-config.png │ └── shortcut-icon.png ├── api.rst ├── appcontext.rst ├── async-await.rst ├── blueprints.rst ├── changes.rst ├── cli.rst ├── conf.py ├── config.rst ├── contributing.rst ├── debugging.rst ├── deploying │ ├── apache-httpd.rst │ ├── asgi.rst │ ├── eventlet.rst │ ├── gevent.rst │ ├── gunicorn.rst │ ├── index.rst │ ├── mod_wsgi.rst │ ├── nginx.rst │ ├── proxy_fix.rst │ ├── uwsgi.rst │ └── waitress.rst ├── design.rst ├── errorhandling.rst ├── extensiondev.rst ├── extensions.rst ├── index.rst ├── installation.rst ├── license.rst ├── lifecycle.rst ├── locales │ └── fa │ │ └── LC_MESSAGES │ │ ├── advanced_foreword.po │ │ ├── api.po │ │ ├── appcontext.po │ │ ├── async-await.po │ │ ├── becomingbig.po │ │ ├── blueprints.po │ │ ├── changes.po │ │ ├── cli.po │ │ ├── config.po │ │ ├── contributing.po │ │ ├── debugging.po │ │ ├── deploying │ │ ├── apache-httpd.po │ │ ├── asgi.po │ │ ├── eventlet.po │ │ ├── gevent.po │ │ ├── gunicorn.po │ │ ├── index.po │ │ ├── mod_wsgi.po │ │ ├── nginx.po │ │ ├── proxy_fix.po │ │ ├── uwsgi.po │ │ ├── waitress.po │ │ └── wsgi-standalone.po │ │ ├── design.po │ │ ├── errorhandling.po │ │ ├── extensiondev.po │ │ ├── extensions.po │ │ ├── foreword.po │ │ ├── htmlfaq.po │ │ ├── index.po │ │ ├── installation.po │ │ ├── license.po │ │ ├── lifecycle.po │ │ ├── logging.po │ │ ├── patterns │ │ ├── appdispatch.po │ │ ├── appfactories.po │ │ ├── caching.po │ │ ├── celery.po │ │ ├── deferredcallbacks.po │ │ ├── distribute.po │ │ ├── fabric.po │ │ ├── favicon.po │ │ ├── fileuploads.po │ │ ├── flashing.po │ │ ├── index.po │ │ ├── javascript.po │ │ ├── jquery.po │ │ ├── lazyloading.po │ │ ├── methodoverrides.po │ │ ├── mongoengine.po │ │ ├── packages.po │ │ ├── requestchecksum.po │ │ ├── singlepageapplications.po │ │ ├── sqlalchemy.po │ │ ├── sqlite3.po │ │ ├── streaming.po │ │ ├── subclassing.po │ │ ├── templateinheritance.po │ │ ├── urlprocessors.po │ │ ├── viewdecorators.po │ │ └── wtforms.po │ │ ├── quickstart.po │ │ ├── reqcontext.po │ │ ├── security.po │ │ ├── server.po │ │ ├── shell.po │ │ ├── signals.po │ │ ├── templating.po │ │ ├── testing.po │ │ ├── tutorial │ │ ├── blog.po │ │ ├── database.po │ │ ├── deploy.po │ │ ├── factory.po │ │ ├── index.po │ │ ├── install.po │ │ ├── layout.po │ │ ├── next.po │ │ ├── static.po │ │ ├── templates.po │ │ ├── tests.po │ │ └── views.po │ │ └── views.po ├── logging.rst ├── make.bat ├── patterns │ ├── appdispatch.rst │ ├── appfactories.rst │ ├── caching.rst │ ├── celery.rst │ ├── deferredcallbacks.rst │ ├── favicon.rst │ ├── fileuploads.rst │ ├── flashing.rst │ ├── index.rst │ ├── javascript.rst │ ├── jquery.rst │ ├── lazyloading.rst │ ├── methodoverrides.rst │ ├── mongoengine.rst │ ├── packages.rst │ ├── requestchecksum.rst │ ├── singlepageapplications.rst │ ├── sqlalchemy.rst │ ├── sqlite3.rst │ ├── streaming.rst │ ├── subclassing.rst │ ├── templateinheritance.rst │ ├── urlprocessors.rst │ ├── viewdecorators.rst │ └── wtforms.rst ├── quickstart.rst ├── reqcontext.rst ├── security.rst ├── server.rst ├── shell.rst ├── signals.rst ├── templating.rst ├── testing.rst ├── tutorial │ ├── blog.rst │ ├── database.rst │ ├── deploy.rst │ ├── factory.rst │ ├── flaskr_edit.png │ ├── flaskr_index.png │ ├── flaskr_login.png │ ├── index.rst │ ├── install.rst │ ├── layout.rst │ ├── next.rst │ ├── static.rst │ ├── templates.rst │ ├── tests.rst │ └── views.rst └── views.rst ├── examples ├── celery │ ├── README.md │ ├── make_celery.py │ ├── pyproject.toml │ ├── requirements.txt │ └── src │ │ └── task_app │ │ ├── __init__.py │ │ ├── tasks.py │ │ ├── templates │ │ └── index.html │ │ └── views.py ├── javascript │ ├── .gitignore │ ├── LICENSE.rst │ ├── README.rst │ ├── js_example │ │ ├── __init__.py │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── fetch.html │ │ │ ├── jquery.html │ │ │ └── xhr.html │ │ └── views.py │ ├── pyproject.toml │ └── tests │ │ ├── conftest.py │ │ └── test_js_example.py └── tutorial │ ├── .gitignore │ ├── LICENSE.rst │ ├── README.rst │ ├── flaskr │ ├── __init__.py │ ├── auth.py │ ├── blog.py │ ├── db.py │ ├── schema.sql │ ├── static │ │ └── style.css │ └── templates │ │ ├── auth │ │ ├── login.html │ │ └── register.html │ │ ├── base.html │ │ └── blog │ │ ├── create.html │ │ ├── index.html │ │ └── update.html │ ├── pyproject.toml │ └── tests │ ├── conftest.py │ ├── data.sql │ ├── test_auth.py │ ├── test_blog.py │ ├── test_db.py │ └── test_factory.py ├── pyproject.toml ├── requirements-skip ├── README.md ├── tests-dev.txt ├── tests-min.in └── tests-min.txt ├── requirements ├── build.in ├── build.txt ├── dev.in ├── dev.txt ├── docs.in ├── docs.txt ├── tests.in ├── tests.txt ├── typing.in └── typing.txt ├── src └── flask │ ├── __init__.py │ ├── __main__.py │ ├── app.py │ ├── blueprints.py │ ├── cli.py │ ├── config.py │ ├── ctx.py │ ├── debughelpers.py │ ├── globals.py │ ├── helpers.py │ ├── json │ ├── __init__.py │ ├── provider.py │ └── tag.py │ ├── logging.py │ ├── py.typed │ ├── sansio │ ├── README.md │ ├── app.py │ ├── blueprints.py │ └── scaffold.py │ ├── sessions.py │ ├── signals.py │ ├── templating.py │ ├── testing.py │ ├── typing.py │ ├── views.py │ └── wrappers.py ├── tests ├── conftest.py ├── static │ ├── config.json │ ├── config.toml │ └── index.html ├── templates │ ├── _macro.html │ ├── context_template.html │ ├── escaping_template.html │ ├── mail.txt │ ├── nested │ │ └── nested.txt │ ├── non_escaping_template.txt │ ├── simple_template.html │ ├── template_filter.html │ └── template_test.html ├── test_appctx.py ├── test_apps │ ├── .env │ ├── .flaskenv │ ├── blueprintapp │ │ ├── __init__.py │ │ └── apps │ │ │ ├── __init__.py │ │ │ ├── admin │ │ │ ├── __init__.py │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ └── test.css │ │ │ │ └── test.txt │ │ │ └── templates │ │ │ │ └── admin │ │ │ │ └── index.html │ │ │ └── frontend │ │ │ ├── __init__.py │ │ │ └── templates │ │ │ └── frontend │ │ │ └── index.html │ ├── cliapp │ │ ├── __init__.py │ │ ├── app.py │ │ ├── factory.py │ │ ├── importerrorapp.py │ │ ├── inner1 │ │ │ ├── __init__.py │ │ │ └── inner2 │ │ │ │ ├── __init__.py │ │ │ │ └── flask.py │ │ ├── message.txt │ │ └── multiapp.py │ ├── helloworld │ │ ├── hello.py │ │ └── wsgi.py │ └── subdomaintestmodule │ │ ├── __init__.py │ │ └── static │ │ └── hello.txt ├── test_async.py ├── test_basic.py ├── test_blueprints.py ├── test_cli.py ├── test_config.py ├── test_converters.py ├── test_helpers.py ├── test_instance_config.py ├── test_json.py ├── test_json_tag.py ├── test_logging.py ├── test_regression.py ├── test_reqctx.py ├── test_session_interface.py ├── test_signals.py ├── test_subclassing.py ├── test_templating.py ├── test_testing.py ├── test_user_error_handler.py ├── test_views.py └── typing │ ├── typing_app_decorators.py │ ├── typing_error_handler.py │ └── typing_route.py └── tox.ini /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/on-create-command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.devcontainer/on-create-command.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-------------------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.github/ISSUE_TEMPLATE/-------------------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/------------------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.github/ISSUE_TEMPLATE/------------------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.github/workflows/lock.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.mo 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/_static/debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/_static/debugger.png -------------------------------------------------------------------------------- /docs/_static/flask-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/_static/flask-horizontal.png -------------------------------------------------------------------------------- /docs/_static/flask-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/_static/flask-vertical.png -------------------------------------------------------------------------------- /docs/_static/pycharm-run-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/_static/pycharm-run-config.png -------------------------------------------------------------------------------- /docs/_static/shortcut-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/_static/shortcut-icon.png -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/appcontext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/appcontext.rst -------------------------------------------------------------------------------- /docs/async-await.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/async-await.rst -------------------------------------------------------------------------------- /docs/blueprints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/blueprints.rst -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/cli.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/config.rst -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/debugging.rst -------------------------------------------------------------------------------- /docs/deploying/apache-httpd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/apache-httpd.rst -------------------------------------------------------------------------------- /docs/deploying/asgi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/asgi.rst -------------------------------------------------------------------------------- /docs/deploying/eventlet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/eventlet.rst -------------------------------------------------------------------------------- /docs/deploying/gevent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/gevent.rst -------------------------------------------------------------------------------- /docs/deploying/gunicorn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/gunicorn.rst -------------------------------------------------------------------------------- /docs/deploying/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/index.rst -------------------------------------------------------------------------------- /docs/deploying/mod_wsgi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/mod_wsgi.rst -------------------------------------------------------------------------------- /docs/deploying/nginx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/nginx.rst -------------------------------------------------------------------------------- /docs/deploying/proxy_fix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/proxy_fix.rst -------------------------------------------------------------------------------- /docs/deploying/uwsgi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/uwsgi.rst -------------------------------------------------------------------------------- /docs/deploying/waitress.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/deploying/waitress.rst -------------------------------------------------------------------------------- /docs/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/design.rst -------------------------------------------------------------------------------- /docs/errorhandling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/errorhandling.rst -------------------------------------------------------------------------------- /docs/extensiondev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/extensiondev.rst -------------------------------------------------------------------------------- /docs/extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/extensions.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/lifecycle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/lifecycle.rst -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/advanced_foreword.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/advanced_foreword.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/api.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/appcontext.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/appcontext.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/async-await.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/async-await.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/becomingbig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/becomingbig.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/blueprints.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/blueprints.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/changes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/changes.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/cli.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/cli.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/config.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/config.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/contributing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/contributing.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/debugging.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/debugging.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/apache-httpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/apache-httpd.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/asgi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/asgi.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/eventlet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/eventlet.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/gevent.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/gevent.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/gunicorn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/gunicorn.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/index.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/mod_wsgi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/mod_wsgi.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/nginx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/nginx.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/proxy_fix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/proxy_fix.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/uwsgi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/uwsgi.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/waitress.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/waitress.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/deploying/wsgi-standalone.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/deploying/wsgi-standalone.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/design.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/design.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/errorhandling.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/errorhandling.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/extensiondev.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/extensiondev.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/extensions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/extensions.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/foreword.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/foreword.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/htmlfaq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/htmlfaq.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/installation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/installation.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/license.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/license.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/lifecycle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/lifecycle.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/logging.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/logging.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/appdispatch.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/appdispatch.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/appfactories.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/appfactories.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/caching.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/caching.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/celery.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/celery.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/deferredcallbacks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/deferredcallbacks.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/distribute.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/distribute.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/fabric.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/fabric.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/favicon.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/favicon.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/fileuploads.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/fileuploads.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/flashing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/flashing.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/index.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/javascript.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/javascript.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/jquery.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/jquery.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/lazyloading.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/lazyloading.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/methodoverrides.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/methodoverrides.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/mongoengine.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/mongoengine.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/packages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/packages.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/requestchecksum.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/requestchecksum.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/singlepageapplications.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/singlepageapplications.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/sqlalchemy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/sqlalchemy.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/sqlite3.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/sqlite3.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/streaming.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/streaming.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/subclassing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/subclassing.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/templateinheritance.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/templateinheritance.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/urlprocessors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/urlprocessors.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/viewdecorators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/viewdecorators.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/patterns/wtforms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/patterns/wtforms.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/quickstart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/quickstart.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/reqcontext.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/reqcontext.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/security.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/security.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/server.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/server.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/shell.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/shell.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/signals.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/signals.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/templating.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/templating.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/testing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/testing.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/blog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/blog.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/database.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/database.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/deploy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/deploy.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/factory.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/factory.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/index.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/install.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/install.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/layout.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/layout.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/next.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/next.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/static.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/static.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/templates.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/templates.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/tests.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/tests.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/tutorial/views.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/tutorial/views.po -------------------------------------------------------------------------------- /docs/locales/fa/LC_MESSAGES/views.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/locales/fa/LC_MESSAGES/views.po -------------------------------------------------------------------------------- /docs/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/logging.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/patterns/appdispatch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/appdispatch.rst -------------------------------------------------------------------------------- /docs/patterns/appfactories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/appfactories.rst -------------------------------------------------------------------------------- /docs/patterns/caching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/caching.rst -------------------------------------------------------------------------------- /docs/patterns/celery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/celery.rst -------------------------------------------------------------------------------- /docs/patterns/deferredcallbacks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/deferredcallbacks.rst -------------------------------------------------------------------------------- /docs/patterns/favicon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/favicon.rst -------------------------------------------------------------------------------- /docs/patterns/fileuploads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/fileuploads.rst -------------------------------------------------------------------------------- /docs/patterns/flashing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/flashing.rst -------------------------------------------------------------------------------- /docs/patterns/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/index.rst -------------------------------------------------------------------------------- /docs/patterns/javascript.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/javascript.rst -------------------------------------------------------------------------------- /docs/patterns/jquery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/jquery.rst -------------------------------------------------------------------------------- /docs/patterns/lazyloading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/lazyloading.rst -------------------------------------------------------------------------------- /docs/patterns/methodoverrides.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/methodoverrides.rst -------------------------------------------------------------------------------- /docs/patterns/mongoengine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/mongoengine.rst -------------------------------------------------------------------------------- /docs/patterns/packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/packages.rst -------------------------------------------------------------------------------- /docs/patterns/requestchecksum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/requestchecksum.rst -------------------------------------------------------------------------------- /docs/patterns/singlepageapplications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/singlepageapplications.rst -------------------------------------------------------------------------------- /docs/patterns/sqlalchemy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/sqlalchemy.rst -------------------------------------------------------------------------------- /docs/patterns/sqlite3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/sqlite3.rst -------------------------------------------------------------------------------- /docs/patterns/streaming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/streaming.rst -------------------------------------------------------------------------------- /docs/patterns/subclassing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/subclassing.rst -------------------------------------------------------------------------------- /docs/patterns/templateinheritance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/templateinheritance.rst -------------------------------------------------------------------------------- /docs/patterns/urlprocessors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/urlprocessors.rst -------------------------------------------------------------------------------- /docs/patterns/viewdecorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/viewdecorators.rst -------------------------------------------------------------------------------- /docs/patterns/wtforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/patterns/wtforms.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/reqcontext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/reqcontext.rst -------------------------------------------------------------------------------- /docs/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/security.rst -------------------------------------------------------------------------------- /docs/server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/server.rst -------------------------------------------------------------------------------- /docs/shell.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/shell.rst -------------------------------------------------------------------------------- /docs/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/signals.rst -------------------------------------------------------------------------------- /docs/templating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/templating.rst -------------------------------------------------------------------------------- /docs/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/testing.rst -------------------------------------------------------------------------------- /docs/tutorial/blog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/blog.rst -------------------------------------------------------------------------------- /docs/tutorial/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/database.rst -------------------------------------------------------------------------------- /docs/tutorial/deploy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/deploy.rst -------------------------------------------------------------------------------- /docs/tutorial/factory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/factory.rst -------------------------------------------------------------------------------- /docs/tutorial/flaskr_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/flaskr_edit.png -------------------------------------------------------------------------------- /docs/tutorial/flaskr_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/flaskr_index.png -------------------------------------------------------------------------------- /docs/tutorial/flaskr_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/flaskr_login.png -------------------------------------------------------------------------------- /docs/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/index.rst -------------------------------------------------------------------------------- /docs/tutorial/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/install.rst -------------------------------------------------------------------------------- /docs/tutorial/layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/layout.rst -------------------------------------------------------------------------------- /docs/tutorial/next.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/next.rst -------------------------------------------------------------------------------- /docs/tutorial/static.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/static.rst -------------------------------------------------------------------------------- /docs/tutorial/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/templates.rst -------------------------------------------------------------------------------- /docs/tutorial/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/tests.rst -------------------------------------------------------------------------------- /docs/tutorial/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/tutorial/views.rst -------------------------------------------------------------------------------- /docs/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/docs/views.rst -------------------------------------------------------------------------------- /examples/celery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/celery/README.md -------------------------------------------------------------------------------- /examples/celery/make_celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/celery/make_celery.py -------------------------------------------------------------------------------- /examples/celery/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/celery/pyproject.toml -------------------------------------------------------------------------------- /examples/celery/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/celery/requirements.txt -------------------------------------------------------------------------------- /examples/celery/src/task_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/celery/src/task_app/__init__.py -------------------------------------------------------------------------------- /examples/celery/src/task_app/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/celery/src/task_app/tasks.py -------------------------------------------------------------------------------- /examples/celery/src/task_app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/celery/src/task_app/templates/index.html -------------------------------------------------------------------------------- /examples/celery/src/task_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/celery/src/task_app/views.py -------------------------------------------------------------------------------- /examples/javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/.gitignore -------------------------------------------------------------------------------- /examples/javascript/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/LICENSE.rst -------------------------------------------------------------------------------- /examples/javascript/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/README.rst -------------------------------------------------------------------------------- /examples/javascript/js_example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/js_example/__init__.py -------------------------------------------------------------------------------- /examples/javascript/js_example/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/js_example/templates/base.html -------------------------------------------------------------------------------- /examples/javascript/js_example/templates/fetch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/js_example/templates/fetch.html -------------------------------------------------------------------------------- /examples/javascript/js_example/templates/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/js_example/templates/jquery.html -------------------------------------------------------------------------------- /examples/javascript/js_example/templates/xhr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/js_example/templates/xhr.html -------------------------------------------------------------------------------- /examples/javascript/js_example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/js_example/views.py -------------------------------------------------------------------------------- /examples/javascript/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/pyproject.toml -------------------------------------------------------------------------------- /examples/javascript/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/tests/conftest.py -------------------------------------------------------------------------------- /examples/javascript/tests/test_js_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/javascript/tests/test_js_example.py -------------------------------------------------------------------------------- /examples/tutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/.gitignore -------------------------------------------------------------------------------- /examples/tutorial/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/LICENSE.rst -------------------------------------------------------------------------------- /examples/tutorial/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/README.rst -------------------------------------------------------------------------------- /examples/tutorial/flaskr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/__init__.py -------------------------------------------------------------------------------- /examples/tutorial/flaskr/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/auth.py -------------------------------------------------------------------------------- /examples/tutorial/flaskr/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/blog.py -------------------------------------------------------------------------------- /examples/tutorial/flaskr/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/db.py -------------------------------------------------------------------------------- /examples/tutorial/flaskr/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/schema.sql -------------------------------------------------------------------------------- /examples/tutorial/flaskr/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/static/style.css -------------------------------------------------------------------------------- /examples/tutorial/flaskr/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/templates/auth/login.html -------------------------------------------------------------------------------- /examples/tutorial/flaskr/templates/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/templates/auth/register.html -------------------------------------------------------------------------------- /examples/tutorial/flaskr/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/templates/base.html -------------------------------------------------------------------------------- /examples/tutorial/flaskr/templates/blog/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/templates/blog/create.html -------------------------------------------------------------------------------- /examples/tutorial/flaskr/templates/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/templates/blog/index.html -------------------------------------------------------------------------------- /examples/tutorial/flaskr/templates/blog/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/flaskr/templates/blog/update.html -------------------------------------------------------------------------------- /examples/tutorial/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/pyproject.toml -------------------------------------------------------------------------------- /examples/tutorial/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/tests/conftest.py -------------------------------------------------------------------------------- /examples/tutorial/tests/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/tests/data.sql -------------------------------------------------------------------------------- /examples/tutorial/tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/tests/test_auth.py -------------------------------------------------------------------------------- /examples/tutorial/tests/test_blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/tests/test_blog.py -------------------------------------------------------------------------------- /examples/tutorial/tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/tests/test_db.py -------------------------------------------------------------------------------- /examples/tutorial/tests/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/examples/tutorial/tests/test_factory.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-skip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements-skip/README.md -------------------------------------------------------------------------------- /requirements-skip/tests-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements-skip/tests-dev.txt -------------------------------------------------------------------------------- /requirements-skip/tests-min.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements-skip/tests-min.in -------------------------------------------------------------------------------- /requirements-skip/tests-min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements-skip/tests-min.txt -------------------------------------------------------------------------------- /requirements/build.in: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements/build.txt -------------------------------------------------------------------------------- /requirements/dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements/dev.in -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/docs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements/docs.in -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/tests.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements/tests.in -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /requirements/typing.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements/typing.in -------------------------------------------------------------------------------- /requirements/typing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/requirements/typing.txt -------------------------------------------------------------------------------- /src/flask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/__init__.py -------------------------------------------------------------------------------- /src/flask/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/__main__.py -------------------------------------------------------------------------------- /src/flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/app.py -------------------------------------------------------------------------------- /src/flask/blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/blueprints.py -------------------------------------------------------------------------------- /src/flask/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/cli.py -------------------------------------------------------------------------------- /src/flask/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/config.py -------------------------------------------------------------------------------- /src/flask/ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/ctx.py -------------------------------------------------------------------------------- /src/flask/debughelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/debughelpers.py -------------------------------------------------------------------------------- /src/flask/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/globals.py -------------------------------------------------------------------------------- /src/flask/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/helpers.py -------------------------------------------------------------------------------- /src/flask/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/json/__init__.py -------------------------------------------------------------------------------- /src/flask/json/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/json/provider.py -------------------------------------------------------------------------------- /src/flask/json/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/json/tag.py -------------------------------------------------------------------------------- /src/flask/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/logging.py -------------------------------------------------------------------------------- /src/flask/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/flask/sansio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/sansio/README.md -------------------------------------------------------------------------------- /src/flask/sansio/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/sansio/app.py -------------------------------------------------------------------------------- /src/flask/sansio/blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/sansio/blueprints.py -------------------------------------------------------------------------------- /src/flask/sansio/scaffold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/sansio/scaffold.py -------------------------------------------------------------------------------- /src/flask/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/sessions.py -------------------------------------------------------------------------------- /src/flask/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/signals.py -------------------------------------------------------------------------------- /src/flask/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/templating.py -------------------------------------------------------------------------------- /src/flask/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/testing.py -------------------------------------------------------------------------------- /src/flask/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/typing.py -------------------------------------------------------------------------------- /src/flask/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/views.py -------------------------------------------------------------------------------- /src/flask/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/src/flask/wrappers.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/static/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/static/config.json -------------------------------------------------------------------------------- /tests/static/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/static/config.toml -------------------------------------------------------------------------------- /tests/static/index.html: -------------------------------------------------------------------------------- 1 |

Hello World!

2 | -------------------------------------------------------------------------------- /tests/templates/_macro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/templates/_macro.html -------------------------------------------------------------------------------- /tests/templates/context_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/templates/context_template.html -------------------------------------------------------------------------------- /tests/templates/escaping_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/templates/escaping_template.html -------------------------------------------------------------------------------- /tests/templates/mail.txt: -------------------------------------------------------------------------------- 1 | {{ foo}} Mail 2 | -------------------------------------------------------------------------------- /tests/templates/nested/nested.txt: -------------------------------------------------------------------------------- 1 | I'm nested 2 | -------------------------------------------------------------------------------- /tests/templates/non_escaping_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/templates/non_escaping_template.txt -------------------------------------------------------------------------------- /tests/templates/simple_template.html: -------------------------------------------------------------------------------- 1 |

{{ whiskey }}

2 | -------------------------------------------------------------------------------- /tests/templates/template_filter.html: -------------------------------------------------------------------------------- 1 | {{ value|super_reverse }} 2 | -------------------------------------------------------------------------------- /tests/templates/template_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/templates/template_test.html -------------------------------------------------------------------------------- /tests/test_appctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_appctx.py -------------------------------------------------------------------------------- /tests/test_apps/.env: -------------------------------------------------------------------------------- 1 | FOO=env 2 | SPAM=1 3 | EGGS=2 4 | HAM=火腿 5 | -------------------------------------------------------------------------------- /tests/test_apps/.flaskenv: -------------------------------------------------------------------------------- 1 | FOO=flaskenv 2 | BAR=bar 3 | EGGS=0 4 | -------------------------------------------------------------------------------- /tests/test_apps/blueprintapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/blueprintapp/__init__.py -------------------------------------------------------------------------------- /tests/test_apps/blueprintapp/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_apps/blueprintapp/apps/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/blueprintapp/apps/admin/__init__.py -------------------------------------------------------------------------------- /tests/test_apps/blueprintapp/apps/admin/static/css/test.css: -------------------------------------------------------------------------------- 1 | /* nested file */ 2 | -------------------------------------------------------------------------------- /tests/test_apps/blueprintapp/apps/admin/static/test.txt: -------------------------------------------------------------------------------- 1 | Admin File 2 | -------------------------------------------------------------------------------- /tests/test_apps/blueprintapp/apps/admin/templates/admin/index.html: -------------------------------------------------------------------------------- 1 | Hello from the Admin 2 | -------------------------------------------------------------------------------- /tests/test_apps/blueprintapp/apps/frontend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/blueprintapp/apps/frontend/__init__.py -------------------------------------------------------------------------------- /tests/test_apps/blueprintapp/apps/frontend/templates/frontend/index.html: -------------------------------------------------------------------------------- 1 | Hello from the Frontend 2 | -------------------------------------------------------------------------------- /tests/test_apps/cliapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_apps/cliapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/cliapp/app.py -------------------------------------------------------------------------------- /tests/test_apps/cliapp/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/cliapp/factory.py -------------------------------------------------------------------------------- /tests/test_apps/cliapp/importerrorapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/cliapp/importerrorapp.py -------------------------------------------------------------------------------- /tests/test_apps/cliapp/inner1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/cliapp/inner1/__init__.py -------------------------------------------------------------------------------- /tests/test_apps/cliapp/inner1/inner2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_apps/cliapp/inner1/inner2/flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/cliapp/inner1/inner2/flask.py -------------------------------------------------------------------------------- /tests/test_apps/cliapp/message.txt: -------------------------------------------------------------------------------- 1 | So long, and thanks for all the fish. 2 | -------------------------------------------------------------------------------- /tests/test_apps/cliapp/multiapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/cliapp/multiapp.py -------------------------------------------------------------------------------- /tests/test_apps/helloworld/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/helloworld/hello.py -------------------------------------------------------------------------------- /tests/test_apps/helloworld/wsgi.py: -------------------------------------------------------------------------------- 1 | from hello import app # noqa: F401 2 | -------------------------------------------------------------------------------- /tests/test_apps/subdomaintestmodule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_apps/subdomaintestmodule/__init__.py -------------------------------------------------------------------------------- /tests/test_apps/subdomaintestmodule/static/hello.txt: -------------------------------------------------------------------------------- 1 | Hello Subdomain 2 | -------------------------------------------------------------------------------- /tests/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_async.py -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_basic.py -------------------------------------------------------------------------------- /tests/test_blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_blueprints.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_converters.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_instance_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_instance_config.py -------------------------------------------------------------------------------- /tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_json.py -------------------------------------------------------------------------------- /tests/test_json_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_json_tag.py -------------------------------------------------------------------------------- /tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_logging.py -------------------------------------------------------------------------------- /tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_regression.py -------------------------------------------------------------------------------- /tests/test_reqctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_reqctx.py -------------------------------------------------------------------------------- /tests/test_session_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_session_interface.py -------------------------------------------------------------------------------- /tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_signals.py -------------------------------------------------------------------------------- /tests/test_subclassing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_subclassing.py -------------------------------------------------------------------------------- /tests/test_templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_templating.py -------------------------------------------------------------------------------- /tests/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_testing.py -------------------------------------------------------------------------------- /tests/test_user_error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_user_error_handler.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/typing/typing_app_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/typing/typing_app_decorators.py -------------------------------------------------------------------------------- /tests/typing/typing_error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/typing/typing_error_handler.py -------------------------------------------------------------------------------- /tests/typing/typing_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tests/typing/typing_route.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaskcwg/flask-docs-fa/HEAD/tox.ini --------------------------------------------------------------------------------