├── .coveragerc ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── docs ├── Makefile ├── advanced-topics │ ├── deployments.rst │ └── index.rst ├── common-usage │ ├── controllers.rst │ ├── forms.rst │ ├── index.rst │ ├── requests.rst │ ├── routing.rst │ └── views.rst ├── conf.py ├── getting-started │ ├── configuration.rst │ ├── index.rst │ ├── installation.rst │ └── your-first-application.rst ├── index.rst ├── key-concepts │ ├── dependency-injection.rst │ ├── events.rst │ ├── index.rst │ └── mvc.rst ├── make.bat ├── reference-library │ ├── framework │ │ ├── applications.rst │ │ ├── config.rst │ │ ├── controllers.rst │ │ ├── debug.rst │ │ ├── debug │ │ │ ├── abc.rst │ │ │ ├── listeners.rst │ │ │ ├── panels.rst │ │ │ ├── panels │ │ │ │ ├── application.rst │ │ │ │ ├── framework.rst │ │ │ │ ├── profile.rst │ │ │ │ └── request.rst │ │ │ ├── profile.rst │ │ │ └── toolbar.rst │ │ ├── events.rst │ │ ├── exceptions.rst │ │ ├── listeners.rst │ │ ├── logging.rst │ │ ├── logging │ │ │ └── listeners.rst │ │ ├── support.rst │ │ ├── support │ │ │ ├── console │ │ │ │ ├── commands.rst │ │ │ │ └── commands │ │ │ │ │ ├── development.rst │ │ │ │ │ └── project.rst │ │ │ ├── index.rst │ │ │ ├── jinja2.rst │ │ │ └── jinja2 │ │ │ │ ├── filters.rst │ │ │ │ └── globals.rst │ │ ├── views.rst │ │ └── views │ │ │ └── decorators.rst │ └── index.rst ├── requirements.txt └── toc.rst.inc ├── pytest.ini ├── requirements-test.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── watson │ ├── __init__.py │ └── framework │ ├── __init__.py │ ├── debug │ ├── __init__.py │ ├── panels │ │ ├── __init__.py │ │ ├── test_application.py │ │ ├── test_framework.py │ │ ├── test_logging.py │ │ ├── test_profile.py │ │ └── test_request.py │ ├── support.py │ ├── test_abc.py │ ├── test_listeners.py │ └── test_toolbar.py │ ├── i18n │ ├── __init__.py │ ├── locales │ │ ├── __init__.py │ │ ├── en.py │ │ └── fallback.py │ └── test_translate.py │ ├── sample_config.py │ ├── support │ ├── __init__.py │ └── jinja2 │ │ ├── __init__.py │ │ ├── test_filters.py │ │ └── test_globals.py │ ├── test_applications.py │ ├── test_controllers.py │ ├── test_exceptions.py │ ├── test_listeners.py │ └── views │ ├── __init__.py │ ├── renderers │ ├── __init__.py │ └── test_renderers.py │ └── test_decorators.py └── watson ├── __init__.py └── framework ├── __init__.py ├── applications.py ├── bin.py ├── config.py ├── controllers.py ├── debug ├── __init__.py ├── abc.py ├── listeners.py ├── panels │ ├── __init__.py │ ├── application.py │ ├── framework.py │ ├── logging.py │ ├── profile.py │ └── request.py ├── profile.py ├── toolbar.py └── views │ └── debug │ ├── panels │ ├── application.html │ ├── framework.html │ ├── logging.html │ ├── profile.html │ └── request.html │ └── toolbar.html ├── events.py ├── exceptions.py ├── i18n ├── __init__.py ├── locales │ ├── __init__.py │ └── en.py └── translate.py ├── listeners.py ├── logging ├── __init__.py └── listeners.py ├── mail └── __init__.py ├── support ├── __init__.py ├── console │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── development.py │ │ └── project.py └── jinja2 │ ├── __init__.py │ ├── filters.py │ └── globals.py └── views ├── __init__.py ├── decorators.py ├── renderers ├── __init__.py ├── abc.py ├── jinja2.py ├── json.py └── xml.py └── templates ├── __init__.py ├── html ├── _includes │ └── exception_details.html ├── errors │ ├── 404.html │ ├── 500.html │ └── base.html └── watson │ └── base.html └── shared.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/advanced-topics/deployments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/advanced-topics/deployments.rst -------------------------------------------------------------------------------- /docs/advanced-topics/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/advanced-topics/index.rst -------------------------------------------------------------------------------- /docs/common-usage/controllers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/common-usage/controllers.rst -------------------------------------------------------------------------------- /docs/common-usage/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/common-usage/forms.rst -------------------------------------------------------------------------------- /docs/common-usage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/common-usage/index.rst -------------------------------------------------------------------------------- /docs/common-usage/requests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/common-usage/requests.rst -------------------------------------------------------------------------------- /docs/common-usage/routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/common-usage/routing.rst -------------------------------------------------------------------------------- /docs/common-usage/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/common-usage/views.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting-started/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/getting-started/configuration.rst -------------------------------------------------------------------------------- /docs/getting-started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/getting-started/index.rst -------------------------------------------------------------------------------- /docs/getting-started/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/getting-started/installation.rst -------------------------------------------------------------------------------- /docs/getting-started/your-first-application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/getting-started/your-first-application.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/key-concepts/dependency-injection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/key-concepts/dependency-injection.rst -------------------------------------------------------------------------------- /docs/key-concepts/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/key-concepts/events.rst -------------------------------------------------------------------------------- /docs/key-concepts/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/key-concepts/index.rst -------------------------------------------------------------------------------- /docs/key-concepts/mvc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/key-concepts/mvc.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/reference-library/framework/applications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/applications.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/config.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/controllers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/controllers.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/debug.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/debug/abc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/debug/abc.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/debug/listeners.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/debug/listeners.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/debug/panels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/debug/panels.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/debug/panels/application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/debug/panels/application.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/debug/panels/framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/debug/panels/framework.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/debug/panels/profile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/debug/panels/profile.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/debug/panels/request.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/debug/panels/request.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/debug/profile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/debug/profile.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/debug/toolbar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/debug/toolbar.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/events.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/exceptions.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/listeners.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/listeners.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/logging.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/logging/listeners.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/logging/listeners.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/support.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/support/console/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/support/console/commands.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/support/console/commands/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/support/console/commands/development.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/support/console/commands/project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/support/console/commands/project.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/support/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/support/index.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/support/jinja2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/support/jinja2.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/support/jinja2/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/support/jinja2/filters.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/support/jinja2/globals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/support/jinja2/globals.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/views.rst -------------------------------------------------------------------------------- /docs/reference-library/framework/views/decorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/framework/views/decorators.rst -------------------------------------------------------------------------------- /docs/reference-library/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/reference-library/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/toc.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/docs/toc.rst.inc -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E501 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/watson/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/watson/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/watson/framework/debug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/watson/framework/debug/panels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/watson/framework/debug/panels/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/debug/panels/test_application.py -------------------------------------------------------------------------------- /tests/watson/framework/debug/panels/test_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/debug/panels/test_framework.py -------------------------------------------------------------------------------- /tests/watson/framework/debug/panels/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/debug/panels/test_logging.py -------------------------------------------------------------------------------- /tests/watson/framework/debug/panels/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/debug/panels/test_profile.py -------------------------------------------------------------------------------- /tests/watson/framework/debug/panels/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/debug/panels/test_request.py -------------------------------------------------------------------------------- /tests/watson/framework/debug/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/debug/support.py -------------------------------------------------------------------------------- /tests/watson/framework/debug/test_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/debug/test_abc.py -------------------------------------------------------------------------------- /tests/watson/framework/debug/test_listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/debug/test_listeners.py -------------------------------------------------------------------------------- /tests/watson/framework/debug/test_toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/debug/test_toolbar.py -------------------------------------------------------------------------------- /tests/watson/framework/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/watson/framework/i18n/locales/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/watson/framework/i18n/locales/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/i18n/locales/en.py -------------------------------------------------------------------------------- /tests/watson/framework/i18n/locales/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/i18n/locales/fallback.py -------------------------------------------------------------------------------- /tests/watson/framework/i18n/test_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/i18n/test_translate.py -------------------------------------------------------------------------------- /tests/watson/framework/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/sample_config.py -------------------------------------------------------------------------------- /tests/watson/framework/support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/support/__init__.py -------------------------------------------------------------------------------- /tests/watson/framework/support/jinja2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/watson/framework/support/jinja2/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/support/jinja2/test_filters.py -------------------------------------------------------------------------------- /tests/watson/framework/support/jinja2/test_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/support/jinja2/test_globals.py -------------------------------------------------------------------------------- /tests/watson/framework/test_applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/test_applications.py -------------------------------------------------------------------------------- /tests/watson/framework/test_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/test_controllers.py -------------------------------------------------------------------------------- /tests/watson/framework/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/test_exceptions.py -------------------------------------------------------------------------------- /tests/watson/framework/test_listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/test_listeners.py -------------------------------------------------------------------------------- /tests/watson/framework/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/watson/framework/views/renderers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/watson/framework/views/renderers/test_renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/views/renderers/test_renderers.py -------------------------------------------------------------------------------- /tests/watson/framework/views/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/tests/watson/framework/views/test_decorators.py -------------------------------------------------------------------------------- /watson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/__init__.py -------------------------------------------------------------------------------- /watson/framework/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | __version__ = '3.5.4' 3 | -------------------------------------------------------------------------------- /watson/framework/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/applications.py -------------------------------------------------------------------------------- /watson/framework/bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/bin.py -------------------------------------------------------------------------------- /watson/framework/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/config.py -------------------------------------------------------------------------------- /watson/framework/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/controllers.py -------------------------------------------------------------------------------- /watson/framework/debug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/__init__.py -------------------------------------------------------------------------------- /watson/framework/debug/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/abc.py -------------------------------------------------------------------------------- /watson/framework/debug/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/listeners.py -------------------------------------------------------------------------------- /watson/framework/debug/panels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/panels/__init__.py -------------------------------------------------------------------------------- /watson/framework/debug/panels/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/panels/application.py -------------------------------------------------------------------------------- /watson/framework/debug/panels/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/panels/framework.py -------------------------------------------------------------------------------- /watson/framework/debug/panels/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/panels/logging.py -------------------------------------------------------------------------------- /watson/framework/debug/panels/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/panels/profile.py -------------------------------------------------------------------------------- /watson/framework/debug/panels/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/panels/request.py -------------------------------------------------------------------------------- /watson/framework/debug/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/profile.py -------------------------------------------------------------------------------- /watson/framework/debug/toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/toolbar.py -------------------------------------------------------------------------------- /watson/framework/debug/views/debug/panels/application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/views/debug/panels/application.html -------------------------------------------------------------------------------- /watson/framework/debug/views/debug/panels/framework.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/views/debug/panels/framework.html -------------------------------------------------------------------------------- /watson/framework/debug/views/debug/panels/logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/views/debug/panels/logging.html -------------------------------------------------------------------------------- /watson/framework/debug/views/debug/panels/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/views/debug/panels/profile.html -------------------------------------------------------------------------------- /watson/framework/debug/views/debug/panels/request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/views/debug/panels/request.html -------------------------------------------------------------------------------- /watson/framework/debug/views/debug/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/debug/views/debug/toolbar.html -------------------------------------------------------------------------------- /watson/framework/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/events.py -------------------------------------------------------------------------------- /watson/framework/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/exceptions.py -------------------------------------------------------------------------------- /watson/framework/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /watson/framework/i18n/locales/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /watson/framework/i18n/locales/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/i18n/locales/en.py -------------------------------------------------------------------------------- /watson/framework/i18n/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/i18n/translate.py -------------------------------------------------------------------------------- /watson/framework/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/listeners.py -------------------------------------------------------------------------------- /watson/framework/logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /watson/framework/logging/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/logging/listeners.py -------------------------------------------------------------------------------- /watson/framework/mail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/mail/__init__.py -------------------------------------------------------------------------------- /watson/framework/support/__init__.py: -------------------------------------------------------------------------------- 1 | # Any code relating to integration with 3rd party libraries 2 | -------------------------------------------------------------------------------- /watson/framework/support/console/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /watson/framework/support/console/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/support/console/commands/__init__.py -------------------------------------------------------------------------------- /watson/framework/support/console/commands/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/support/console/commands/development.py -------------------------------------------------------------------------------- /watson/framework/support/console/commands/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/support/console/commands/project.py -------------------------------------------------------------------------------- /watson/framework/support/jinja2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /watson/framework/support/jinja2/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/support/jinja2/filters.py -------------------------------------------------------------------------------- /watson/framework/support/jinja2/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/support/jinja2/globals.py -------------------------------------------------------------------------------- /watson/framework/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/__init__.py -------------------------------------------------------------------------------- /watson/framework/views/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/decorators.py -------------------------------------------------------------------------------- /watson/framework/views/renderers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /watson/framework/views/renderers/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/renderers/abc.py -------------------------------------------------------------------------------- /watson/framework/views/renderers/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/renderers/jinja2.py -------------------------------------------------------------------------------- /watson/framework/views/renderers/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/renderers/json.py -------------------------------------------------------------------------------- /watson/framework/views/renderers/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/renderers/xml.py -------------------------------------------------------------------------------- /watson/framework/views/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /watson/framework/views/templates/html/_includes/exception_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/templates/html/_includes/exception_details.html -------------------------------------------------------------------------------- /watson/framework/views/templates/html/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/templates/html/errors/404.html -------------------------------------------------------------------------------- /watson/framework/views/templates/html/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/templates/html/errors/500.html -------------------------------------------------------------------------------- /watson/framework/views/templates/html/errors/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/templates/html/errors/base.html -------------------------------------------------------------------------------- /watson/framework/views/templates/html/watson/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/templates/html/watson/base.html -------------------------------------------------------------------------------- /watson/framework/views/templates/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watsonpy/watson-framework/HEAD/watson/framework/views/templates/shared.py --------------------------------------------------------------------------------